{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/GatewayResponses", "title": "GatewayResponses", "type": "object", "properties": { "position": { "$ref": "#/components/schemas/String" }, "items": { "allOf": [ { "$ref": "#/components/schemas/ListOfGatewayResponse" }, { "xml": { "name": "item" }, "description": "Returns the entire collection, because of no pagination support." } ] } }, "description": "The collection of the GatewayResponse instances of a RestApi as a responseType-to-GatewayResponse object map of key-value pairs. As such, pagination is not supported for querying this collection." }