{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/battle-net/refs/heads/main/json-schema/hearthstone-game-data-deck-card-schema.json", "title": "DeckCard", "description": "A card included in a deck.", "type": "object", "properties": { "id": { "type": "integer", "description": "The card ID.", "example": 52119 }, "count": { "type": "integer", "description": "Number of copies of this card in the deck.", "example": 2 }, "slug": { "type": "string", "description": "The card slug.", "example": "52119-ragnaros-the-firelord" }, "name": { "type": "string", "description": "The card name.", "example": "Ragnaros the Firelord" } } }