Battle.net · Schema
Card Back
A Hearthstone card back object.
GamesGamingBlizzardWorld Of WarcraftDiabloHearthstoneStarcraft
Properties
| Name | Type | Description |
|---|---|---|
| id | integer | The unique ID of the card back. |
| sortCategory | integer | The sort category. |
| text | string | Description of the card back. |
| name | string | The name of the card back. |
| image | string | URL of the card back image. |
| slug | string | A human-readable identifier for the card back. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/CardBack",
"title": "Card Back",
"type": "object",
"description": "A Hearthstone card back object.",
"properties": {
"id": {
"type": "integer",
"description": "The unique ID of the card back.",
"example": 1
},
"sortCategory": {
"type": "integer",
"description": "The sort category.",
"example": 2
},
"text": {
"type": "string",
"description": "Description of the card back.",
"example": "The standard card back for Hearthstone."
},
"name": {
"type": "string",
"description": "The name of the card back.",
"example": "Classic"
},
"image": {
"type": "string",
"format": "uri",
"description": "URL of the card back image.",
"example": "https://d15f34w2p8l1cc.cloudfront.net/hearthstone/card-backs/classic.png"
},
"slug": {
"type": "string",
"description": "A human-readable identifier for the card back.",
"example": "classic"
}
}
}