mirror of https://github.com/helm/helm
Signed-off-by: Andy Caldwell <andycaldwell@microsoft.com>pull/12553/head
parent
d70e293e5f
commit
2834f5b1d2
@ -0,0 +1,19 @@
|
|||||||
|
{
|
||||||
|
"$id": "https://helm.sh/schemas/addresses",
|
||||||
|
"type": "array",
|
||||||
|
"description": "List of addresses",
|
||||||
|
"items": {
|
||||||
|
"properties": {
|
||||||
|
"city": {
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
|
"number": {
|
||||||
|
"type": "number"
|
||||||
|
},
|
||||||
|
"street": {
|
||||||
|
"type": "string"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"type": "object"
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,52 @@
|
|||||||
|
{
|
||||||
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
||||||
|
"properties": {
|
||||||
|
"addresses": {
|
||||||
|
"$ref": "https://helm.sh/schemas/addresses"
|
||||||
|
},
|
||||||
|
"age": {
|
||||||
|
"description": "Age",
|
||||||
|
"minimum": 0,
|
||||||
|
"type": "integer"
|
||||||
|
},
|
||||||
|
"employmentInfo": {
|
||||||
|
"properties": {
|
||||||
|
"salary": {
|
||||||
|
"minimum": 0,
|
||||||
|
"type": "number"
|
||||||
|
},
|
||||||
|
"title": {
|
||||||
|
"type": "string"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"required": [
|
||||||
|
"salary"
|
||||||
|
],
|
||||||
|
"type": "object"
|
||||||
|
},
|
||||||
|
"firstname": {
|
||||||
|
"description": "First name",
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
|
"lastname": {
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
|
"likesCoffee": {
|
||||||
|
"type": "boolean"
|
||||||
|
},
|
||||||
|
"phoneNumbers": {
|
||||||
|
"items": {
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
|
"type": "array"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"required": [
|
||||||
|
"firstname",
|
||||||
|
"lastname",
|
||||||
|
"addresses",
|
||||||
|
"employmentInfo"
|
||||||
|
],
|
||||||
|
"title": "Values",
|
||||||
|
"type": "object"
|
||||||
|
}
|
Loading…
Reference in new issue