A reader or author comment on a pub.byline.book record. Written to the commenter's own repository on any AT Protocol PDS.
Record Key
tid
Timestamp-based ID
Properties
book
ref
lex:com.atproto.repo.strongRef
Required
The book being discussed.
createdAt
string
datetime
Required
An RFC 3339 formatted timestamp.
parent
ref
lex:com.atproto.repo.strongRef
Optional
Parent comment for threading; omit for a top-level comment.
text
string
Required
No description available.
maxLength: 100000 bytesmaxGraphemes: 10000 graphemesView raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"text",
"book",
"createdAt"
],
"properties": {
"book": {
"ref": "lex:com.atproto.repo.strongRef",
"type": "ref",
"description": "The book being discussed."
},
"text": {
"type": "string",
"maxLength": 100000,
"maxGraphemes": 10000
},
"parent": {
"ref": "lex:com.atproto.repo.strongRef",
"type": "ref",
"description": "Parent comment for threading; omit for a top-level comment."
},
"createdAt": {
"type": "string",
"format": "datetime"
}
}
},
"description": "A reader or author comment on a pub.byline.book record. Written to the commenter's own repository on any AT Protocol PDS."
}