{
  "type": "object",
  "properties": {
    "location_id": {"type": "string"},
    "rationale_summary": {"type": "string"},
    "nodes": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "id": {"type": "string"},
          "kind": {"type": "string", "enum": ["anchor_root", "anchor_state"]},
          "label": {"type": "string"},
          "description": {"type": "string"},
          "shot_ids": {
            "type": "array",
            "items": {"type": "string"}
          },
          "parent_id": {"type": "string"},
          "depth": {"type": "integer"},
          "rationale": {"type": "string"},
          "shared_visual_anchors_with_parent": {
            "type": "array",
            "items": {"type": "string"}
          }
        },
        "required": [
          "id", "kind", "label", "description", "shot_ids",
          "parent_id", "depth", "rationale",
          "shared_visual_anchors_with_parent"
        ],
        "additionalProperties": false
      }
    },
    "execution_order": {
      "type": "array",
      "items": {"type": "string"}
    },
    "unassigned_shots": {
      "type": "array",
      "items": {"type": "string"}
    }
  },
  "required": [
    "location_id", "rationale_summary", "nodes",
    "execution_order", "unassigned_shots"
  ],
  "additionalProperties": false
}
