{ "$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-guild-schema.json", "title": "WoWGuild", "description": "A World of Warcraft guild", "type": "object", "properties": { "id": { "type": "integer", "description": "Guild ID", "example": 789012 }, "name": { "type": "string", "description": "Guild name", "example": "The Exodar" }, "faction": { "type": "object", "description": "Guild faction" }, "realm": { "$ref": "#/components/schemas/WoWRealm" }, "member_count": { "type": "integer", "description": "Number of guild members", "example": 150 }, "achievement_points": { "type": "integer", "description": "Guild achievement points", "example": 5000 } } }