@iamkenos/iris
Version:
Test API endpoints with Axios & Jest using a collection of custom matchers and built-in utility functions.
25 lines (24 loc) • 455 B
JSON
{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {
"id": {
"type": "number"
},
"name": {
"type": "string"
},
"email": {
"type": "string"
},
"gender": {
"type": "string",
"enum": ["female", "male"]
},
"status": {
"type": "string",
"enum": ["active", "inactive"]
}
},
"required": ["id", "name", "email", "gender", "status"]
}