{
  "type": "object",
  "properties": {
    "group_id": {"type": "string", "pattern": "^[a-z0-9][a-z0-9_]*$"},
    "rationale_summary": {"type": "string"},
    "floor_plans": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "fp_id": {"type": "string", "pattern": "^[a-z0-9][a-z0-9_]*$"},
          "sub_location": {"type": "string", "pattern": "^[a-z0-9][a-z0-9_]*$"},
          "scope": {"type": "string"},
          "depends_on_fp": {
            "type": "array",
            "items": {"type": "string"}
          }
        },
        "required": ["fp_id", "sub_location", "scope", "depends_on_fp"],
        "additionalProperties": false
      }
    },
    "backgrounds": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "bg_id": {"type": "string", "pattern": "^[a-z0-9][a-z0-9_]*$"},
          "loc_id": {"type": "string", "pattern": "^L[0-9]+$"},
          "sub_location": {"type": "string", "pattern": "^[a-z0-9][a-z0-9_]*$"},
          "state_label": {"type": "string", "pattern": "^[a-z0-9][a-z0-9_]*$"},
          "depends_on_fp": {
            "type": "array",
            "items": {"type": "string"},
            "minItems": 1,
            "maxItems": 1
          },
          "depends_on_bg": {
            "type": "array",
            "items": {"type": "string"}
          },
          "applies_to_shots": {
            "type": "array",
            "items": {"type": "string"}
          }
        },
        "required": ["bg_id", "loc_id", "sub_location", "state_label", "depends_on_fp", "depends_on_bg", "applies_to_shots"],
        "additionalProperties": false
      }
    },
    "gen_order": {
      "type": "array",
      "items": {"type": "string"}
    }
  },
  "required": ["group_id", "rationale_summary", "floor_plans", "backgrounds", "gen_order"],
  "additionalProperties": false
}
