You can exclude columns from the output by defining a destination schema that omits unwanted columns. No special configuration is needed — simply remove the columns from the destination schema that you don’t want in the output.Documentation Index
Fetch the complete documentation index at: https://docs.datris.ai/llms.txt
Use this file to discover all available pages before exploring further.
How It Works
When a destination schema (destination.schemaProperties) is defined, only the columns listed in it are written to the destination. Columns present in the source but absent from the destination schema are dropped.
Example
Given source data with columnsid, name, email, internal_code, created_at:
internal_code and created_at are present in the source but excluded from the destination schema, so they are dropped from the output.
Notes
- This feature works with delimited data only
- The destination schema field names must match source schema field names (case-insensitive)
- Column order in the destination schema determines the output column order
