PokéAPI · JSON Structure

Pokeapi Gender Structure

PokéAPI Gender structure.

Type: object Properties: 4
PokémonOpen SourceOpen DataRESTGraphQLGamingEducationalCommunity

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

Properties

id name pokemon_species_details required_for_evolution

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-gender-structure.json",
  "name": "Gender",
  "description": "Pok\u00e9API Gender structure.",
  "type": "object",
  "properties": {
    "id": {
      "type": "int32"
    },
    "name": {
      "type": "string"
    },
    "pokemon_species_details": {
      "type": "array",
      "items": {
        "type": "object"
      }
    },
    "required_for_evolution": {
      "type": "array",
      "items": {
        "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."
          }
        }
      }
    }
  }
}