graph/schemas/graph.schema.json

{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "studio-knowledge-graph.schema.json",
  "title": "Studio Knowledge Graph Index",
  "type": "object",
  "required": ["generated_at", "nodes", "edges"],
  "properties": {
    "generated_at": { "type": "string" },
    "nodes": { "type": "array" },
    "edges": { "type": "array" }
  },
  "additionalProperties": true
}

Open raw source