A card included in a deck.
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/DeckCard", "title": "Deck Card", "type": "object", "description": "A card included in a deck.", "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" } } }