mirror of https://github.com/helm/helm
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
68 lines
1.2 KiB
68 lines
1.2 KiB
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"properties": {
|
|
"addresses": {
|
|
"description": "List of addresses",
|
|
"items": {
|
|
"properties": {
|
|
"city": {
|
|
"type": "string"
|
|
},
|
|
"number": {
|
|
"type": "number"
|
|
},
|
|
"street": {
|
|
"type": "string"
|
|
}
|
|
},
|
|
"type": "object"
|
|
},
|
|
"type": "array"
|
|
},
|
|
"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"
|
|
}
|