A reaction to a post.
Record Key
tid
Timestamp-based ID
Properties
createdAt
string
datetime
Required
Client-declared timestamp when the reaction was created.
reactionType
string
Required
The type of reaction.
maxLength: 20 bytesAllowed:
bloom, seed, sparkle, flame, laugh, skull, cry, heart, wow, thinksubject
string
at-uri
Required
AT URI of the post being reacted to.
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"subject",
"reactionType",
"createdAt"
],
"properties": {
"subject": {
"type": "string",
"format": "at-uri",
"description": "AT URI of the post being reacted to."
},
"createdAt": {
"type": "string",
"format": "datetime",
"description": "Client-declared timestamp when the reaction was created."
},
"reactionType": {
"enum": [
"bloom",
"seed",
"sparkle",
"flame",
"laugh",
"skull",
"cry",
"heart",
"wow",
"think"
],
"type": "string",
"maxLength": 20,
"description": "The type of reaction."
}
}
},
"description": "A reaction to a post."
}