Updated Import (markdown)

Herculino Trotta
2025-01-23 23:52:29 -03:00
parent 08215a71b7
commit bdcadc3e4f
+22
@@ -210,6 +210,28 @@ mapping:
replacement: ""
```
### deduplication (required)
Currently there's only one deduplication rule type:
#### compare
A `compare` deduplication rule compares the mapped row to a existing transactions.
`compare` can have a `match_type` of `lax`, for case-insensitive comparison or `strict` for case-sensitiveness.
Lastly, use `fields` to name what to compare against (use the target naming).
#### Example
```yaml
deduplication:
- type: compare
fields:
- internal_id
- name
match_type: strict
```
## New versions