{ "$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" } } }