Record noting an emoji reaction to something in the atmosphere.
Record Key
tid
Timestamp-based ID
Properties
comment
string
uri
Optional
An optional comment to include with the reaction.
createdAt
string
datetime
Required
The time when the reaction occurred or was recorded.
emoji
string
Optional
An optional emoji to express instead of the default smile (😊).
maxLength: 32 bytesminLength: 1 bytesmaxGraphemes: 1 graphemeslang
string
language
Optional
An optional language identifier for the comment.
offset
integer
Optional
A time offset (in seconds) for the reaction to use with recorded media
subject
string
at-uri
Required
A URI indicating the subject of the record owner's reaction.
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"subject",
"createdAt"
],
"properties": {
"lang": {
"type": "string",
"format": "language",
"description": "An optional language identifier for the comment."
},
"emoji": {
"type": "string",
"maxLength": 32,
"minLength": 1,
"description": "An optional emoji to express instead of the default smile (😊).",
"maxGraphemes": 1
},
"offset": {
"type": "integer",
"description": "A time offset (in seconds) for the reaction to use with recorded media"
},
"comment": {
"type": "string",
"format": "uri",
"description": "An optional comment to include with the reaction."
},
"subject": {
"type": "string",
"format": "at-uri",
"description": "A URI indicating the subject of the record owner's reaction."
},
"createdAt": {
"type": "string",
"format": "datetime",
"description": "The time when the reaction occurred or was recorded."
}
}
},
"description": "Record noting an emoji reaction to something in the atmosphere."
}