View raw schema
{
"type": "object",
"required": [
"id",
"uri",
"kind",
"label",
"status",
"createdAt"
],
"properties": {
"id": {
"type": "string",
"description": "Node UUID identifier"
},
"cid": {
"type": "string",
"description": "Content identifier"
},
"uri": {
"type": "string",
"format": "at-uri",
"description": "AT-URI of the node"
},
"kind": {
"type": "string",
"description": "Node kind: type or object",
"knownValues": [
"type",
"object"
]
},
"edges": {
"type": "array",
"items": {
"ref": "#graphEdge",
"type": "ref"
},
"description": "Connected edges (when includeEdges=true)"
},
"label": {
"type": "string",
"description": "Primary display label"
},
"status": {
"type": "string",
"description": "Lifecycle status",
"knownValues": [
"proposed",
"provisional",
"established",
"deprecated"
]
},
"subkind": {
"type": "string",
"description": "Subkind slug (e.g., field, institution)"
},
"metadata": {
"ref": "pub.chive.graph.node#nodeMetadata",
"type": "ref",
"description": "Subkind-specific metadata"
},
"createdAt": {
"type": "string",
"format": "datetime",
"description": "Creation timestamp"
},
"createdBy": {
"type": "string",
"format": "did",
"description": "DID of creator"
},
"updatedAt": {
"type": "string",
"format": "datetime",
"description": "Last update timestamp"
},
"subkindUri": {
"type": "string",
"format": "at-uri",
"description": "AT-URI of the subkind type node"
},
"description": {
"type": "string",
"description": "Detailed description"
},
"externalIds": {
"type": "array",
"items": {
"ref": "pub.chive.graph.node#externalId",
"type": "ref"
},
"description": "External identifier mappings"
},
"proposalUri": {
"type": "string",
"format": "at-uri",
"description": "AT-URI of creating proposal"
},
"deprecatedBy": {
"type": "string",
"format": "at-uri",
"description": "AT-URI of superseding node"
},
"alternateLabels": {
"type": "array",
"items": {
"type": "string"
},
"description": "Alternate labels/synonyms"
}
},
"description": "Graph node with optional connected edges"
}