graph/schemas/edge.schema.json

{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "studio-knowledge-graph-edge.schema.json",
  "title": "Studio Knowledge Graph Edge",
  "type": "object",
  "required": ["id", "type", "from", "to", "description"],
  "properties": {
    "id": { "type": "string" },
    "type": { "type": "string" },
    "from": { "type": "string" },
    "to": { "type": "string" },
    "description": { "type": "string" }
  },
  "additionalProperties": false
}

Open raw source