-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.schema.json
32 lines (32 loc) · 1.05 KB
/
manifest.schema.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
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://nordicsemiconductor.github.io/nrfprogrammer-firmware-images/manifest.schema.json",
"title": "nRF Programmer firmware images manifest",
"description": "Describes the manifest that decribes firmware images for nRF Programmer.",
"type": "object",
"properties": {
"$schema": {
"description": "URL to the JSON schema in use",
"type": "string",
"format": "url"
},
"version": {
"description": "Version of the manifest. Currently only version 1 is supported.",
"examples": [1],
"type": "number",
"minimum": 1,
"maximum": 1
},
"applications": {
"description": "List of available applications",
"type": "array",
"minItems": 1,
"items": {
"$ref": "https://nordicsemiconductor.github.io/nrfprogrammer-firmware-images/application.schema.json"
},
"uniqueItemProperties": ["app_id", "app_name"]
}
},
"additionalProperties": false,
"required": ["$schema", "version", "applications"]
}