@release-notes/schema
Version:
JSON Schema definitions of the release-notes specification - an easy to use, human readable and machine processable schema for release notes.
23 lines (22 loc) • 347 B
JSON
{
"$id": "@release-notes/release-notes",
"type": "object",
"additionalProperties": false,
"required": [
"title"
],
"properties": {
"title": {
"type": "string"
},
"description": {
"type": "string"
},
"releases": {
"type": "array",
"items": {
"$ref": "release"
}
}
}
}