Structured changelog entry for eprint version
Record Key
tid
Timestamp-based ID
Properties
createdAt
string
datetime
Required
When this changelog was created
eprintUri
string
at-uri
Required
URI of the eprint this changelog belongs to
previousVersion
ref
pub.chive.eprint.submission#semanticVersion
Optional
Previous semantic version
reviewerResponse
string
Optional
Response to peer review feedback (if applicable)
maxLength: 10000 bytesschemaRevision
integer
Optional
Schema revision this record was created with. Absent means revision 1.
minimum: 1sections
array
of
ref
#changelogSection
Required
Structured changelog sections
maxLength: 20 itemssummary
string
Optional
One-line summary of changes
maxLength: 500 bytesversion
ref
pub.chive.eprint.submission#semanticVersion
Required
Semantic version this changelog describes
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"eprintUri",
"version",
"sections",
"createdAt"
],
"properties": {
"summary": {
"type": "string",
"maxLength": 500,
"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": "#changelogSection",
"type": "ref"
},
"maxLength": 20,
"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"
},
"schemaRevision": {
"type": "integer",
"minimum": 1,
"description": "Schema revision this record was created with. Absent means revision 1."
},
"previousVersion": {
"ref": "pub.chive.eprint.submission#semanticVersion",
"type": "ref",
"description": "Previous semantic version"
},
"reviewerResponse": {
"type": "string",
"maxLength": 10000,
"description": "Response to peer review feedback (if applicable)"
}
}
},
"description": "Structured changelog entry for eprint version"
}