UNPKG

kubernetes-models

Version:
24 lines (23 loc) 527 B
import { register } from "@kubernetes-models/validate"; const schema = { "properties": { "add": { "items": { "type": "string" }, "type": "array", "nullable": true }, "drop": { "items": { "type": "string" }, "type": "array", "nullable": true } }, "type": "object" }; export function addSchema() { register("io.k8s.api.core.v1.Capabilities", schema); }