GatewayResponses

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.

APIs.ioEngineeringPlatform

Properties

Name Type Description
position object
items object
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-gatewayresponses-schema.json Raw ↑
{
  "$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 <code>responseType</code>-to-GatewayResponse object map of key-value pairs. As such, pagination is not supported for querying this collection."
}