Battle.net · Schema

Deck Class

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

battle-net-deckclass-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/DeckClass",
  "title": "Deck Class",
  "type": "object",
  "description": "The class associated with a deck.",
  "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"
    }
  }
}