{
  "type": "object",
  "properties": {
    "scene_index": {"type": "integer"},
    "heading": {"type": "string"},
    "beat_title": {"type": "string", "description": "이 씬의 핵심을 한마디로"},
    "representative_moment": {"type": "string", "description": "스틸 이미지로 만들 대표 순간 (한 문장). 인물은 short_id(C01 등)로 참조."},
    "t2i_variations": {
      "type": "array",
      "description": "서로 다른 구성의 T2I 프롬프트들",
      "items": {
        "type": "object",
        "properties": {
          "variant_label": {"type": "string", "description": "var_1, var_2 등"},
          "camera_effect": {"type": "string", "description": "카메라 구도 + 색감 (필수)"},
          "t2i_prompt": {"type": "string", "description": "T2I 프롬프트. 인물은 C01, C05 등 bare ID만 사용. 복합ID(C01O02) 금지. 소품은 P01, 배경은 [L01: 설명] 형태."},
          "outfit_assignments": {
            "type": "array",
            "description": "이 variation에서 각 인물이 입는 아웃룩. 인물별 1개씩.",
            "items": {
              "type": "object",
              "properties": {
                "character_id": {"type": "string", "description": "인물 ID (C01 등)"},
                "outlook_id": {"type": "string", "description": "아웃룩 ID (O01 등)"}
              },
              "required": ["character_id", "outlook_id"],
              "additionalProperties": false
            }
          }
        },
        "required": ["variant_label", "camera_effect", "t2i_prompt", "outfit_assignments"],
        "additionalProperties": false
      }
    },
    "scene_type": {
      "type": "string",
      "enum": ["normal", "montage", "flashback", "dream", "voiceover", "transition"],
      "description": "씬의 유형"
    },
    "dependent_scene_index": {
      "type": "integer",
      "description": "앞쪽 시각 연관 씬. -1 if none"
    },
    "dependency_reason": {"type": "string"}
  },
  "required": [
    "scene_index", "heading", "beat_title", "representative_moment",
    "t2i_variations", "scene_type",
    "dependent_scene_index", "dependency_reason"
  ],
  "additionalProperties": false
}
