{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://super-calendar.io/agents/root.schema.json",
  "title": "Super Calendar Agent Root",
  "type": "object",
  "required": ["name", "version", "kind", "canonical_sources", "authority_order"],
  "properties": {
    "name": { "type": "string" },
    "version": { "type": "string" },
    "kind": { "const": "agent-root-of-trust" },
    "description": { "type": "string" },
    "canonical_sources": {
      "type": "object",
      "additionalProperties": { "type": "string" }
    },
    "authority_order": {
      "type": "array",
      "items": { "type": "string" }
    },
    "agent_rules": {
      "type": "object",
      "additionalProperties": { "type": "boolean" }
    },
    "fallback_behavior": {
      "type": "object",
      "additionalProperties": { "type": "string" }
    }
  },
  "additionalProperties": true
}

