A private-ish bookmark of a record (it still lives in your public repo). The rkey is a hash of the subject URI so each account can bookmark a subject at most once.
Record Key
any
Any valid record key
Properties
createdAt
string
datetime
Required
An RFC 3339 formatted timestamp.
subject
ref
com.atproto.repo.strongRef
Required
No description available.
title
string
Optional
Snapshot of the subject's title at bookmark time.
maxLength: 1280 bytesmaxGraphemes: 128 graphemesView raw schema
{
"key": "any",
"type": "record",
"record": {
"type": "object",
"required": [
"subject",
"createdAt"
],
"properties": {
"title": {
"type": "string",
"maxLength": 1280,
"description": "Snapshot of the subject's title at bookmark time.",
"maxGraphemes": 128
},
"subject": {
"ref": "com.atproto.repo.strongRef",
"type": "ref"
},
"createdAt": {
"type": "string",
"format": "datetime"
}
}
},
"description": "A private-ish bookmark of a record (it still lives in your public repo). The rkey is a hash of the subject URI so each account can bookmark a subject at most once."
}