{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "ImportDataAsyncFromFileRequest", "required": [ "dataFileId", "treatValuesAsNull", "columns", "enclosure", "delimiter", "escapedBy" ], "properties": { "dataFileId": { "type": "integer" }, "incremental": { "type": "boolean", "default": false }, "withoutHeaders": { "type": "boolean", "default": false }, "treatValuesAsNull": { "type": "array", "items": { "type": "string", "maxLength": 1, "minLength": 0 } }, "columns": { "type": "array", "items": { "type": "string" } }, "ignoredLinesCount": { "type": "integer", "default": 0 }, "enclosure": { "type": "string" }, "delimiter": { "type": "string" }, "escapedBy": { "type": "string" } }, "type": "object" }