{ "$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-d3-career-profile-schema.json", "title": "D3CareerProfile", "description": "Diablo III career profile", "type": "object", "properties": { "battletag": { "type": "string", "description": "Player BattleTag", "example": "Player#1234" }, "paragonLevel": { "type": "integer", "description": "Paragon level", "example": 1500 }, "paragonLevelHardcore": { "type": "integer", "description": "Hardcore paragon level", "example": 200 }, "guildName": { "type": "string", "description": "Guild name" }, "heroes": { "type": "array", "items": { "$ref": "#/components/schemas/D3HeroSummary" }, "description": "List of heroes" }, "lastHeroPlayed": { "type": "integer", "description": "ID of last hero played", "example": 12345 }, "kills": { "type": "object", "description": "Kill statistics" }, "timePlayed": { "type": "object", "description": "Time played by class" } } }