Keboola · Schema
LinkBucketRequest
Data PlatformETLELTData PipelinesData StorageTransformationsOrchestrationData OperationsCloud DataSnowflakeBigQuery
Properties
| Name | Type | Description |
|---|---|---|
| name | string | Bucket name. Must contain only alphanumeric characters, dashes, and underscores. |
| displayName | string | Human-readable display name for the bucket. |
| sourceProjectId | integer | ID of the source project containing the bucket to link. |
| sourceBucketId | string | ID of the source bucket to link. |
| stage | string | Bucket stage (in, out, or sys). |
JSON Schema
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "LinkBucketRequest",
"required": [
"name",
"displayName",
"sourceProjectId",
"sourceBucketId",
"stage"
],
"properties": {
"name": {
"description": "Bucket name. Must contain only alphanumeric characters, dashes, and underscores.",
"type": "string"
},
"displayName": {
"description": "Human-readable display name for the bucket.",
"type": "string"
},
"sourceProjectId": {
"description": "ID of the source project containing the bucket to link.",
"type": "integer"
},
"sourceBucketId": {
"description": "ID of the source bucket to link.",
"type": "string"
},
"stage": {
"description": "Bucket stage (in, out, or sys).",
"type": "string",
"enum": [
"in",
"out",
"sys"
]
}
},
"type": "object"
}