pokeapi-api-data/data/schema/v2/api_resource_list.json
2019-01-31 19:38:31 +01:00

33 lines
640 B
JSON

{
"$schema": "http://json-schema.org/schema#",
"properties": {
"count": {
"type": "integer"
},
"next": {
"type": [
"null",
"string"
]
},
"previous": {
"type": [
"null",
"string"
]
},
"results": {
"items": {
"$ref": "/schema/v2/api_resource.json"
},
"type": "array"
}
},
"required": [
"count",
"next",
"previous",
"results"
],
"type": "object"
}