{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://iarpg.com/debrief.schema.json",
  "title": "IARPG Debrief",
  "type": "object",
  "required": [
    "debrief_id",
    "mission_id",
    "standard_version",
    "completed_utc",
    "objective_status",
    "evidence_acquired",
    "unresolved_uncertainty",
    "source_impact",
    "cover_impact",
    "access_status",
    "follow_on_requirements",
    "reason_codes"
  ],
  "properties": {
    "debrief_id": {
      "type": "string"
    },
    "mission_id": {
      "type": "string"
    },
    "standard_version": {
      "type": "string"
    },
    "completed_utc": {
      "type": "string"
    },
    "objective_status": {
      "type": "string"
    },
    "source_impact": {
      "type": "string"
    },
    "cover_impact": {
      "type": "string"
    },
    "access_status": {
      "type": "string"
    },
    "evidence_acquired": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "unresolved_uncertainty": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "follow_on_requirements": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "reason_codes": {
      "type": "array",
      "items": {
        "type": "string"
      }
    }
  }
}
