PokéAPI Gender schema.
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/pokeapi/refs/heads/main/json-schema/pokeapi-gender-schema.json", "title": "Gender", "description": "Pok\u00e9API Gender schema.", "type": "object", "properties": { "id": { "type": "integer" }, "name": { "type": "string" }, "pokemon_species_details": { "type": "array", "items": { "type": "object" } }, "required_for_evolution": { "type": "array", "items": { "type": "object", "properties": { "name": { "type": "string", "description": "Slug name of the referenced resource." }, "url": { "type": "string", "format": "uri", "description": "Canonical URL of the referenced resource." } } } } } }