Properties
| Name | Type | Description |
|---|---|---|
| id | string | |
| is_integration_wide | boolean | |
| target_field | object | |
| remote_field | object | |
| jmes_path | stringnull | |
| advanced_mapping_expression | stringnull |
JSON Schema
{
"$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"
]
}
}
}