A single entry in a lexicon's changelog.
Properties
Date of the change (YYYY-MM-DD).
maxLength: 10 bytes
Summary of changes in this version.
maxLength: 2560 bytesmaxGraphemes: 256 graphemes
Semver version string (e.g. '0.1.0').
maxLength: 20 bytes
View raw schema
{
"type": "object",
"required": [
"version",
"date",
"description"
],
"properties": {
"date": {
"type": "string",
"maxLength": 10,
"description": "Date of the change (YYYY-MM-DD)."
},
"version": {
"type": "string",
"maxLength": 20,
"description": "Semver version string (e.g. '0.1.0')."
},
"description": {
"type": "string",
"maxLength": 2560,
"description": "Summary of changes in this version.",
"maxGraphemes": 256
}
},
"description": "A single entry in a lexicon's changelog."
}
Current version of a lexicon schema, following semver conventions.
Properties
Breaking changes or new NSID required.
minimum: 0
New optional fields or non-breaking additions.
minimum: 0
Documentation, description, or metadata changes only.
minimum: 0
View raw schema
{
"type": "object",
"required": [
"major",
"minor",
"patch"
],
"properties": {
"major": {
"type": "integer",
"minimum": 0,
"description": "Breaking changes or new NSID required."
},
"minor": {
"type": "integer",
"minimum": 0,
"description": "New optional fields or non-breaking additions."
},
"patch": {
"type": "integer",
"minimum": 0,
"description": "Documentation, description, or metadata changes only."
}
},
"description": "Current version of a lexicon schema, following semver conventions."
}