Reply to a comment or another reply.
Record Key
tid
Timestamp-based ID
Properties
content
ref
com.deckbelcher.richtext#document
Required
Rich text content.
createdAt
string
datetime
Required
An RFC 3339 formatted timestamp.
parent
ref
com.atproto.repo.strongRef
Required
The comment or reply being replied to.
root
ref
com.atproto.repo.strongRef
Required
The root top-level comment (for efficient thread loading).
updatedAt
string
datetime
Optional
An RFC 3339 formatted timestamp.
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"parent",
"root",
"content",
"createdAt"
],
"properties": {
"root": {
"ref": "com.atproto.repo.strongRef",
"type": "ref",
"description": "The root top-level comment (for efficient thread loading)."
},
"parent": {
"ref": "com.atproto.repo.strongRef",
"type": "ref",
"description": "The comment or reply being replied to."
},
"content": {
"ref": "com.deckbelcher.richtext#document",
"type": "ref",
"description": "Rich text content."
},
"createdAt": {
"type": "string",
"format": "datetime"
},
"updatedAt": {
"type": "string",
"format": "datetime"
}
}
},
"description": "Reply to a comment or another reply."
}