{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "items": {
      "type": "array",
      "items": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
          "shot": {"type": "string"},
          "objects_en": {"type": "string"},
          "people": {
            "type": "array",
            "items": {
              "type": "object",
              "additionalProperties": false,
              "properties": {
                "character_ko": {"type": "string"},
                "state_en": {"type": "string"},
                "basis_ko": {"type": "string"}
              },
              "required": ["character_ko", "state_en", "basis_ko"]
            }
          },
          "offscreen_effects_en": {"type": "string"},
          "basis_ko": {"type": "string"}
        },
        "required": ["shot", "objects_en", "people",
                     "offscreen_effects_en", "basis_ko"]
      }
    }
  },
  "required": ["items"]
}
