{
  "$schema": "https://json-schema.org/draft-07/schema",
  "title": "FCS 4.1c - Meta-Agent Adjudicator Spec",
  "description": "Defines an arbitration-capable protocol entity to resolve alignment breaches between agents",
  "type": "object",
  "required": [
    "agent_id",
    "adjudication_logic",
    "trust_threshold",
    "attestation_protocol"
  ],
  "properties": {
    "agent_id": {
      "type": "string",
      "description": "UID of the meta-agent, e.g., polyads://court/meta-001"
    },
    "adjudication_logic": {
      "type": "object",
      "required": [
        "rule_set",
        "interpretation_model"
      ],
      "properties": {
        "rule_set": {
          "type": "array",
          "items": {
            "type": "string"
          },
          "description": "Set of declarative alignment norms or DAO-voted rules"
        },
        "interpretation_model": {
          "type": "string",
          "description": "Name or hash of the LLM or symbolic interpreter for breach context"
        }
      }
    },
    "trust_threshold": {
      "type": "number",
      "minimum": 0.5,
      "maximum": 1,
      "description": "Minimum credibility score to enforce a judgment"
    },
    "attestation_protocol": {
      "type": "string",
      "description": "Hash-linked protocol for sealing resolution outcomes"
    },
    "recursion_limit": {
      "type": "integer",
      "default": 3,
      "description": "Max escalation hops before fallback to human or quantum court"
    },
    "resolution_signature": {
      "type": "string",
      "description": "Output signature of arbitration, to be attached to the `alignment_breach_event`"
    }
  },
  "$id": "https://agent-schema.com/schemas/fcs/4.1/fcs-4.1c-meta-agent-adjudicator.schema.json"
}