No description available.
Properties
author
ref
app.bsky.actor.defs#profileViewBasic
Required
No description available.
cid
string
cid
Required
A content identifier (CID) referencing immutable data.
indexedAt
string
datetime
Required
An RFC 3339 formatted timestamp.
likeCount
integer
Required
Number of likes on this comment.
minimum: 0record
unknown
Required
No description available.
replyTo
union
Optional
The parent comment this one replies to, if any. A non-recursive view (it carries no replyTo of its own), so the thread is flattened to a single hop; walk `record.reply` to follow the chain further.
uri
string
at-uri
Required
An AT Protocol URI (e.g., at://did:plc:xyz/app.bsky.feed.post/abc).
View raw schema
{
"type": "object",
"required": [
"uri",
"cid",
"author",
"record",
"indexedAt",
"likeCount"
],
"properties": {
"cid": {
"type": "string",
"format": "cid"
},
"uri": {
"type": "string",
"format": "at-uri"
},
"author": {
"ref": "app.bsky.actor.defs#profileViewBasic",
"type": "ref"
},
"record": {
"type": "unknown"
},
"replyTo": {
"refs": [
"#commentViewBasic"
],
"type": "union",
"description": "The parent comment this one replies to, if any. A non-recursive view (it carries no replyTo of its own), so the thread is flattened to a single hop; walk `record.reply` to follow the chain further."
},
"indexedAt": {
"type": "string",
"format": "datetime"
},
"likeCount": {
"type": "integer",
"minimum": 0,
"description": "Number of likes on this comment."
}
}
}