Get a specific changelog entry by URI
Parameters
Output
Encoding
application/jsoncid
stringcid
Required
Content ID of the changelog record
createdAt
stringdatetime
Required
When this changelog was created
eprintUri
stringat-uri
Required
URI of the eprint this changelog belongs to
previousVersion
refpub.chive.eprint.submission#semanticVersion
Optional
Previous semantic version
reviewerResponse
string
Optional
Response to peer review feedback
sections
array
Required
Structured changelog sections
summary
string
Optional
One-line summary of changes
uri
stringat-uri
Required
AT-URI of the changelog record
version
refpub.chive.eprint.submission#semanticVersion
Required
Semantic version this changelog describes
Errors
NotFound
Changelog 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": "Changelog not found"
}
],
"output": {
"schema": {
"type": "object",
"required": [
"uri",
"cid",
"eprintUri",
"version",
"sections",
"createdAt"
],
"properties": {
"cid": {
"type": "string",
"format": "cid",
"description": "Content ID of the changelog record"
},
"uri": {
"type": "string",
"format": "at-uri",
"description": "AT-URI of the changelog record"
},
"summary": {
"type": "string",
"description": "One-line summary of changes"
},
"version": {
"ref": "pub.chive.eprint.submission#semanticVersion",
"type": "ref",
"description": "Semantic version this changelog describes"
},
"sections": {
"type": "array",
"items": {
"ref": "pub.chive.eprint.changelog#changelogSection",
"type": "ref"
},
"description": "Structured changelog sections"
},
"createdAt": {
"type": "string",
"format": "datetime",
"description": "When this changelog was created"
},
"eprintUri": {
"type": "string",
"format": "at-uri",
"description": "URI of the eprint this changelog belongs to"
},
"previousVersion": {
"ref": "pub.chive.eprint.submission#semanticVersion",
"type": "ref",
"description": "Previous semantic version"
},
"reviewerResponse": {
"type": "string",
"description": "Response to peer review feedback"
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"required": [
"uri"
],
"properties": {
"uri": {
"type": "string",
"format": "at-uri",
"description": "AT-URI of the changelog record"
}
}
},
"description": "Get a specific changelog entry by URI"
}