Merge · Schema

RemoteData

# The RemoteData Object ### Description The `RemoteData` object is used to represent the full data pulled from the third-party API for an object. ### Usage Example TODO

IntegrationsPlatformUnified APIAgent HandlerLLM Gateway

Properties

Name Type Description
path string The third-party API path that is being called.
data object The data returned from the third-party for this object in its original, unnormalized format.
View JSON Schema on GitHub

JSON Schema

merge-remotedata-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/RemoteData",
  "title": "RemoteData",
  "type": "object",
  "properties": {
    "path": {
      "type": "string",
      "description": "The third-party API path that is being called."
    },
    "data": {
      "description": "The data returned from the third-party for this object in its original, unnormalized format."
    }
  },
  "required": [
    "path"
  ],
  "description": "# The RemoteData Object\n### Description\nThe `RemoteData` object is used to represent the full data pulled from the third-party API for an object.\n\n### Usage Example\nTODO"
}