kubernetes-models
Version:
21 lines (20 loc) • 477 B
JavaScript
import { register } from "@kubernetes-models/validate";
const schema = {
"properties": {
"audiences": {
"items": {
"type": "string"
},
"type": "array",
"nullable": true
},
"token": {
"type": "string",
"nullable": true
}
},
"type": "object"
};
export function addSchema() {
register("io.k8s.api.authentication.v1.TokenReviewSpec", schema);
}