{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://super-calendar.io/agents/context.schema.json",
  "title": "Super Calendar Agent Bootstrap Context",
  "type": "object",
  "required": [
    "version",
    "kind",
    "generated_from",
    "identity",
    "authority",
    "resources",
    "domains",
    "surface_defaults",
    "rules"
  ],
  "properties": {
    "$schema": { "type": "string" },
    "version": { "type": "string" },
    "kind": { "const": "agent-bootstrap-context" },
    "generated_from": { "type": "object" },
    "identity": { "type": "object" },
    "authority": {
      "type": "object",
      "required": ["source", "order"],
      "properties": {
        "source": { "type": "string" },
        "order": {
          "type": "array",
          "items": { "type": "string" }
        }
      }
    },
    "resources": { "type": "object" },
    "domains": { "type": "object" },
    "surface_defaults": { "type": "object" },
    "rules": { "type": "object" }
  },
  "additionalProperties": true
}
