Battle.net · Schema

DeckCard

A card included in a deck.

GamesGamingBlizzardWorld Of WarcraftDiabloHearthstoneStarcraft

Properties

Name Type Description
id integer The card ID.
count integer Number of copies of this card in the deck.
slug string The card slug.
name string The card name.
View JSON Schema on GitHub

JSON Schema

hearthstone-game-data-deck-card-schema.json Raw ↑
{
  "$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"
    }
  }
}