> ## Documentation Index
> Fetch the complete documentation index at: https://docs.algure.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Formats

> Feed file format rules

## Standard Format

Use **UTF-8 CSV** as the standard feed format.

## CSV Delimiters

Supported delimiters:

* Comma `,`
* Semicolon `;`
* Tab
* Pipe `|`

## Header Row

The first row must be a header with the expected column names.

Example:

```csv theme={"dark"}
code,description,stock,warehouseCode,locationCode,locationPriority,costPrice,packagingUnit,lot
```

## Number Formatting

* Use `.` as decimal separator
* Do not use thousands separators
* Keep numeric values compatible with each column limit

Examples:

* Valid: `20323.50`
* Invalid: `20,323.50`
* Invalid: `20323,50`

## Encoding and Parsing Notes

* UTF-8 BOM is accepted
* Leading/trailing spaces in CSV values are trimmed
