A reaction (emoji) to a thread or comment
Record Key
tid
Timestamp-based ID
Properties
createdAt
string
datetime
Required
Timestamp of reaction creation
emoji
string
Required
The emoji used for the reaction
maxLength: 32 bytesmaxGraphemes: 1 graphemessubject
ref
com.atproto.repo.strongRef
Required
Reference to the thread or comment being reacted to
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"subject",
"emoji",
"createdAt"
],
"properties": {
"emoji": {
"type": "string",
"maxLength": 32,
"description": "The emoji used for the reaction",
"maxGraphemes": 1
},
"subject": {
"ref": "com.atproto.repo.strongRef",
"type": "ref",
"description": "Reference to the thread or comment being reacted to"
},
"createdAt": {
"type": "string",
"format": "datetime",
"description": "Timestamp of reaction creation"
}
}
},
"description": "A reaction (emoji) to a thread or comment"
}