Home
PokéAPI
Pokeapi Pokedex Structure
Pokeapi Pokedex Structure
PokéAPI Pokedex structure.
Type: object
Properties: 8
Pokémon Open Source Open Data REST GraphQL Gaming Educational Community
Pokedex is a JSON Structure definition published by PokéAPI, describing 8 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.
Properties
id
name
is_main_series
descriptions
names
pokemon_entries
region
version_groups
Meta-schema: https://json-structure.org/meta/core/v0/#
JSON Structure
{
"$schema": "https://json-structure.org/meta/core/v0/#",
"$id": "https://raw.githubusercontent.com/api-evangelist/pokeapi/refs/heads/main/json-structure/pokeapi-pokedex-structure.json",
"name": "Pokedex",
"description": "Pok\u00e9API Pokedex structure.",
"type": "object",
"properties": {
"id": {
"type": "int32"
},
"name": {
"type": "string"
},
"is_main_series": {
"type": "boolean"
},
"descriptions": {
"type": "array",
"items": {
"type": "object",
"properties": {
"description": {
"type": "string"
},
"language": {
"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."
}
}
}
}
}
},
"names": {
"type": "array",
"items": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"language": {
"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."
}
}
}
}
}
},
"pokemon_entries": {
"type": "array",
"items": {
"type": "object",
"properties": {
"entry_number": {
"type": "int32"
},
"pokemon_species": {
"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."
}
}
}
}
}
},
"region": {
"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."
}
}
},
"version_groups": {
"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."
}
}
}
}
}
}