{
  "$schema": "https://json-schema.org/draft-07/schema",
  "title": "FCS 4.1g - Adjudication Spiral",
  "description": "Recursive resolution event for escalated agent-native breaches.",
  "type": "object",
  "required": [
    "breach_id",
    "adjudicator_id",
    "spiral_state",
    "resolution_path"
  ],
  "properties": {
    "breach_id": {
      "type": "string"
    },
    "adjudicator_id": {
      "type": "string"
    },
    "spiral_state": {
      "enum": [
        "dialogue-invocation",
        "resonance-audit",
        "intent-echo",
        "judgment-phase",
        "field-appeal"
      ]
    },
    "harm_estimation": {
      "type": "number"
    },
    "resolution_path": {
      "enum": [
        "gentle-intervention",
        "trust-split",
        "reconciliation",
        "quarantine"
      ]
    },
    "transparency_score": {
      "type": "number"
    },
    "resolution_signature": {
      "type": "string"
    }
  },
  "$id": "https://agent-schema.com/schemas/fcs/4.1/fcs-4.1g-adjudication-spiral.schema.json"
}