@jkcfg/kubernetes
Version:
jk Kubernetes library
27 lines • 599 B
JSON
{
"description": "IDRange provides a min/max of an allowed range of IDs. Deprecated: use IDRange from policy API Group instead.",
"properties": {
"max": {
"description": "max is the end of the range, inclusive.",
"format": "int64",
"type": [
"integer",
"null"
]
},
"min": {
"description": "min is the start of the range, inclusive.",
"format": "int64",
"type": [
"integer",
"null"
]
}
},
"required": [
"min",
"max"
],
"type": "object",
"$schema": "http://json-schema.org/schema#"
}