Skip to content

Supported formats

File Input nodes accept the extensions below by default. You can limit accepted types in the File Input node settings. Parsed tabular data becomes Apache Arrow datasets on the workflow engine (see Storage and processing).

ExtensionCategoryProcessing
.csvTabular and spreadsheetsParsed in-browser or on the workflow engine into Arrow datasets. Excel formats use server-side conversion.
.tsvTabular and spreadsheetsParsed in-browser or on the workflow engine into Arrow datasets. Excel formats use server-side conversion.
.psvTabular and spreadsheetsParsed in-browser or on the workflow engine into Arrow datasets. Excel formats use server-side conversion.
.xlsTabular and spreadsheetsParsed in-browser or on the workflow engine into Arrow datasets. Excel formats use server-side conversion.
.xlsxTabular and spreadsheetsParsed in-browser or on the workflow engine into Arrow datasets. Excel formats use server-side conversion.
.jsonStructured dataJSON and XML load as structured records for downstream transforms.
.xmlStructured dataJSON and XML load as structured records for downstream transforms.
.fixFinancial dataFIX, SWIFT MT / MT940, and OFX/QFX parsed via the platform file-parser pipeline.
.swiftFinancial dataFIX, SWIFT MT / MT940, and OFX/QFX parsed via the platform file-parser pipeline.
.mt940Financial dataFIX, SWIFT MT / MT940, and OFX/QFX parsed via the platform file-parser pipeline.
.ofxFinancial dataFIX, SWIFT MT / MT940, and OFX/QFX parsed via the platform file-parser pipeline.
.qfxFinancial dataFIX, SWIFT MT / MT940, and OFX/QFX parsed via the platform file-parser pipeline.
.pdfOffice and PDFPDF and office documents route through Docling on the workflow engine for structure, tables, and text extraction.
.docxOffice and PDFPDF and office documents route through Docling on the workflow engine for structure, tables, and text extraction.
.pptxOffice and PDFPDF and office documents route through Docling on the workflow engine for structure, tables, and text extraction.
.txtText, markup, and captionsPlain text and markup sources for structured extraction and downstream transforms.
.mdText, markup, and captionsPlain text and markup sources for structured extraction and downstream transforms.
.markdownText, markup, and captionsPlain text and markup sources for structured extraction and downstream transforms.
.htmlText, markup, and captionsPlain text and markup sources for structured extraction and downstream transforms.
.htmText, markup, and captionsPlain text and markup sources for structured extraction and downstream transforms.
.adocText, markup, and captionsPlain text and markup sources for structured extraction and downstream transforms.
.asciidocText, markup, and captionsPlain text and markup sources for structured extraction and downstream transforms.
.ascText, markup, and captionsPlain text and markup sources for structured extraction and downstream transforms.
.texText, markup, and captionsPlain text and markup sources for structured extraction and downstream transforms.
.latexText, markup, and captionsPlain text and markup sources for structured extraction and downstream transforms.
.vttText, markup, and captionsPlain text and markup sources for structured extraction and downstream transforms.
.pngImagesRaster images for OCR and document-ingest workflows via Docling.
.jpgImagesRaster images for OCR and document-ingest workflows via Docling.
.jpegImagesRaster images for OCR and document-ingest workflows via Docling.
.tifImagesRaster images for OCR and document-ingest workflows via Docling.
.tiffImagesRaster images for OCR and document-ingest workflows via Docling.
.bmpImagesRaster images for OCR and document-ingest workflows via Docling.
.webpImagesRaster images for OCR and document-ingest workflows via Docling.

FIX (Financial Information eXchange) log files load through the same File Input path as other structured imports.

  • One row per message - each FIX message becomes one workflow row.
  • Delimiters - SOH (ASCII 1), pipe (|), and escaped \x01 field separators are accepted in log files.
  • Field names - standard FIX tags map to readable column names such as MsgType and SenderCompID. Unknown tags keep the numeric tag; duplicate tags can appear as arrays.
  • Message boundaries - messages are recognised from 8=FIX. through the 10= checksum field.
  • Structured import - FIX rows are treated as already structured (one row per message). The importer does not suggest subgrid flattening for FIX sources.

Related finance formats on File Input: SWIFT (.swift, .mt940) and OFX/QFX use separate parsers in the same package. FIX round-trip export is supported on Egress via Save File Export.