{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "AI Report Feedback",
  "type": "object",
  "additionalProperties": false,
  "required": [
    "report_id",
    "report_version",
    "anchor_id",
    "feedback"
  ],
  "properties": {
    "report_id": {
      "type": "string",
      "minLength": 1
    },
    "report_version": {
      "type": "string",
      "minLength": 1
    },
    "anchor_id": {
      "type": "string",
      "minLength": 1
    },
    "anchor_url": {
      "type": "string"
    },
    "quote": {
      "type": "string"
    },
    "feedback": {
      "type": "string",
      "minLength": 1
    },
    "suggested_change": {
      "type": "string"
    },
    "author": {
      "type": "string"
    },
    "created_at": {
      "type": "string"
    },
    "severity": {
      "type": "string",
      "enum": [
        "note",
        "minor",
        "major",
        "blocking"
      ]
    }
  }
}
