Get an annotation thread including the root annotation and all replies
Parameters
Output
Encoding
application/jsonparent
refpub.chive.annotation.listForEprint#annotationView
Required
Root annotation of the thread
replies
array
Required
Direct replies to the root annotation
totalReplies
integer
Required
Total number of replies in the thread
Errors
NotFound
Annotation not found Try It
Requests are sent directly from your browser. Some servers may block requests due to CORS.
View raw schema
{
"type": "query",
"errors": [
{
"name": "NotFound",
"description": "Annotation not found"
}
],
"output": {
"schema": {
"type": "object",
"required": [
"parent",
"replies",
"totalReplies"
],
"properties": {
"parent": {
"ref": "pub.chive.annotation.listForEprint#annotationView",
"type": "ref",
"description": "Root annotation of the thread"
},
"replies": {
"type": "array",
"items": {
"ref": "pub.chive.annotation.listForEprint#annotationView",
"type": "ref"
},
"description": "Direct replies to the root annotation"
},
"totalReplies": {
"type": "integer",
"minimum": 0,
"description": "Total number of replies in the thread"
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"required": [
"uri"
],
"properties": {
"uri": {
"type": "string",
"format": "at-uri",
"description": "AT-URI of the root annotation"
}
}
},
"description": "Get an annotation thread including the root annotation and all replies"
}