Represents the configuration settings associated with a sample file.
The configuration defines how the sample file is interpreted and processed during profiling, sampling, and other data quality operations.
Sorting
| Property | Description |
|---|---|
delimiter |
The character used to separate field values within each row, such as a comma or pipe character. |
Parameters
| Property | Description |
|---|---|
lineSeparator |
The character or sequence used to delimit rows in the sample file, such as \n for Unix line endings or \r\n for Windows line endings. |
textQualifier |
The character used to enclose field values that contain the delimiter, such as a double-quote character. |
encoding |
The character encoding of the sample file, such as UTF-8 or ISO-8859-1. |
JSON Example
{
"lineSeparator": "\n",
"delimiter": ",",
"textQualifier": "\"",
"encoding": "UTF-8"
}