Merge · Schema

PatchedEditFieldMappingRequest

IntegrationsPlatformUnified APIAgent HandlerLLM Gateway

Properties

Name Type Description
remote_field_traversal_path array The field traversal path of the remote field listed when you hit the GET /remote-fields endpoint.
remote_method string The method of the remote endpoint where the remote field is coming from.
remote_url_path string The path of the remote endpoint where the remote field is coming from.
jmes_path string DEPRECATED: Use 'advanced_mapping_expression' instead.
advanced_mapping_expression string A JSONata expression used to transform the remote field data.
View JSON Schema on GitHub

JSON Schema

merge-patchededitfieldmappingrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PatchedEditFieldMappingRequest",
  "title": "PatchedEditFieldMappingRequest",
  "type": "object",
  "properties": {
    "remote_field_traversal_path": {
      "type": "array",
      "items": {
        "description": "Any type"
      },
      "description": "The field traversal path of the remote field listed when you hit the GET /remote-fields endpoint."
    },
    "remote_method": {
      "type": "string",
      "description": "The method of the remote endpoint where the remote field is coming from."
    },
    "remote_url_path": {
      "type": "string",
      "description": "The path of the remote endpoint where the remote field is coming from."
    },
    "jmes_path": {
      "type": "string",
      "description": "DEPRECATED: Use 'advanced_mapping_expression' instead."
    },
    "advanced_mapping_expression": {
      "type": "string",
      "description": "A JSONata expression used to transform the remote field data."
    }
  }
}