A live reference rendering another node's subtree in place.
Record Key
tid
Timestamp-based ID
Properties
createdAt
string
datetime
Required
When the mirror was created.
original
string
at-uri
Required
The node being mirrored. A bare AT-URI rather than a strongRef, because a mirror must track the live bullet including later edits; a strongRef would pin a CID and freeze the content.
parent
string
at-uri
Optional
The node this mirror hangs under. Absent means top level.
sortKey
string
Required
Fractional index ordering this mirror among its siblings.
maxLength: 512 bytesView raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"original",
"sortKey",
"createdAt"
],
"properties": {
"parent": {
"type": "string",
"format": "at-uri",
"description": "The node this mirror hangs under. Absent means top level."
},
"sortKey": {
"type": "string",
"maxLength": 512,
"description": "Fractional index ordering this mirror among its siblings."
},
"original": {
"type": "string",
"format": "at-uri",
"description": "The node being mirrored. A bare AT-URI rather than a strongRef, because a mirror must track the live bullet including later edits; a strongRef would pin a CID and freeze the content."
},
"createdAt": {
"type": "string",
"format": "datetime",
"description": "When the mirror was created."
}
}
},
"description": "A live reference rendering another node's subtree in place."
}