Unified proposal for creating, updating, merging, or deprecating knowledge graph nodes (stored in user PDS)
tid
Timestamp-based ID
Properties
createdAt
string
datetime
Required
An RFC 3339 formatted timestamp.
evidence
array
of
ref
#evidence
Optional
Supporting evidence for the proposal
maxLength: 10 itemskind
string
Required
Node kind being proposed
type, objectmergeIntoUri
string
at-uri
Optional
AT-URI of node to merge into (for merge action)
proposalType
string
Required
Type of proposal action
create, update, merge, deprecateproposedNode
ref
#proposedNodeData
Optional
Proposed node data (for create/update)
rationale
string
Required
Justification for the proposal
maxLength: 2000 bytesschemaRevision
integer
Optional
Schema revision this record was created with. Absent means revision 1.
minimum: 1subkind
string
Optional
Subkind slug (e.g., 'field', 'institution', 'contribution-type')
maxLength: 50 bytestargetUri
string
at-uri
Optional
AT-URI of node to update/deprecate/merge
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"proposalType",
"kind",
"rationale",
"createdAt"
],
"properties": {
"kind": {
"type": "string",
"description": "Node kind being proposed",
"knownValues": [
"type",
"object"
]
},
"subkind": {
"type": "string",
"maxLength": 50,
"description": "Subkind slug (e.g., 'field', 'institution', 'contribution-type')"
},
"evidence": {
"type": "array",
"items": {
"ref": "#evidence",
"type": "ref"
},
"maxLength": 10,
"description": "Supporting evidence for the proposal"
},
"createdAt": {
"type": "string",
"format": "datetime"
},
"rationale": {
"type": "string",
"maxLength": 2000,
"description": "Justification for the proposal"
},
"targetUri": {
"type": "string",
"format": "at-uri",
"description": "AT-URI of node to update/deprecate/merge"
},
"mergeIntoUri": {
"type": "string",
"format": "at-uri",
"description": "AT-URI of node to merge into (for merge action)"
},
"proposalType": {
"type": "string",
"description": "Type of proposal action",
"knownValues": [
"create",
"update",
"merge",
"deprecate"
]
},
"proposedNode": {
"ref": "#proposedNodeData",
"type": "ref",
"description": "Proposed node data (for create/update)"
},
"schemaRevision": {
"type": "integer",
"minimum": 1,
"description": "Schema revision this record was created with. Absent means revision 1."
}
}
},
"description": "Unified proposal for creating, updating, merging, or deprecating knowledge graph nodes (stored in user PDS)"
}