Merge · Schema

RemoteResponse

# The RemoteResponse Object ### Description The `RemoteResponse` object is used to represent information returned from a third-party endpoint. ### Usage Example View the `RemoteResponse` returned from your `DataPassthrough`.

IntegrationsPlatformUnified APIAgent HandlerLLM Gateway

Properties

Name Type Description
method string
path string
status integer
response object Any type
response_headers object
response_type object
headers object
View JSON Schema on GitHub

JSON Schema

merge-remoteresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/RemoteResponse",
  "title": "RemoteResponse",
  "type": "object",
  "properties": {
    "method": {
      "type": "string"
    },
    "path": {
      "type": "string"
    },
    "status": {
      "type": "integer"
    },
    "response": {
      "description": "Any type"
    },
    "response_headers": {
      "type": "object",
      "additionalProperties": {
        "description": "Any type"
      }
    },
    "response_type": {
      "$ref": "#/components/schemas/ResponseTypeEnum"
    },
    "headers": {
      "type": "object",
      "additionalProperties": {
        "description": "Any type"
      }
    }
  },
  "required": [
    "method",
    "path",
    "status",
    "response"
  ],
  "description": "# The RemoteResponse Object\n### Description\nThe `RemoteResponse` object is used to represent information returned from a third-party endpoint.\n\n### Usage Example\nView the `RemoteResponse` returned from your `DataPassthrough`."
}