PokéAPI · Schema

LocationAreaEncounter

PokéAPI LocationAreaEncounter schema.

PokémonOpen SourceOpen DataRESTGraphQLGamingEducationalCommunity

Properties

Name Type Description
location_area object
version_details array
View JSON Schema on GitHub

JSON Schema

pokeapi-location-area-encounter-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/pokeapi/refs/heads/main/json-schema/pokeapi-location-area-encounter-schema.json",
  "title": "LocationAreaEncounter",
  "description": "Pok\u00e9API LocationAreaEncounter schema.",
  "type": "object",
  "properties": {
    "location_area": {
      "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_details": {
      "type": "array",
      "items": {
        "type": "object"
      }
    }
  }
}