PokéAPI · JSON Structure

Pokeapi Pokemon Structure

PokéAPI Pokemon structure.

Type: object Properties: 17
PokémonOpen SourceOpen DataRESTGraphQLGamingEducationalCommunity

Pokemon is a JSON Structure definition published by PokéAPI, describing 17 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

id name base_experience height is_default order weight abilities forms game_indices held_items location_area_encounters moves species sprites stats types

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/pokeapi/refs/heads/main/json-structure/pokeapi-pokemon-structure.json",
  "name": "Pokemon",
  "description": "Pok\u00e9API Pokemon structure.",
  "type": "object",
  "properties": {
    "id": {
      "type": "int32"
    },
    "name": {
      "type": "string"
    },
    "base_experience": {
      "type": "int32"
    },
    "height": {
      "type": "int32"
    },
    "is_default": {
      "type": "boolean"
    },
    "order": {
      "type": "int32"
    },
    "weight": {
      "type": "int32"
    },
    "abilities": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "is_hidden": {
            "type": "boolean"
          },
          "slot": {
            "type": "int32"
          },
          "ability": {
            "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."
              }
            }
          }
        }
      }
    },
    "forms": {
      "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."
          }
        }
      }
    },
    "game_indices": {
      "type": "array",
      "items": {
        "type": "object"
      }
    },
    "held_items": {
      "type": "array",
      "items": {
        "type": "object"
      }
    },
    "location_area_encounters": {
      "type": "string"
    },
    "moves": {
      "type": "array",
      "items": {
        "type": "object"
      }
    },
    "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."
        }
      }
    },
    "sprites": {
      "type": "object"
    },
    "stats": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "base_stat": {
            "type": "int32"
          },
          "effort": {
            "type": "int32"
          },
          "stat": {
            "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."
              }
            }
          }
        }
      }
    },
    "types": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "slot": {
            "type": "int32"
          },
          "type": {
            "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."
              }
            }
          }
        }
      }
    }
  }
}