PokéAPI · JSON Structure

Pokeapi Characteristic Structure

PokéAPI Characteristic structure.

Type: object Properties: 5
PokémonOpen SourceOpen DataRESTGraphQLGamingEducationalCommunity

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

Properties

id gene_modulo possible_values highest_stat descriptions

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-characteristic-structure.json",
  "name": "Characteristic",
  "description": "Pok\u00e9API Characteristic structure.",
  "type": "object",
  "properties": {
    "id": {
      "type": "int32"
    },
    "gene_modulo": {
      "type": "int32"
    },
    "possible_values": {
      "type": "array",
      "items": {
        "type": "int32"
      }
    },
    "highest_stat": {
      "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."
        }
      }
    },
    "descriptions": {
      "type": "array",
      "items": {
        "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."
              }
            }
          }
        }
      }
    }
  }
}