{
  "type": "object",
  "properties": {
    "selected_shots": {
      "type": "array",
      "description": "선택된 Shot — 각 항목은 shot_index와 선택 근거(reason)를 포함",
      "items": {
        "type": "object",
        "properties": {
          "shot_index": {"type": "integer"},
          "reason": {
            "type": "string",
            "description": "한 문장 선택 근거. 서사·시각 매트릭스 기반 (예: '서사 High / 시각 High — 관계 전환점')"
          }
        },
        "required": ["shot_index", "reason"],
        "additionalProperties": false
      }
    }
  },
  "required": ["selected_shots"],
  "additionalProperties": false
}
