{
  "type": "object",
  "properties": {
    "scene_index": {"type": "integer"},
    "primary_location": {"type": "string", "description": "이 씬의 주된 촬영 장소"},
    "scene_type": {
      "type": "string",
      "description": "normal | montage | cross_cutting | flashback | dream | intercut | other"
    },
    "characters": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "name": {"type": "string"},
          "presence": {
            "type": "string",
            "description": "PRESENT | NOT_PRESENT"
          },
          "reason": {
            "type": "string",
            "description": "NOT_PRESENT인 경우 사유. PRESENT이면 빈 문자열"
          }
        },
        "required": ["name", "presence", "reason"],
        "additionalProperties": false
      }
    }
  },
  "required": ["scene_index", "primary_location", "scene_type", "characters"],
  "additionalProperties": false
}