{
  "type": "object",
  "properties": {
    "violations": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "owned_object": {"type": "string", "minLength": 1},
          "violating_phrase": {"type": "string", "minLength": 1},
          "reason": {"type": "string", "minLength": 1},
          "verdict": {"type": "string", "enum": ["redraw_violation", "anchor_reference"]}
        },
        "required": ["owned_object", "violating_phrase", "reason", "verdict"],
        "additionalProperties": false
      }
    }
  },
  "required": ["violations"],
  "additionalProperties": false
}
