Battle.net · Schema

DeckClass

The class associated with a deck.

GamesGamingBlizzardWorld Of WarcraftDiabloHearthstoneStarcraft

Properties

Name Type Description
slug string The class slug.
id integer The class ID.
name string The class name.
View JSON Schema on GitHub

JSON Schema

hearthstone-game-data-deck-class-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-class-schema.json",
  "title": "DeckClass",
  "description": "The class associated with a deck.",
  "type": "object",
  "properties": {
    "slug": {
      "type": "string",
      "description": "The class slug.",
      "example": "mage"
    },
    "id": {
      "type": "integer",
      "description": "The class ID.",
      "example": 3
    },
    "name": {
      "type": "string",
      "description": "The class name.",
      "example": "Mage"
    }
  }
}