CSV Structure

General guidelines and data types for CSV files.


All CSV files must be:

  • Encoded in UTF-8 (to support special characters and accents)
  • Comma-separated (standard CSV format)
  • With header row (column names in first row)

Data Type Reference

TypeFormatExamples
StringAny textABC Company, john@email.com
IntegerWhole numbers30, 1, 100
FloatDecimal numbers, dot separator and no thousands separator1000.50, 1000000.00
Boolean1 or 01 (true), 0 (false)
DateYYYY-MM-DD; other formats are rejected. An empty cell is accepted except in installments, where the date is mandatory2024-01-15, 2025-12-31

IDs: avoid leading zeros in the erp_*_id fields. When the file is processed, an id made up of digits only is read as a number (00123 becomes 123), and if the same id is written differently in two files, the rows will not match each other.