{
  "type": "object",
  "properties": {
    "scenes": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "scene_index": {"type": "integer"},
          "shot_1": {"type": "string", "description": "첫 번째 촬영 기법 name"},
          "shot_1_reason": {"type": "string", "description": "선택 이유 한 줄"},
          "shot_1_focus": {"type": "string", "description": "인물 중심이면 누구, 환경이면 어디"},
          "shot_2": {"type": "string", "description": "두 번째 촬영 기법 name"},
          "shot_2_reason": {"type": "string", "description": "선택 이유 한 줄"},
          "shot_2_focus": {"type": "string", "description": "인물 중심이면 누구, 환경이면 어디"}
        },
        "required": ["scene_index", "shot_1", "shot_1_reason", "shot_1_focus", "shot_2", "shot_2_reason", "shot_2_focus"],
        "additionalProperties": false
      }
    }
  },
  "required": ["scenes"],
  "additionalProperties": false
}