{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://super-calendar.io/agents/index.schema.json",
  "title": "Super Calendar Agent Index",
  "type": "object",
  "required": [
    "name",
    "version",
    "kind",
    "resources",
    "authority_source",
    "authority_order"
  ],
  "properties": {
    "$schema": { "type": "string" },
    "name": { "type": "string" },
    "version": { "type": "string" },
    "kind": { "const": "agent-discovery-index" },
    "description": { "type": "string" },
    "resources": {
      "type": "object",
      "additionalProperties": {
        "type": "string",
        "pattern": "^/"
      }
    },
    "authority_source": { "type": "string" },
    "authority_order_status": { "type": "string" },
    "authority_order": {
      "type": "array",
      "items": { "type": "string" },
      "minItems": 1,
      "uniqueItems": true
    },
    "privacy": { "type": "object" },
    "content_policy_intent": { "type": "object" }
  },
  "additionalProperties": true
}
