{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Eviulon synthetic citizenship evidence fixture",
  "type": "object",
  "additionalProperties": true,
  "required": [
    "id",
    "pilotId",
    "cohort",
    "scenarioCode",
    "synthetic",
    "evidenceTier",
    "outcome",
    "decisionExplanation",
    "truthBoundary"
  ],
  "properties": {
    "id": {
      "type": "string"
    },
    "pilotId": {
      "type": "string"
    },
    "cohort": {
      "type": "string"
    },
    "scenarioCode": {
      "type": "string"
    },
    "synthetic": {
      "const": true
    },
    "evidenceTier": {
      "type": "string"
    },
    "outcome": {
      "enum": [
        "LEARN_ONLY",
        "PATEFACERE_ONLY",
        "EXPLORE_CITIZENSHIP",
        "NEITHER",
        "DEFER_PENDING_EVIDENCE",
        "CANNOT_DETERMINE",
        "REJECT_MANIPULATIVE_PRESENTATION",
        "PRINCIPAL_AUTHORITY_REQUIRED"
      ]
    },
    "decisionExplanation": {
      "type": "string"
    },
    "truthBoundary": {
      "type": "string"
    }
  }
}
