Durable L@tr-owned state associated with a community bookmark.
Record Key
tid
Timestamp-based ID
Properties
bookmarkUri
string
at-uri
Required
An AT Protocol URI (e.g., at://did:plc:xyz/app.bsky.feed.post/abc).
lastOpenedAt
string
datetime
Optional
An RFC 3339 formatted timestamp.
legacyItemUris
array
of
string
at-uri
Optional
No description available.
maxLength: 100 itemsnote
string
Optional
No description available.
maxLength: 10000 bytesmaxGraphemes: 10000 graphemesstate
string
Optional
No description available.
Allowed:
unread, archivedsubject
string
uri
Required
A valid URI.
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"bookmarkUri",
"subject"
],
"properties": {
"note": {
"type": "string",
"maxLength": 10000,
"maxGraphemes": 10000
},
"state": {
"enum": [
"unread",
"archived"
],
"type": "string"
},
"subject": {
"type": "string",
"format": "uri"
},
"bookmarkUri": {
"type": "string",
"format": "at-uri"
},
"lastOpenedAt": {
"type": "string",
"format": "datetime"
},
"legacyItemUris": {
"type": "array",
"items": {
"type": "string",
"format": "at-uri"
},
"maxLength": 100
}
}
},
"description": "Durable L@tr-owned state associated with a community bookmark."
}