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