Keboola · Schema
ImportDataAsyncFromFileRequest
Data PlatformETLELTData PipelinesData StorageTransformationsOrchestrationData OperationsCloud DataSnowflakeBigQuery
Properties
| Name | Type | Description |
|---|---|---|
| dataFileId | integer | |
| incremental | boolean | |
| withoutHeaders | boolean | |
| treatValuesAsNull | array | |
| columns | array | |
| ignoredLinesCount | integer | |
| enclosure | string | |
| delimiter | string | |
| escapedBy | string |
JSON Schema
{
"$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"
}