{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/HostList", "title": "HostList", "type": "object", "description": "List of Host resources", "properties": { "apiVersion": { "type": "string", "const": "getambassador.io/v3alpha1", "example": "example_value" }, "kind": { "type": "string", "const": "HostList", "example": "example_value" }, "metadata": { "type": "object", "properties": { "continue": { "type": "string" }, "resourceVersion": { "type": "string" } }, "example": "example_value" }, "items": { "type": "array", "items": { "$ref": "#/components/schemas/Host" }, "example": [] } } }