WoWGuild

A World of Warcraft guild

Fortune 1000

Properties

Name Type Description
id integer Guild ID
name string Guild name
faction object Guild faction
realm object
member_count integer Number of guild members
achievement_points integer Guild achievement points
View JSON Schema on GitHub

JSON Schema

activision-blizzard-wo-w-guild-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-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
    }
  }
}