PokéAPI · Schema

Description

PokéAPI Description schema.

PokémonOpen SourceOpen DataRESTGraphQLGamingEducationalCommunity

Properties

Name Type Description
description string
language object
View JSON Schema on GitHub

JSON Schema

pokeapi-description-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-description-schema.json",
  "title": "Description",
  "description": "Pok\u00e9API Description schema.",
  "type": "object",
  "properties": {
    "description": {
      "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."
        }
      }
    }
  }
}