-
-
Notifications
You must be signed in to change notification settings - Fork 56
Expand file tree
/
Copy pathvalues.schema.json
More file actions
28 lines (28 loc) · 730 Bytes
/
Copy pathvalues.schema.json
File metadata and controls
28 lines (28 loc) · 730 Bytes
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
{
"$schema": "http://json-schema.org/draft-07/schema#",
"properties": {
"fullnameOverride": {
"default": "",
"description": "String to fully override `\"baserow.fullname\"`",
"title": "fullnameOverride",
"type": "string"
},
"global": {
"description": "Global values are values that can be accessed from any chart or subchart by exactly the same name.",
"required": [],
"title": "global",
"type": "object"
},
"nameOverride": {
"default": "",
"description": "Provide a name in place of `baserow`",
"title": "nameOverride",
"type": "string"
}
},
"required": [
"nameOverride",
"fullnameOverride"
],
"type": "object"
}