{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "AEP-007 Redaction Decision",
  "type": "object",
  "required": [
    "decision_id",
    "source_ref",
    "decision",
    "reason",
    "reviewer"
  ],
  "properties": {
    "decision_id": {
      "type": "string"
    },
    "source_ref": {
      "type": "string"
    },
    "decision": {
      "type": "string",
      "enum": [
        "publish",
        "redact",
        "summarize",
        "withhold",
        "embargo",
        "forbidden"
      ]
    },
    "reason": {
      "type": "string"
    },
    "reviewer": {
      "type": "string"
    }
  }
}
