List reviews for a specific eprint with optional filtering
Parameters
cursor
string
Optional
Pagination cursor for next page
eprintUri
string
at-uri
Required
AT-URI of the eprint
inlineOnly
boolean
Optional
Only include inline annotations with text span targets
limit
integer
Optional
Maximum number of results to return
motivation
string
Optional
Filter by W3C Web Annotation motivation
Output
application/jsoncursor
string
Optional
Cursor for next page
hasMore
boolean
Required
Whether more results are available
reviews
array
Required
List of reviews for the eprint
total
integer
Optional
Total number of reviews for this eprint
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": [
"reviews",
"hasMore"
],
"properties": {
"total": {
"type": "integer",
"description": "Total number of reviews for this eprint"
},
"cursor": {
"type": "string",
"description": "Cursor for next page"
},
"hasMore": {
"type": "boolean",
"description": "Whether more results are available"
},
"reviews": {
"type": "array",
"items": {
"ref": "#reviewView",
"type": "ref"
},
"description": "List of reviews for the eprint"
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"required": [
"eprintUri"
],
"properties": {
"limit": {
"type": "integer",
"default": 50,
"maximum": 100,
"minimum": 1,
"description": "Maximum number of results to return"
},
"cursor": {
"type": "string",
"description": "Pagination cursor for next page"
},
"eprintUri": {
"type": "string",
"format": "at-uri",
"description": "AT-URI of the eprint"
},
"inlineOnly": {
"type": "boolean",
"default": false,
"description": "Only include inline annotations with text span targets"
},
"motivation": {
"type": "string",
"description": "Filter by W3C Web Annotation motivation",
"knownValues": [
"commenting",
"highlighting",
"questioning",
"replying",
"assessing",
"bookmarking",
"classifying",
"describing",
"editing",
"linking",
"moderating",
"tagging"
]
}
}
},
"description": "List reviews for a specific eprint with optional filtering"
}