A comment on a node, owned by its author.
Record Key
tid
Timestamp-based ID
Properties
createdAt
string
datetime
Required
When the comment was created.
facets
array
of
ref
app.bsky.richtext.facet
Optional
Rich text annotations over text.
subject
string
at-uri
Required
The node this comment is about.
text
string
Required
The comment's content.
maxLength: 10000 bytesView raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"subject",
"text",
"createdAt"
],
"properties": {
"text": {
"type": "string",
"maxLength": 10000,
"description": "The comment's content."
},
"facets": {
"type": "array",
"items": {
"ref": "app.bsky.richtext.facet",
"type": "ref"
},
"description": "Rich text annotations over text."
},
"subject": {
"type": "string",
"format": "at-uri",
"description": "The node this comment is about."
},
"createdAt": {
"type": "string",
"format": "datetime",
"description": "When the comment was created."
}
}
},
"description": "A comment on a node, owned by its author."
}