Keboola · Schema
BucketDetailResponse
Data PlatformETLELTData PipelinesData StorageTransformationsOrchestrationData OperationsCloud DataSnowflakeBigQuery
Properties
| Name | Type | Description |
|---|---|---|
| uri | string | Bucket detail URI. |
| id | string | Bucket identifier. |
| name | string | Bucket name. |
| displayName | string | Display name of the bucket. |
| idBranch | integer | Branch identifier. |
| stage | string | Bucket stage. |
| description | string | Bucket description. |
| created | string | Creation timestamp. |
| lastChangeDate | string | Last change timestamp. |
| updated | string | Update timestamp. |
| isReadOnly | boolean | Whether bucket is read only. |
| dataSizeBytes | integer | Size of data in bytes. |
| rowsCount | integer | Total rows count. |
| isMaintenance | boolean | Bucket is in maintenance mode. |
| backend | string | Backend type. |
| sharing | string | Sharing mode. |
| hasExternalSchema | boolean | True if bucket has external schema. |
| databaseName | string | Database name. |
| path | string | Bucket path. |
| isSnowflakeSharedDatabase | boolean | Is Snowflake shared database flag. |
| isLinkedBucket | boolean | Whether this bucket is linked from another project. |
| color | string | Bucket color. |
| metadata | array | Bucket metadata records. |
| tables | array | List of tables in the bucket. |
| linkedBy | array | Buckets linking to this one. |
| owner | object | Bucket owner information. |
| sourceBucket | object | Source bucket for linked buckets. |
| backendPath | array | Full path to backend on backend including schema. |
| listing | object | Bucket listing payload (Analytics Hub on BigQuery). Null when the bucket is not listed. |
JSON Schema
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "BucketDetailResponse",
"required": [
"uri",
"id",
"name",
"displayName",
"idBranch",
"stage",
"created",
"isReadOnly",
"dataSizeBytes",
"rowsCount",
"isMaintenance",
"backend",
"hasExternalSchema",
"path",
"isSnowflakeSharedDatabase",
"isLinkedBucket",
"metadata",
"tables",
"backendPath"
],
"properties": {
"uri": {
"description": "Bucket detail URI.",
"type": "string"
},
"id": {
"description": "Bucket identifier.",
"type": "string"
},
"name": {
"description": "Bucket name.",
"type": "string"
},
"displayName": {
"description": "Display name of the bucket.",
"type": "string"
},
"idBranch": {
"description": "Branch identifier.",
"type": "integer"
},
"stage": {
"description": "Bucket stage.",
"type": "string"
},
"description": {
"description": "Bucket description.",
"type": "string",
"nullable": true
},
"created": {
"description": "Creation timestamp.",
"type": "string",
"format": "date-time"
},
"lastChangeDate": {
"description": "Last change timestamp.",
"type": "string",
"format": "date-time",
"nullable": true
},
"updated": {
"description": "Update timestamp.",
"type": "string",
"format": "date-time",
"nullable": true
},
"isReadOnly": {
"description": "Whether bucket is read only.",
"type": "boolean"
},
"dataSizeBytes": {
"description": "Size of data in bytes.",
"type": "integer"
},
"rowsCount": {
"description": "Total rows count.",
"type": "integer"
},
"isMaintenance": {
"description": "Bucket is in maintenance mode.",
"type": "boolean"
},
"backend": {
"description": "Backend type.",
"type": "string"
},
"sharing": {
"description": "Sharing mode.",
"type": "string",
"nullable": true
},
"hasExternalSchema": {
"description": "True if bucket has external schema.",
"type": "boolean"
},
"databaseName": {
"description": "Database name.",
"type": "string",
"nullable": true
},
"path": {
"description": "Bucket path.",
"type": "string"
},
"isSnowflakeSharedDatabase": {
"description": "Is Snowflake shared database flag.",
"type": "boolean"
},
"isLinkedBucket": {
"description": "Whether this bucket is linked from another project.",
"type": "boolean"
},
"color": {
"description": "Bucket color.",
"type": "string",
"nullable": true
},
"metadata": {
"description": "Bucket metadata records.",
"type": "array",
"items": {
"type": "object"
}
},
"tables": {
"description": "List of tables in the bucket.",
"type": "array",
"items": {
"type": "object"
}
},
"linkedBy": {
"description": "Buckets linking to this one.",
"type": "array",
"items": {
"type": "object"
},
"nullable": true
},
"owner": {
"description": "Bucket owner information.",
"type": "object",
"nullable": true
},
"sourceBucket": {
"description": "Source bucket for linked buckets.",
"type": "object",
"nullable": true
},
"backendPath": {
"description": "Full path to backend on backend including schema.",
"type": "array",
"items": {
"type": "string"
}
},
"listing": {
"oneOf": [
{
"$ref": "#/components/schemas/BucketListingDetailResponse"
}
],
"nullable": true,
"description": "Bucket listing payload (Analytics Hub on BigQuery). Null when the bucket is not listed."
}
},
"type": "object"
}