List annotations for a specific page in an eprint
Parameters
Output
Encoding
application/jsonannotations
array
Required
Annotations on the specified page
entityLinks
array
Optional
Entity links on the specified page
Try It
Requests are sent directly from your browser. Some servers may block requests due to CORS.
View raw schema
{
"type": "query",
"errors": [],
"output": {
"schema": {
"type": "object",
"required": [
"annotations"
],
"properties": {
"annotations": {
"type": "array",
"items": {
"ref": "pub.chive.annotation.listForEprint#annotationView",
"type": "ref"
},
"description": "Annotations on the specified page"
},
"entityLinks": {
"type": "array",
"items": {
"ref": "pub.chive.annotation.listForEprint#entityLinkView",
"type": "ref"
},
"description": "Entity links on the specified page"
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"required": [
"eprintUri",
"pageNumber"
],
"properties": {
"eprintUri": {
"type": "string",
"format": "at-uri",
"description": "AT-URI of the eprint"
},
"pageNumber": {
"type": "integer",
"minimum": 1,
"description": "Page number to list annotations for"
},
"includeEntityLinks": {
"type": "boolean",
"default": true,
"description": "Include entity link annotations in response"
}
}
},
"description": "List annotations for a specific page in an eprint"
}