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.
helm/pkg/chart/common/util/testdata/test-values-format.schema.json

24 lines
505 B

{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Values",
"type": "object",
"properties": {
"ipAddress4": {
"description": "IPv4 address",
"type": "string",
"format": "ipv4"
},
"ipAddress6": {
"description": "IPv6 address",
"type": "string",
"format": "ipv6"
},
"email": {
"description": "Email address",
"type": "string",
"format": "email"
}
},
"required": ["email", "ipAddress4", "ipAddress6"]
}