Merge · Schema

FieldMappingApiInstance

IntegrationsPlatformUnified APIAgent HandlerLLM Gateway

Properties

Name Type Description
id string
is_integration_wide boolean
target_field object
remote_field object
jmes_path stringnull
advanced_mapping_expression stringnull
View JSON Schema on GitHub

JSON Schema

merge-fieldmappingapiinstance-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/FieldMappingApiInstance",
  "title": "FieldMappingApiInstance",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "format": "uuid"
    },
    "is_integration_wide": {
      "type": "boolean"
    },
    "target_field": {
      "oneOf": [
        {
          "$ref": "#/components/schemas/FieldMappingApiInstanceTargetField"
        },
        {
          "type": "null"
        }
      ]
    },
    "remote_field": {
      "oneOf": [
        {
          "$ref": "#/components/schemas/FieldMappingApiInstanceRemoteField"
        },
        {
          "type": "null"
        }
      ]
    },
    "jmes_path": {
      "type": [
        "string",
        "null"
      ]
    },
    "advanced_mapping_expression": {
      "type": [
        "string",
        "null"
      ]
    }
  }
}