Battle.net · JSON Structure

Hearthstone Game Data Deck Class Structure

The class associated with a deck.

Type: object Properties: 3
GamesGamingBlizzardWorld Of WarcraftDiabloHearthstoneStarcraft

DeckClass is a JSON Structure definition published by Battle.net, describing 3 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

slug id name

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/battle-net/refs/heads/main/json-structure/hearthstone-game-data-deck-class-structure.json",
  "name": "DeckClass",
  "description": "The class associated with a deck.",
  "type": "object",
  "properties": {
    "slug": {
      "type": "string",
      "description": "The class slug.",
      "example": "mage"
    },
    "id": {
      "type": "int32",
      "description": "The class ID.",
      "example": 3
    },
    "name": {
      "type": "string",
      "description": "The class name.",
      "example": "Mage"
    }
  }
}