WoWCharacterAchievements

Character achievements summary

Fortune 1000

Properties

Name Type Description
total_quantity integer Total achievements completed
total_points integer Total achievement points
achievements array List of completed achievements
View JSON Schema on GitHub

JSON Schema

activision-blizzard-wo-w-character-achievements-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/activision-blizzard/refs/heads/main/json-schema/activision-blizzard-wo-w-character-achievements-schema.json",
  "title": "WoWCharacterAchievements",
  "description": "Character achievements summary",
  "type": "object",
  "properties": {
    "total_quantity": {
      "type": "integer",
      "description": "Total achievements completed",
      "example": 2500
    },
    "total_points": {
      "type": "integer",
      "description": "Total achievement points",
      "example": 15000
    },
    "achievements": {
      "type": "array",
      "items": {
        "type": "object"
      },
      "description": "List of completed achievements"
    }
  }
}