Keboola · Schema
ImportDataAsyncFromWorkspaceRequest
Data PlatformETLELTData PipelinesData StorageTransformationsOrchestrationData OperationsCloud DataSnowflakeBigQuery
Properties
| Name | Type | Description |
|---|---|---|
| dataWorkspaceId | integer | |
| dataObject | string | |
| dataTableName | string | |
| incremental | boolean | |
| withoutHeaders | boolean | |
| columns | array | |
| enclosure | string | |
| delimiter | string | |
| escapedBy | string | |
| deduplicationStrategy | string |
JSON Schema
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "ImportDataAsyncFromWorkspaceRequest",
"required": [
"dataWorkspaceId",
"dataObject",
"dataTableName",
"columns",
"enclosure",
"delimiter",
"escapedBy",
"deduplicationStrategy"
],
"properties": {
"dataWorkspaceId": {
"type": "integer"
},
"dataObject": {
"type": "string"
},
"dataTableName": {
"type": "string",
"deprecated": true
},
"incremental": {
"type": "boolean",
"default": false
},
"withoutHeaders": {
"type": "boolean",
"default": false
},
"columns": {
"type": "array",
"items": {
"type": "string"
}
},
"enclosure": {
"type": "string"
},
"delimiter": {
"type": "string"
},
"escapedBy": {
"type": "string"
},
"deduplicationStrategy": {
"type": "string",
"enum": [
"insert",
"upsert"
]
}
},
"type": "object"
}