activision-blizzard · JSON Structure

Activision Blizzard Hearthstone Cards Response Structure

Paginated Hearthstone cards response

Type: object Properties: 4
Fortune 1000

HearthstoneCardsResponse is a JSON Structure definition published by activision-blizzard, describing 4 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

cards cardCount pageCount page

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/activision-blizzard/refs/heads/main/json-structure/activision-blizzard-hearthstone-cards-response-structure.json",
  "name": "HearthstoneCardsResponse",
  "description": "Paginated Hearthstone cards response",
  "type": "object",
  "properties": {
    "cards": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/HearthstoneCard"
      },
      "description": "List of cards"
    },
    "cardCount": {
      "type": "int32",
      "description": "Total card count",
      "example": 2847
    },
    "pageCount": {
      "type": "int32",
      "description": "Total page count",
      "example": 143
    },
    "page": {
      "type": "int32",
      "description": "Current page",
      "example": 1
    }
  }
}