UNPKG

kubernetes-models

Version:
28 lines (27 loc) 675 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.addSchema = void 0; const validate_1 = require("@kubernetes-models/validate"); const schema = { "properties": { "add": { "items": { "type": "string" }, "type": "array", "nullable": true }, "drop": { "items": { "type": "string" }, "type": "array", "nullable": true } }, "type": "object" }; function addSchema() { (0, validate_1.register)("io.k8s.api.core.v1.Capabilities", schema); } exports.addSchema = addSchema;