{
  "type": "object",
  "properties": {
    "dependencies": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "scene_index": {"type": "integer"},
          "prev_ref": {"type": "integer", "description": "앞쪽 시각 연관 씬 (-1 if none)"},
          "next_ref": {"type": "integer", "description": "뒤쪽 시각 연관 씬 (-1 if none)"},
          "reason": {"type": "string", "description": "연관 이유 (같은 장소 등)"}
        },
        "required": ["scene_index", "prev_ref", "next_ref", "reason"]
      }
    }
  },
  "required": ["dependencies"]
}