A reply on a discussion. Lives in the author's repo.
Record Key
tid
Timestamp-based ID
Properties
body
string
Required
No description available.
maxLength: 20000 bytesmaxGraphemes: 10000 graphemescreatedAt
string
datetime
Required
An RFC 3339 formatted timestamp.
parent
ref
com.atproto.repo.strongRef
Optional
Optional parent reply, for threading.
subject
ref
com.atproto.repo.strongRef
Required
The discussion being replied to. Indexed by constellation at subject.uri.
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"subject",
"body",
"createdAt"
],
"properties": {
"body": {
"type": "string",
"maxLength": 20000,
"maxGraphemes": 10000
},
"parent": {
"ref": "com.atproto.repo.strongRef",
"type": "ref",
"description": "Optional parent reply, for threading."
},
"subject": {
"ref": "com.atproto.repo.strongRef",
"type": "ref",
"description": "The discussion being replied to. Indexed by constellation at subject.uri."
},
"createdAt": {
"type": "string",
"format": "datetime"
}
}
},
"description": "A reply on a discussion. Lives in the author's repo."
}