PokéAPI · Schema

NamedAPIResource

PokéAPI NamedAPIResource schema.

PokémonOpen-SourceOpen DataRESTGraphQLGamingEducationalCommunity

Properties

Name Type Description
name string Slug name of the referenced resource.
url string Canonical URL of the referenced resource.
View JSON Schema on GitHub

JSON Schema

pokeapi-named-api-resource-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-named-api-resource-schema.json",
  "title": "NamedAPIResource",
  "description": "Pok\u00e9API NamedAPIResource schema.",
  "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."
    }
  }
}