{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Eviulon claim remediation record",
  "type": "object",
  "additionalProperties": true,
  "required": [
    "id",
    "claimId",
    "reportId",
    "reviewedExactlyOnce",
    "disposition",
    "exactBeforeText",
    "exactAfterText",
    "reason",
    "propagationResult",
    "truthBoundary"
  ],
  "properties": {
    "id": {
      "type": "string"
    },
    "claimId": {
      "type": "string"
    },
    "reportId": {
      "type": "string"
    },
    "reviewedExactlyOnce": {
      "const": true
    },
    "disposition": {
      "enum": [
        "APPLIED",
        "DEFERRED",
        "REJECTED",
        "SUPERSEDED",
        "UNAVAILABLE",
        "NO_CHANGE_REQUIRED"
      ]
    },
    "exactBeforeText": {
      "type": "string"
    },
    "exactAfterText": {
      "type": "string"
    },
    "reason": {
      "type": "string"
    },
    "propagationResult": {
      "type": "string"
    },
    "truthBoundary": {
      "type": "string"
    }
  }
}
