Keboola · Schema
BucketListingCreateJobParams
Data PlatformETLELTData PipelinesData StorageTransformationsOrchestrationData OperationsCloud DataSnowflakeBigQuery
Properties
| Name | Type | Description |
|---|---|---|
| idBucket | integer | Internal numeric identifier of the bucket being exposed. |
| listingName | string | Human-readable listing name carried over from the request. |
| listingDescription | string | Optional listing description (null when not provided). |
| bigquery | object | |
| bucketId | integer | |
| jobOperationParams | array | |
| jobParams | array |
JSON Schema
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "BucketListingCreateJobParams",
"required": [
"idBucket",
"listingName",
"bigquery",
"bucketId",
"jobOperationParams",
"jobParams"
],
"properties": {
"idBucket": {
"description": "Internal numeric identifier of the bucket being exposed.",
"type": "integer"
},
"listingName": {
"description": "Human-readable listing name carried over from the request.",
"type": "string"
},
"listingDescription": {
"description": "Optional listing description (null when not provided).",
"type": "string",
"nullable": true
},
"bigquery": {
"$ref": "#/components/schemas/BigQueryListingSection"
},
"bucketId": {
"type": "integer"
},
"jobOperationParams": {
"type": "array",
"items": {}
},
"jobParams": {
"type": "array",
"items": {}
}
},
"type": "object"
}