@jkcfg/kubernetes
Version:
jk Kubernetes library
22 lines • 702 B
JSON
{
"$schema": "http://json-schema.org/schema#",
"type": "object",
"description": "TokenReviewStatus is the result of the token authentication request.",
"properties": {
"authenticated": {
"type": "boolean",
"description": "Authenticated indicates that the token was associated with a known user."
},
"user": {
"description": "User is the UserInfo associated with the provided token.",
"$ref": "_definitions.json#/definitions/io.k8s.kubernetes.pkg.apis.authentication.v1beta1.UserInfo"
},
"error": {
"type": [
"string",
"null"
],
"description": "Error indicates that the token couldn't be checked"
}
}
}