{
"id": "app.didpic.feed.comment",
"defs": {
"main": {
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"subject",
"text",
"createdAt"
],
"properties": {
"text": {
"type": "string",
"maxLength": 10000,
"maxGraphemes": 1000
},
"parent": {
"ref": "com.atproto.repo.strongRef",
"type": "ref",
"description": "Optional: the comment being replied to. Must be a comment on the same post as `subject`. When absent this is a top-level comment."
},
"subject": {
"ref": "com.atproto.repo.strongRef",
"type": "ref",
"description": "The post being commented on (top of the thread)."
},
"createdAt": {
"type": "string",
"format": "datetime"
}
}
},
"description": "A comment on a didpic post. Optionally a reply to another comment on the same post."
}
},
"$type": "com.atproto.lexicon.schema",
"lexicon": 1
}