Keboola · Schema
CreateBucketRequest
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. |
| color | string | CSS color code for the bucket (e.g., #FF5733). |
| stage | string | Bucket stage (in, out, or sys). |
| backend | string | Storage backend for the bucket. |
| description | string | Optional description of the bucket. |
JSON Schema
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "CreateBucketRequest",
"required": [
"name",
"displayName",
"color",
"stage",
"backend",
"description"
],
"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"
},
"color": {
"description": "CSS color code for the bucket (e.g., #FF5733).",
"type": "string"
},
"stage": {
"description": "Bucket stage (in, out, or sys).",
"type": "string",
"enum": [
"in",
"out",
"sys"
]
},
"backend": {
"description": "Storage backend for the bucket.",
"type": "string",
"enum": [
"snowflake",
"synapse",
"exasol",
"teradata",
"bigquery"
]
},
"description": {
"description": "Optional description of the bucket.",
"type": "string"
}
},
"type": "object"
}