-
Notifications
You must be signed in to change notification settings - Fork 9
/
release.json
40 lines (40 loc) · 1.37 KB
/
release.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "Release Meta Data",
"id": "release.json#",
"description": "An standard set of information regarding a release at the Alliance.",
"type": "object",
"required": [ "dateReleased","releaseVersion", "dataFreezeDate", "releaseNotesURL", "apiDocumentationURL", "softwareComponentReleaseDetail"],
"additionalProperties": false,
"properties": {
"dateReleased": {
"type": "string",
"format": "date-time",
"description": "Date of this release."
},
"releaseVersion": {
"type": "string",
"description": "semantic version of the release."
},
"dataFreezeDate": {
"type": "string",
"format": "date-time",
"description": "Date of this release's data freeze."
},
"releaseNotesURL": {
"type": "string",
"description": "A link to the release notes for this release"
},
"apiDocumentationURL": {
"type": "string",
"description": "A link to the API documentation for this releae, potentially a link to the version of the API."
},
"softwareComponentReleaseDetails": {
"type": "array",
"items": {
"$ref": "softwareComponent.json"
},
"description": "A list of software components contained in this release, and links to the release tags of each component for this release."
}
}
}