-
Notifications
You must be signed in to change notification settings - Fork 2
/
application_schema.json
41 lines (41 loc) · 1.07 KB
/
application_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
33
34
35
36
37
38
39
40
41
{
"type": "object",
"description": "Application JSON specification",
"properties": {
"name": {
"type": "string",
"description": "Name of Application. Ony for display purpose",
"minLength": 1
},
"executables": {
"type": "array",
"minItems": 1,
"items": {
"type": "string",
"description": "name of the binary executable"
}
},
"locations": {
"type": "array",
"minItems": 1,
"items": {
"type": "object",
"properties": {
"file": {
"type": "string",
"description": "Location of file or folder including XDG environment variable",
"minLength": 5
}
},
"required": [
"file"
]
}
}
},
"required": [
"name",
"executables",
"locations"
]
}