From efdf5458b4d4ad0d022734776af3cbba7aab9a6e Mon Sep 17 00:00:00 2001 From: Herculino Trotta Date: Tue, 28 Jan 2025 21:35:12 -0300 Subject: [PATCH] Updated Import (markdown) --- Import.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Import.md b/Import.md index d235e27..d28367f 100644 --- a/Import.md +++ b/Import.md @@ -67,7 +67,7 @@ The common fields are: | **name** | **type** | **default** | **definition** | |----------|---------------|-------------|-----------------------------------------------------------------------------------------------------------------------------------------------| | target | str | *required | Field to map to | -| source | Optional[str] | None | The name of the CSV column you want to map to. If empty or not defined, the field will be generated from default, transformations or ignored. | +| source | Optional[str] or Optional[list] | None | The name of the CSV column you want to map to. If empty or not defined, the field will be generated from default, transformations or ignored. | | default | Optional[str] | None | The default value if none present | | required | bool | false | If this value should be present. Will halt execution or skip row depending on "skip_lines" setting. | @@ -97,7 +97,7 @@ Transformations allow you to transform a value before it is coerced. | **name** | **type** | **default** | **definition** | |-----------|----------|-------------|------------------------------------------| | type | str | *required | "merge" | -| fields | str | *required | the CSV columns to merge | +| fields | list[str] | *required | the CSV columns to merge | | separator | str | " " | What to separate your merged values with | ##### split