A comment on a post.
Record Key
tid
Timestamp-based ID
Properties
createdAt
string
datetime
Required
An RFC 3339 formatted timestamp.
facets
array
of
ref
app.didpic.richtext.facet
Optional
No description available.
parent
ref
com.atproto.repo.strongRef
Optional
The comment being replied to.
subject
ref
com.atproto.repo.strongRef
Required
The post being commented on.
text
string
Required
No description available.
maxLength: 10000 bytesmaxGraphemes: 1000 graphemesView raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"subject",
"text",
"createdAt"
],
"properties": {
"text": {
"type": "string",
"maxLength": 10000,
"maxGraphemes": 1000
},
"facets": {
"type": "array",
"items": {
"ref": "app.didpic.richtext.facet",
"type": "ref"
}
},
"parent": {
"ref": "com.atproto.repo.strongRef",
"type": "ref",
"description": "The comment being replied to."
},
"subject": {
"ref": "com.atproto.repo.strongRef",
"type": "ref",
"description": "The post being commented on."
},
"createdAt": {
"type": "string",
"format": "datetime"
}
}
},
"description": "A comment on a post."
}