PokéAPI · Schema

APIResourceList

PokéAPI APIResourceList schema.

PokémonOpen SourceOpen DataRESTGraphQLGamingEducationalCommunity

Properties

Name Type Description
count integer
next string
previous string
results array
View JSON Schema on GitHub

JSON Schema

pokeapi-api-resource-list-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-api-resource-list-schema.json",
  "title": "APIResourceList",
  "description": "Pok\u00e9API APIResourceList schema.",
  "type": "object",
  "properties": {
    "count": {
      "type": "integer"
    },
    "next": {
      "type": "string",
      "nullable": true,
      "format": "uri"
    },
    "previous": {
      "type": "string",
      "nullable": true,
      "format": "uri"
    },
    "results": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "url": {
            "type": "string",
            "format": "uri",
            "description": "Canonical URL of the referenced resource."
          }
        }
      }
    }
  }
}