mirror of
https://github.com/PokeAPI/api-data.git
synced 2024-11-23 08:02:31 +01:00
33 lines
640 B
JSON
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"
|
|
} |