A reaction to a log entry.
Record Key
tid
Timestamp-based ID
Properties
createdAt
string
datetime
Required
Client-declared timestamp when this reaction was originally created.
subject
ref
com.atproto.repo.strongRef
Required
The entry being reacted to.
value
string
Required
The kind of reaction.
maxLength: 320 bytesmaxGraphemes: 32 graphemesKnown values:
like, dislike, looking, celebrate, supportView raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"subject",
"value",
"createdAt"
],
"properties": {
"value": {
"type": "string",
"maxLength": 320,
"description": "The kind of reaction.",
"knownValues": [
"like",
"dislike",
"looking",
"celebrate",
"support"
],
"maxGraphemes": 32
},
"subject": {
"ref": "com.atproto.repo.strongRef",
"type": "ref",
"description": "The entry being reacted to."
},
"createdAt": {
"type": "string",
"format": "datetime",
"description": "Client-declared timestamp when this reaction was originally created."
}
}
},
"description": "A reaction to a log entry."
}