-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.schema.json
53 lines (52 loc) · 1.44 KB
/
config.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
42
43
44
45
46
47
48
49
50
51
52
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://corrator.rs/config.schema.json",
"title": "Corrator Config",
"description": "A reference config for applications and containers",
"type": "object",
"properties": {
"containers": {
"type": "object",
"additionalProperties": {
"type": "object",
"properties": {
"path": {
"type": "string"
},
"apps": {
"type": "array",
"items": { "type": "string" }
},
"tags": {
"type": "array",
"items": { "type": "string" }
}
},
"additionalProperties": false,
"required": [ "path", "apps" ]
}
},
"applications": {
"additionalProperties": {
"type": "object",
"properties": {
"version_regex": { "type": "string" },
"version_command": { "type": "string" },
"eol": {
"type": "object",
"properties": {
"product_name": { "type": "string" },
"version_regex": { "type": "string" }
},
"additionalProperties": false,
"required": ["product_name", "version_regex" ]
}
},
"additionalProperties": false,
"required": [ "version_regex", "version_command" ]
}
}
},
"additionalProperties": false,
"required": [ "containers", "applications" ]
}