{
  "type": "object",
  "properties": {
    "building_groups": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "group_id": {"type": "string", "pattern": "^[a-z0-9][a-z0-9_]*$"},
          "anchor_loc": {"type": "string", "pattern": "^[A-Za-z0-9_]+$"},
          "kind": {"type": "string", "enum": ["chain_bg", "prev_shot_ref"]},
          "members": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "loc_id": {"type": "string", "pattern": "^[A-Za-z0-9_]+$"},
                "label": {"type": "string"},
                "shot_count": {"type": "integer", "minimum": 0},
                "is_indoor": {"type": "boolean"}
              },
              "required": ["loc_id", "label", "shot_count", "is_indoor"],
              "additionalProperties": false
            },
            "minItems": 1
          },
          "rationale": {"type": "string"}
        },
        "required": ["group_id", "anchor_loc", "kind", "members", "rationale"],
        "additionalProperties": false
      }
    }
  },
  "required": ["building_groups"],
  "additionalProperties": false
}
