{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://darkbrokendisco.com/ai/site-graph.schema.json",
  "title": "dark.broken.disco site graph",
  "type": "object",
  "required": ["name", "site", "vocabulary", "canonical_sections", "releases", "signals"],
  "properties": {
    "name": { "type": "string" },
    "site": { "type": "string", "format": "uri" },
    "definition": { "type": "string" },
    "vocabulary": {
      "type": "object",
      "required": ["signals", "releases", "artifacts"]
    },
    "canonical_sections": { "type": "object" },
    "releases": { "type": "array" },
    "signals": { "type": "array" }
  }
}