No description available.
Input
Encoding
application/jsoncontent
string
Required
Comment text.
maxLength: 10000 bytesmaxGraphemes: 1000 graphemesparent
refcom.atproto.repo.strongRef
Optional
Strong reference to the comment being replied to. Omit for a top-level comment.
subject
refcom.atproto.repo.strongRef
Required
Strong reference to the artwork to comment on.
Output
Encoding
application/jsoncid
stringcid
Required
CID of the comment record that was written.
uri
stringat-uri
Required
AT URI of the comment record that was written.
Try It
Requests are sent directly from your browser. Some servers may block requests due to CORS.
View raw schema
{
"type": "procedure",
"input": {
"schema": {
"type": "object",
"required": [
"subject",
"content"
],
"properties": {
"parent": {
"ref": "com.atproto.repo.strongRef",
"type": "ref",
"description": "Strong reference to the comment being replied to. Omit for a top-level comment."
},
"content": {
"type": "string",
"maxLength": 10000,
"description": "Comment text.",
"maxGraphemes": 1000
},
"subject": {
"ref": "com.atproto.repo.strongRef",
"type": "ref",
"description": "Strong reference to the artwork to comment on."
}
}
},
"encoding": "application/json"
},
"output": {
"schema": {
"type": "object",
"required": [
"uri",
"cid"
],
"properties": {
"cid": {
"type": "string",
"format": "cid",
"description": "CID of the comment record that was written."
},
"uri": {
"type": "string",
"format": "at-uri",
"description": "AT URI of the comment record that was written."
}
}
},
"encoding": "application/json"
}
}