import { register } from "@kubernetes-models/validate";
const schema = {
"properties": {
"name": {
"type": "string",
"nullable": true
}
},
"type": "object"
};
export function addSchema() {
register("io.k8s.api.core.v1.LocalObjectReference", schema);
}