A reaction to a flush.
Record Key
tid
Timestamp-based ID
Properties
createdAt
string
datetime
Required
An RFC 3339 formatted timestamp.
emoji
string
Required
A single emoji.
maxLength: 32 bytesmaxGraphemes: 1 graphemessubject
ref
com.atproto.repo.strongRef
Required
The flush being reacted to.
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"subject",
"emoji",
"createdAt"
],
"properties": {
"emoji": {
"type": "string",
"maxLength": 32,
"description": "A single emoji.",
"maxGraphemes": 1
},
"subject": {
"ref": "com.atproto.repo.strongRef",
"type": "ref",
"description": "The flush being reacted to."
},
"createdAt": {
"type": "string",
"format": "datetime"
}
}
},
"description": "A reaction to a flush."
}