A custom-emoji reaction to a post. Analogous to app.bsky.feed.like, but the reaction glyph is a Bluemoji. Duplicate reactions (same subject + same emoji URI by the same actor) should be ignored by AppViews.
tid
Timestamp-based ID
Properties
createdAt
string
datetime
Required
An RFC 3339 formatted timestamp.
emoji
ref
#emojiRef
Required
No description available.
subject
string
at-uri
Required
AT-URI of the post being reacted to.
subjectCid
string
cid
Optional
CID of the subject post at reaction time, for strong referencing.
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"subject",
"emoji",
"createdAt"
],
"properties": {
"emoji": {
"ref": "#emojiRef",
"type": "ref"
},
"subject": {
"type": "string",
"format": "at-uri",
"description": "AT-URI of the post being reacted to."
},
"createdAt": {
"type": "string",
"format": "datetime"
},
"subjectCid": {
"type": "string",
"format": "cid",
"description": "CID of the subject post at reaction time, for strong referencing."
}
}
},
"description": "A custom-emoji reaction to a post. Analogous to app.bsky.feed.like, but the reaction glyph is a Bluemoji. Duplicate reactions (same subject + same emoji URI by the same actor) should be ignored by AppViews."
}