@jkcfg/kubernetes
Version:
jk Kubernetes library
34 lines • 788 B
JSON
{
"$schema": "http://json-schema.org/schema#",
"required": [
"type"
],
"type": "object",
"properties": {
"message": {
"type": [
"string",
"null"
],
"description": "human readable message with details about the request state"
},
"type": {
"type": [
"string",
"null"
],
"description": "request approval state, currently Approved or Denied."
},
"reason": {
"type": [
"string",
"null"
],
"description": "brief reason for the request state"
},
"lastUpdateTime": {
"description": "timestamp for the last update to this condition",
"$ref": "_definitions.json#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time"
}
}
}