A reaction to a post
Record Key
any
Any valid record key
Properties
createdAt
string
datetime
Required
An RFC 3339 formatted timestamp.
subject
ref
com.atproto.repo.strongRef
Required
Reference to the post being reacted to
type
string
Required
Type of reaction
Known values:
suki, tasukaru, sugoi, kawaii, kamiView raw schema
{
"key": "any",
"type": "record",
"record": {
"type": "object",
"required": [
"subject",
"type",
"createdAt"
],
"properties": {
"type": {
"type": "string",
"description": "Type of reaction",
"knownValues": [
"suki",
"tasukaru",
"sugoi",
"kawaii",
"kami"
]
},
"subject": {
"ref": "com.atproto.repo.strongRef",
"type": "ref",
"description": "Reference to the post being reacted to"
},
"createdAt": {
"type": "string",
"format": "datetime"
}
}
},
"description": "A reaction to a post"
}