{
"id": "pub.chive.eprint.listChangelogs",
"defs": {
"main": {
"type": "query",
"output": {
"schema": {
"type": "object",
"required": [
"changelogs"
],
"properties": {
"cursor": {
"type": "string",
"description": "Pagination cursor for next page"
},
"changelogs": {
"type": "array",
"items": {
"ref": "#changelogView",
"type": "ref"
},
"description": "List of changelog entries, newest first"
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"required": [
"eprintUri"
],
"properties": {
"limit": {
"type": "integer",
"default": 50,
"maximum": 100,
"minimum": 1,
"description": "Maximum number of changelogs to return"
},
"cursor": {
"type": "string",
"description": "Pagination cursor"
},
"eprintUri": {
"type": "string",
"format": "at-uri",
"description": "AT-URI of the eprint to list changelogs for"
}
}
},
"description": "List all changelog entries for an eprint"
},
"changelogView": {
"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"
}
},
"description": "A changelog entry view"
}
},
"$type": "com.atproto.lexicon.schema",
"lexicon": 1,
"revision": 1
}