codeceptjs-chai
Version:
CodeceptJS helper for chai library
75 lines • 1.44 kB
JSON
{
"$schema": "http://json-schema.org/draft-07/schema",
"type": "object",
"additionalProperties": true,
"required": [
"page",
"per_page",
"total",
"total_pages",
"data",
"support"
],
"properties": {
"page": {
"type": "string"
},
"per_page": {
"type": "integer"
},
"total": {
"type": "integer"
},
"total_pages": {
"type": "integer"
},
"data": {
"type": "array",
"additionalItems": true,
"items": {
"type": "object",
"additionalProperties": true,
"required": [
"id",
"email",
"first_name",
"last_name",
"avatar"
],
"properties": {
"id": {
"type": "integer"
},
"email": {
"type": "string"
},
"first_name": {
"type": "string"
},
"last_name": {
"type": "string"
},
"avatar": {
"type": "string"
}
}
}
},
"support": {
"type": "object",
"additionalProperties": true,
"required": [
"url",
"text"
],
"properties": {
"url": {
"type": "string"
},
"text": {
"type": "string"
}
}
}
}
}