{ "$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`." }