A list of NetworkPolicy objects.
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/NetworkPolicyList", "title": "NetworkPolicyList", "type": "object", "description": "A list of NetworkPolicy objects.", "required": [ "items" ], "properties": { "apiVersion": { "type": "string" }, "kind": { "type": "string", "const": "NetworkPolicyList" }, "metadata": { "$ref": "#/components/schemas/ListMeta" }, "items": { "type": "array", "items": { "$ref": "#/components/schemas/NetworkPolicy" } } } }