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

# ETL: Selecting File Input Format

> Choose the correct file input format in the File Storage Source component. Configure record delimiters and record types for CSV, JSON, and more.

The examples below provide an easy guide for picking record delimiter and record type in the file storage source component.

| My data                                                                                                                                                                                                                            | Source type parameters                     |
| :--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | :----------------------------------------- |
| `id,name`  <br />  ` 1,john` <br />`2,bruce` <br />`3,ashley`                                                                                                                                                                      | New line, Delimited values, delimiter \[,] |
| `{"id":1,"name":"john"}`<br /> `{"id":2,"name":"bruce"}` <br />`{"id":3,"name":"ashley"}`                                                                                                                                          | New line, Json object                      |
| `{"id":1, "name":"john"}`<br /> `{"id":2, "name":"bruce"}`                                                                                                                                                                         | End of file, Json object                   |
| Lorem ipsum dolor sit amet, <br />consectetur adipiscing elit,<br /> sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.                                                                                            | End of file, Raw                           |
| actor,<br /> actress,<br /> actual,<br /> actually, <br />ad,<br /> adapt,<br /> add,<br /> addition,<br /> additional,<br /> add on,<br /> address,<br /> add up,<br /> add up to,<br /> adequate, <br />adequately, <br />adjust | New line, raw                              |
