PokéAPI · Schema

ContestEffect

PokéAPI ContestEffect schema.

PokémonOpen SourceOpen DataRESTGraphQLGamingEducationalCommunity

Properties

Name Type Description
id integer
appeal integer
jam integer
effect_entries array
flavor_text_entries array
View JSON Schema on GitHub

JSON Schema

pokeapi-contest-effect-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-contest-effect-schema.json",
  "title": "ContestEffect",
  "description": "Pok\u00e9API ContestEffect schema.",
  "type": "object",
  "properties": {
    "id": {
      "type": "integer"
    },
    "appeal": {
      "type": "integer"
    },
    "jam": {
      "type": "integer"
    },
    "effect_entries": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "effect": {
            "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."
              }
            }
          }
        }
      }
    },
    "flavor_text_entries": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "flavor_text": {
            "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."
              }
            }
          },
          "version": {
            "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."
              }
            }
          }
        }
      }
    }
  }
}