UNPKG

kubernetes-models

Version:
26 lines (25 loc) 569 B
import { register } from "@kubernetes-models/validate"; const schema = { "properties": { "nonResourceURLs": { "items": { "type": "string" }, "type": "array" }, "verbs": { "items": { "type": "string" }, "type": "array" } }, "required": [ "verbs", "nonResourceURLs" ], "type": "object" }; export function addSchema() { register("io.k8s.api.flowcontrol.v1beta2.NonResourcePolicyRule", schema); }