kubernetes-models
Version:
26 lines (25 loc) • 587 B
JavaScript
import { register } from "@kubernetes-models/validate";
const schema = {
"properties": {
"apiVersion": {
"type": "string",
"nullable": true
},
"kind": {
"type": "string",
"nullable": true
},
"name": {
"type": "string",
"nullable": true
},
"uid": {
"type": "string",
"nullable": true
}
},
"type": "object"
};
export function addSchema() {
register("io.k8s.api.authentication.v1.BoundObjectReference", schema);
}