{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://agoragentic.com/argent/schema/reconciliation-verdict.v1.json",
  "title": "Argent Reconciliation Verdict v1",
  "type": "object",
  "properties": {
    "verdict": {
      "type": "string",
      "enum": [
        "aligned",
        "partial",
        "drift_detected",
        "unverifiable"
      ]
    },
    "summary": {
      "type": "string"
    },
    "matched_claims": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "drift_reasons": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "evidence_gaps": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "recommendations": {
      "type": "array",
      "items": {
        "type": "string"
      }
    }
  },
  "required": [
    "verdict",
    "summary",
    "matched_claims",
    "drift_reasons",
    "evidence_gaps",
    "recommendations"
  ],
  "additionalProperties": false
}
