No description available.
Properties
author
ref
app.didpic.actor.defs#profileBasic
Required
No description available.
cid
string
cid
Required
A content identifier (CID) referencing immutable data.
createdAt
string
datetime
Required
An RFC 3339 formatted timestamp.
facets
array
of refapp.didpic.richtext.facet
Optional
No description available.
indexedAt
string
datetime
Required
An RFC 3339 formatted timestamp.
likeCount
integer
Optional
No description available.
minimum: 0parent
ref
com.atproto.repo.strongRef
Optional
If this comment is a reply, the comment it replies to.
replies
array
of refapp.didpic.feed.defs#commentView
Optional
Capped inline preview of replies. Fetch the remainder via feed.getCommentReplies.
replyCount
integer
Optional
No description available.
minimum: 0text
string
Required
No description available.
uri
string
at-uri
Required
An AT Protocol URI (e.g., at://did:plc:xyz/app.bsky.feed.post/abc).
viewerLike
string
at-uri
Optional
URI of the viewer's like record on this comment, if any.
View raw schema
{
"type": "object",
"required": [
"uri",
"cid",
"author",
"text",
"createdAt",
"indexedAt"
],
"properties": {
"cid": {
"type": "string",
"format": "cid"
},
"uri": {
"type": "string",
"format": "at-uri"
},
"text": {
"type": "string"
},
"author": {
"ref": "app.didpic.actor.defs#profileBasic",
"type": "ref"
},
"facets": {
"type": "array",
"items": {
"ref": "app.didpic.richtext.facet",
"type": "ref"
}
},
"parent": {
"ref": "com.atproto.repo.strongRef",
"type": "ref",
"description": "If this comment is a reply, the comment it replies to."
},
"replies": {
"type": "array",
"items": {
"ref": "app.didpic.feed.defs#commentView",
"type": "ref"
},
"description": "Capped inline preview of replies. Fetch the remainder via feed.getCommentReplies."
},
"createdAt": {
"type": "string",
"format": "datetime"
},
"indexedAt": {
"type": "string",
"format": "datetime"
},
"likeCount": {
"type": "integer",
"minimum": 0
},
"replyCount": {
"type": "integer",
"minimum": 0
},
"viewerLike": {
"type": "string",
"format": "at-uri",
"description": "URI of the viewer's like record on this comment, if any."
}
}
}