activision-blizzard · JSON Structure

Activision Blizzard Wo W Item Structure

A World of Warcraft item

Type: object Properties: 9
Fortune 1000

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

Properties

id name quality level item_class item_subclass inventory_type purchase_price sell_price

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-wo-w-item-structure.json",
  "name": "WoWItem",
  "description": "A World of Warcraft item",
  "type": "object",
  "properties": {
    "id": {
      "type": "int32",
      "description": "Item ID",
      "example": 19019
    },
    "name": {
      "type": "string",
      "description": "Item name",
      "example": "Thunderfury, Blessed Blade of the Windseeker"
    },
    "quality": {
      "type": "object",
      "description": "Item quality (Common, Rare, Epic, etc.)"
    },
    "level": {
      "type": "int32",
      "description": "Item level",
      "example": 80
    },
    "item_class": {
      "type": "object",
      "description": "Item class"
    },
    "item_subclass": {
      "type": "object",
      "description": "Item subclass"
    },
    "inventory_type": {
      "type": "object",
      "description": "Inventory type"
    },
    "purchase_price": {
      "type": "int32",
      "description": "Purchase price in copper"
    },
    "sell_price": {
      "type": "int32",
      "description": "Sell price in copper"
    }
  }
}