PokéAPI · Schema
Stat
PokéAPI Stat schema.
PokémonOpen SourceOpen DataRESTGraphQLGamingEducationalCommunity
Properties
| Name | Type | Description |
|---|---|---|
| id | integer | |
| name | string | |
| game_index | integer | |
| is_battle_only | boolean | |
| affecting_moves | object | |
| affecting_natures | object | |
| characteristics | array | |
| move_damage_class | object | |
| names | array |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/pokeapi/refs/heads/main/json-schema/pokeapi-stat-schema.json",
"title": "Stat",
"description": "Pok\u00e9API Stat schema.",
"type": "object",
"properties": {
"id": {
"type": "integer"
},
"name": {
"type": "string"
},
"game_index": {
"type": "integer"
},
"is_battle_only": {
"type": "boolean"
},
"affecting_moves": {
"type": "object"
},
"affecting_natures": {
"type": "object"
},
"characteristics": {
"type": "array",
"items": {
"type": "object",
"properties": {
"url": {
"type": "string",
"format": "uri",
"description": "Canonical URL of the referenced resource."
}
}
}
},
"move_damage_class": {
"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."
}
}
}
}
}
}
}
}