{
  "type": "object",
  "properties": {
    "rows": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "owner_type": {
            "type": "string",
            "enum": [
              "prop",
              "character",
              "location",
              "location_part",
              "outlook"
            ]
          },
          "surface_form": {
            "type": "string",
            "minLength": 1
          },
          "mentions": {
            "type": "array",
            "minItems": 1,
            "items": {
              "type": "object",
              "properties": {
                "mention_quote": {
                  "type": "string",
                  "minLength": 1
                },
                "occurrence_index": {
                  "type": "integer",
                  "minimum": 1
                }
              },
              "required": [
                "mention_quote",
                "occurrence_index"
              ],
              "additionalProperties": false
            }
          },
          "evidence_quotes": {
            "type": "array",
            "maxItems": 4,
            "items": {
              "type": "string",
              "minLength": 1
            }
          },
          "hard_to_generate": {
            "type": "boolean"
          },
          "viewers_would_notice": {
            "type": "boolean"
          },
          "visual_brief": {
            "type": "string"
          },
          "search_terms_native": {
            "type": "array",
            "maxItems": 4,
            "items": {
              "type": "string",
              "minLength": 1
            }
          },
          "language_lock_native": {
            "type": "string"
          },
          "shot_appearance_ids": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "uniqueItems": true
          },
          "shot_binding_status": {
            "type": "string",
            "enum": [
              "bound_complete",
              "not_in_catalog_shots",
              "unresolved"
            ]
          }
        },
        "required": [
          "owner_type",
          "surface_form",
          "mentions",
          "evidence_quotes",
          "hard_to_generate",
          "viewers_would_notice",
          "visual_brief",
          "search_terms_native",
          "language_lock_native",
          "shot_appearance_ids",
          "shot_binding_status"
        ],
        "additionalProperties": false
      }
    }
  },
  "required": [
    "rows"
  ],
  "additionalProperties": false
}
