-
Notifications
You must be signed in to change notification settings - Fork 3
/
Butane-Schema-main.json
70 lines (69 loc) · 1.7 KB
/
Butane-Schema-main.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://raw.githubusercontent.com/Relativ-IT/Butane-Schemas/Release/Butane-Schema.json#",
"$comment": "Sources: https://github.com/Relativ-IT/Butane-Schemas",
"title": "Fedora Coreos Butane Schema",
"type": "object",
"required": ["variant", "version"],
"properties": {
"variant": {
"$id": "#/properties/variant",
"type": "string",
"title": "variant (string):",
"description": "Used to differentiate configs for different operating systems. Must be fcos for this specification.",
"enum": ["fcos"],
"default": "fcos"
},
"version": {
"$id": "#/properties/version",
"type": "string",
"title": "version (string):",
"enum": ["1.4.0", "1.5.0", "1.6.0"],
"default": "1.6.0"
}
},
"oneOf": [
{
"allOf": [
{
"properties": {
"version": {
"const": "1.4.0"
}
}
},
{
"$ref": "https://raw.githubusercontent.com/Relativ-IT/Butane-Schemas/main/v1.4.0/butane-v1.4.0.json"
}
]
},
{
"allOf": [
{
"properties": {
"version": {
"const": "1.5.0"
}
}
},
{
"$ref": "https://raw.githubusercontent.com/Relativ-IT/Butane-Schemas/main/v1.5.0/butane-v1.5.0.json"
}
]
},
{
"allOf": [
{
"properties": {
"version": {
"const": "1.6.0"
}
}
},
{
"$ref": "https://raw.githubusercontent.com/Relativ-IT/Butane-Schemas/main/v1.6.0/butane-v1.6.0.json"
}
]
}
]
}