Record representing a 'repost' of an existing piece of content published in the Anisota feed. The target of the repost is the 'subject' of the record.
Record Key
tid
Timestamp-based ID
Properties
createdAt
string
datetime
Required
Client-declared timestamp when this repost was created.
subject
ref
com.atproto.repo.strongRef
Required
The subject of the repost.
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"subject",
"createdAt"
],
"properties": {
"subject": {
"ref": "com.atproto.repo.strongRef",
"type": "ref",
"description": "The subject of the repost."
},
"createdAt": {
"type": "string",
"format": "datetime",
"description": "Client-declared timestamp when this repost was created."
}
}
},
"description": "Record representing a 'repost' of an existing piece of content published in the Anisota feed. The target of the repost is the 'subject' of the record."
}