{
	"lexicon": 1,
	"id": "pub.byline.comment",
	"defs": {
		"main": {
			"type": "record",
			"key": "tid",
			"description": "A reader or author comment on a pub.byline.book record. Written to the commenter's own repository on any AT Protocol PDS.",
			"record": {
				"type": "object",
				"required": ["text", "book", "createdAt"],
				"properties": {
					"text": {
						"type": "string",
						"maxGraphemes": 10000,
						"maxLength": 100000
					},
					"book": {
						"type": "ref",
						"ref": "com.atproto.repo.strongRef",
						"description": "The book being discussed."
					},
					"parent": {
						"type": "ref",
						"ref": "com.atproto.repo.strongRef",
						"description": "Parent comment for threading; omit for a top-level comment."
					},
					"createdAt": {
						"type": "string",
						"format": "datetime"
					}
				}
			}
		}
	}
}
