Record containing a comment on a VOD.
Record Key
tid
Timestamp-based ID
Properties
createdAt
string
datetime
Required
Client-declared timestamp when this comment was created.
facets
array
of
ref
place.stream.richtext.facet
Optional
Annotations of text (mentions, URLs, etc)
reply
ref
#replyRef
Optional
No description available.
text
string
Required
The comment text content.
maxLength: 3000 bytesmaxGraphemes: 300 graphemesvideo
string
at-uri
Required
AT-URI of the place.stream.video record this comment belongs to.
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"text",
"createdAt",
"video"
],
"properties": {
"text": {
"type": "string",
"maxLength": 3000,
"description": "The comment text content.",
"maxGraphemes": 300
},
"reply": {
"ref": "#replyRef",
"type": "ref"
},
"video": {
"type": "string",
"format": "at-uri",
"description": "AT-URI of the place.stream.video record this comment belongs to."
},
"facets": {
"type": "array",
"items": {
"ref": "place.stream.richtext.facet",
"type": "ref"
},
"description": "Annotations of text (mentions, URLs, etc)"
},
"createdAt": {
"type": "string",
"format": "datetime",
"description": "Client-declared timestamp when this comment was created."
}
}
},
"description": "Record containing a comment on a VOD."
}