Import Row Errors
The import_row_errors table contains data about errors in uploads created in the organization.
This table can be used to determine which errors occurred on which rows of which uploads, as well as metadata about the error such as when it was created.
Columns
| Column Name | Description | Type | Nullable |
|---|---|---|---|
| id | The numerical identifier of the object. | INT8 | No |
| import_id | The numerical identifier of the upload this error was in. Relates to the id column in the imports table. |
INT8 | No |
| entity_id | This column is currently unused. | INT8 | Yes |
| row_number | This row number of the processed file the error occurred on. | INT4 | No |
| error_message | The text of the error message. | VARCHAR | No |
| error_type | The type of the error message. | VARCHAR | No |
| object_type | The type of object the error occurred on. | VARCHAR | No |
| error_data | Additional data about the error, in JSON format. | JSONB | No |
| created_at | The UTC timestamp when this object was created. | TIMESTAMP | No |
| updated_at | The UTC timestamp when this object was updated. | TIMESTAMP | No |
| original_row | The data originally from the CSV row that errored. | TEXT | Yes |