A reaction to a post.
Record Key
tid
Timestamp-based ID
Properties
createdAt
string
datetime
Required
An RFC 3339 formatted timestamp.
postId
string
Optional
No description available.
reactionType
string
Required
No description available.
Known values:
insane_pull, jealous, congrats, trade_interest, gratz_set, better_luck, wowreactorAvatar
string
uri
Optional
A valid URI.
reactorDid
string
did
Optional
A decentralized identifier (DID).
reactorHandle
string
Optional
No description available.
reactorName
string
Optional
No description available.
subject
string
at-uri
Required
An AT Protocol URI (e.g., at://did:plc:xyz/app.bsky.feed.post/abc).
targetCardUri
string
Optional
No description available.
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"subject",
"reactionType",
"createdAt"
],
"properties": {
"postId": {
"type": "string"
},
"subject": {
"type": "string",
"format": "at-uri"
},
"createdAt": {
"type": "string",
"format": "datetime"
},
"reactorDid": {
"type": "string",
"format": "did"
},
"reactorName": {
"type": "string"
},
"reactionType": {
"type": "string",
"knownValues": [
"insane_pull",
"jealous",
"congrats",
"trade_interest",
"gratz_set",
"better_luck",
"wow"
]
},
"reactorAvatar": {
"type": "string",
"format": "uri"
},
"reactorHandle": {
"type": "string"
},
"targetCardUri": {
"type": "string"
}
}
},
"description": "A reaction to a post."
}