PokéAPI · JSON Structure

Pokeapi Location Area Structure

PokéAPI LocationArea structure.

Type: object Properties: 7
PokémonOpen SourceOpen DataRESTGraphQLGamingEducationalCommunity

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

Properties

id name game_index encounter_method_rates location names pokemon_encounters

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-location-area-structure.json",
  "name": "LocationArea",
  "description": "Pok\u00e9API LocationArea structure.",
  "type": "object",
  "properties": {
    "id": {
      "type": "int32"
    },
    "name": {
      "type": "string"
    },
    "game_index": {
      "type": "int32"
    },
    "encounter_method_rates": {
      "type": "array",
      "items": {
        "type": "object"
      }
    },
    "location": {
      "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_encounters": {
      "type": "array",
      "items": {
        "type": "object"
      }
    }
  }
}