converter_csv_to_json Processor

The converter_csv_to_json processor transforms a CSV document into either a structured JSON array or line-delimited JSON (JSONL).

Use this processor to convert tabular data into a format suitable for APIs, data pipelines, or storage systems that require JSON.


Settings

SettingDescription
timeoutmaximum time allowed to complete the conversion
field.delimiterindicate the field delimiter, e.g. comma, semicolon, tab (\t), ^, |, etc. comma is the default delimiter for CSV files
file.includes.headersindicate the first line of the CSV file contains headers
file.headersspecify the headers directly (if the file itself does not contain them) - comma delimited
 note: if file.includes.headers=false and file.headers is not set the converter will use default headers: col1, col2, col3, etc.
output.formatoutput the result as json array (default) or jsonl