@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.",
"required": [
"min",
"max"
],
"properties": {
"max": {
"description": "max is the end of the range, inclusive.",
"type": [
"integer",
"null"
],
"format": "int64"
},
"min": {
"description": "min is the start of the range, inclusive.",
"type": [
"integer",
"null"
],
"format": "int64"
}
},
"$schema": "http://json-schema.org/schema#",
"type": "object"
}