YGOPRODeck · Schema

Archetype

A recognised Yu-Gi-Oh! archetype.

GamesTrading Card GamesYu Gi OhCard DatabaseOpen DataCommunity APIPublic APIs

Properties

Name Type Description
archetype_name string Archetype name.
View JSON Schema on GitHub

JSON Schema

ygoprodeck-api-archetype-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-archetype-schema.json",
  "title": "Archetype",
  "description": "A recognised Yu-Gi-Oh! archetype.",
  "type": "object",
  "properties": {
    "archetype_name": {
      "type": "string",
      "description": "Archetype name.",
      "example": "Blue-Eyes"
    }
  },
  "required": [
    "archetype_name"
  ]
}