graph/schemas/node.schema.json

{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "studio-knowledge-graph-node.schema.json",
  "title": "Studio Knowledge Graph Node",
  "type": "object",
  "required": ["id", "type", "title", "status", "owner", "description", "lifecycle", "tags", "relations", "created", "updated"],
  "properties": {
    "id": { "type": "string" },
    "type": { "type": "string" },
    "title": { "type": "string" },
    "status": { "type": "string" },
    "owner": { "type": "string" },
    "description": { "type": "string" },
    "lifecycle": { "type": "string", "enum": ["draft", "review", "approved", "implemented", "validated", "released", "deprecated"] },
    "tags": { "type": "array", "items": { "type": "string" } },
    "relations": { "type": "array", "items": { "type": "string" } },
    "created": { "type": "string" },
    "updated": { "type": "string" }
  },
  "additionalProperties": true
}

Open raw source