YGOPRODeck · Schema

CardClassValues

Valid values for a non-monster card class (Spell, Trap, or Skill).

GamesTrading Card GamesYu Gi OhCard DatabaseOpen DataCommunity APIPublic APIs

Properties

Name Type Description
type array Types within this card class.
race array Sub-types or races within this card class.
View JSON Schema on GitHub

JSON Schema

ygoprodeck-api-card-class-values-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/yu-gi-oh/refs/heads/main/json-schema/ygoprodeck-api-card-class-values-schema.json",
  "title": "CardClassValues",
  "description": "Valid values for a non-monster card class (Spell, Trap, or Skill).",
  "type": "object",
  "properties": {
    "type": {
      "type": "array",
      "description": "Types within this card class.",
      "items": {
        "type": "string"
      }
    },
    "race": {
      "type": "array",
      "description": "Sub-types or races within this card class.",
      "items": {
        "type": "string"
      }
    }
  }
}