Open
Description
I've read the Body Matching section. I'm aware something similar can be achieved by using JSONPath, but the outcome won't be the same. Moreover, teams already employ JSON schemas or Open API definitions to check end-point contracts — so that's a time saver.
I think it would be great is API Simulator could validate a given request body against a corresponding JSON schema. For instance, MockServer does something similar:
...
"body": {
"type": "JSON_SCHEMA",
"jsonSchema": "schemas/create-entity.schema.json"
},
...