A like or dislike on a comment or chat message. One active reaction per author per subject; the AppView keeps the newest.
Record Key
tid
Timestamp-based ID
Properties
createdAt
string
datetime
Required
An RFC 3339 formatted timestamp.
kind
string
Required
No description available.
Known values:
like, dislikesubject
ref
com.atproto.repo.strongRef
Required
No description available.
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"subject",
"kind",
"createdAt"
],
"properties": {
"kind": {
"type": "string",
"knownValues": [
"like",
"dislike"
]
},
"subject": {
"ref": "com.atproto.repo.strongRef",
"type": "ref"
},
"createdAt": {
"type": "string",
"format": "datetime"
}
}
},
"description": "A like or dislike on a comment or chat message. One active reaction per author per subject; the AppView keeps the newest."
}