We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e6c3d1a commit b79e515Copy full SHA for b79e515
charts/library/common/schemas/dependencies.json
@@ -2,7 +2,25 @@
2
"$schema": "http://json-schema.org/draft-07/schema#",
3
"type": "object",
4
"additionalProperties": {
5
- "$ref": "../values.schema.json"
+ "allOf": [
6
+ {
7
+ "$ref": "../values.schema.json"
8
+ },
9
10
+ "type": "object",
11
+ "required": [
12
+ "enabled"
13
+ ],
14
+ "properties": {
15
+ "enabled": {
16
+ "type": [
17
+ "boolean",
18
+ "string"
19
+ ]
20
+ }
21
22
23
24
},
25
"description": "Configuration for `dependencies`."
26
}
0 commit comments