No description available.
Record Key
tid
Timestamp-based ID
Properties
context
string
Optional
Why this link exists
maxLength: 512 bytescreatedAt
string
datetime
Required
An RFC 3339 formatted timestamp.
linkType
string
Required
No description available.
Known values:
related-to, depends-on, extends, contradicts, is-example-of, supersedes, references, defines, is-part-ofsource
string
at-uri
Required
An AT Protocol URI (e.g., at://did:plc:xyz/app.bsky.feed.post/abc).
sourceAnchor
string
Optional
Section heading slug in source
target
string
at-uri
Required
An AT Protocol URI (e.g., at://did:plc:xyz/app.bsky.feed.post/abc).
targetAnchor
string
Optional
Section heading slug in target
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"source",
"target",
"linkType",
"createdAt"
],
"properties": {
"source": {
"type": "string",
"format": "at-uri"
},
"target": {
"type": "string",
"format": "at-uri"
},
"context": {
"type": "string",
"maxLength": 512,
"description": "Why this link exists"
},
"linkType": {
"type": "string",
"knownValues": [
"related-to",
"depends-on",
"extends",
"contradicts",
"is-example-of",
"supersedes",
"references",
"defines",
"is-part-of"
]
},
"createdAt": {
"type": "string",
"format": "datetime"
},
"sourceAnchor": {
"type": "string",
"description": "Section heading slug in source"
},
"targetAnchor": {
"type": "string",
"description": "Section heading slug in target"
}
}
}
}