Combine multiple CSV files into one CSV file.
delimiter
: Delimiter used in the CSV file.
time_column
: Name of column containing timestamps.
Type: multiple
(dynamic) source_file
/ (user defined via GUI) _{number}_source_file
: CSV file to be added to result CSV file.
Type: single
output_csv
: Result CSV file.
{
"name": "Combine CSV",
"image": "platonam/lopco-combine-csv-worker:latest",
"data_cache_path": "/data_cache",
"description": "Combine multiple Comma-Separated Values files.",
"configs": {
"delimiter": null,
"time_column": null
},
"input": {
"type": "multiple",
"fields": [
{
"name": "source_file",
"media_type": "text/csv",
"is_file": true
}
]
},
"output": {
"type": "single",
"fields": [
{
"name": "output_csv",
"media_type": "text/csv",
"is_file": true
}
]
}
}