forked from losisin/helm-values-schema-json
-
Notifications
You must be signed in to change notification settings - Fork 0
/
values.schema.json
51 lines (51 loc) · 1.21 KB
/
values.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
{
"$id": "https://example.com/schema",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"additionalProperties": true,
"description": "Schema for Helm values",
"properties": {
"draft": {
"default": 2020,
"enum": [
"4",
"6",
"7",
"2019",
"2020"
],
"type": "integer"
},
"indent": {
"default": 4,
"type": "integer"
},
"input": {
"items": {
"type": "string"
},
"type": "array"
},
"output": {
"type": "string"
},
"schemaRoot": {
"properties": {
"additionalProperties": {
"type": "boolean"
},
"description": {
"type": "string"
},
"id": {
"type": "string"
},
"title": {
"type": "string"
}
},
"type": "object"
}
},
"title": "Helm Values Schema",
"type": "object"
}