{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "shots": {
      "type": "array",
      "items": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
          "scene_index": {
            "type": "integer",
            "description": "씬 번호 (1부터)"
          },
          "shot_index": {
            "type": "integer",
            "description": "씬 내 샷 번호 (1부터)"
          },
          "essence": {
            "type": "array",
            "items": {"type": "string"},
            "description": "한 컷 정체성을 결정하는 핵심 요소. 1~3개. 한국어 단문."
          },
          "peripheral": {
            "type": "array",
            "items": {"type": "string"},
            "description": "부차 요소. 0~3개. 한국어 단문."
          },
          "atmospheric": {
            "type": "array",
            "items": {"type": "string"},
            "description": "분위기/조명/배경 시각특징. chain bg가 처리. 0~3개. 한국어 단문."
          }
        },
        "required": ["scene_index", "shot_index", "essence", "peripheral", "atmospheric"]
      }
    }
  },
  "required": ["shots"]
}
