Declares a Bluesky post as lore for a specific world. The subject references the post being declared as lore.
Record Key
tid
Timestamp-based ID
Properties
createdAt
string
datetime
Required
Timestamp of the lore declaration.
subject
ref
com.atproto.repo.strongRef
Required
Reference to the Bluesky post being declared as lore.
world
string
Required
The world domain this content belongs to.
maxLength: 253 bytesView raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"subject",
"world",
"createdAt"
],
"properties": {
"world": {
"type": "string",
"maxLength": 253,
"description": "The world domain this content belongs to."
},
"subject": {
"ref": "com.atproto.repo.strongRef",
"type": "ref",
"description": "Reference to the Bluesky post being declared as lore."
},
"createdAt": {
"type": "string",
"format": "datetime",
"description": "Timestamp of the lore declaration."
}
}
},
"description": "Declares a Bluesky post as lore for a specific world. The subject references the post being declared as lore."
}