Reaction record - emoji reactions to items/collections
Record Key
tid
Timestamp-based ID
Properties
createdAt
string
datetime
Required
An RFC 3339 formatted timestamp.
subject
ref
social.showcase.defs#reactionSubject
Required
No description available.
type
string
Required
Emoji reaction shortcode (e.g., :heart:, :fire:, :star:)
maxLength: 100 bytesView raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"subject",
"type",
"createdAt"
],
"properties": {
"type": {
"type": "string",
"maxLength": 100,
"description": "Emoji reaction shortcode (e.g., :heart:, :fire:, :star:)"
},
"subject": {
"ref": "social.showcase.defs#reactionSubject",
"type": "ref"
},
"createdAt": {
"type": "string",
"format": "datetime"
}
}
},
"description": "Reaction record - emoji reactions to items/collections"
}