List user-curated related works for an eprint
Parameters
Output
Encoding
application/jsoncursor
string
Optional
Pagination cursor for next page
relatedWorks
array
Required
No description available.
total
integer
Optional
Total number of related works
Try It
Requests are sent directly from your browser. Some servers may block requests due to CORS.
View raw schema
{
"type": "query",
"output": {
"schema": {
"type": "object",
"required": [
"relatedWorks"
],
"properties": {
"total": {
"type": "integer",
"description": "Total number of related works"
},
"cursor": {
"type": "string",
"description": "Pagination cursor for next page"
},
"relatedWorks": {
"type": "array",
"items": {
"ref": "#relatedWorkView",
"type": "ref"
}
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"required": [
"eprintUri"
],
"properties": {
"limit": {
"type": "integer",
"default": 50,
"maximum": 100,
"minimum": 1,
"description": "Maximum number of related works to return"
},
"cursor": {
"type": "string",
"description": "Pagination cursor"
},
"eprintUri": {
"type": "string",
"format": "at-uri",
"description": "AT-URI of the eprint to list related works for"
}
}
},
"description": "List user-curated related works for an eprint"
}