Keboola · Schema

BucketRegisterGuideRequest

Data PlatformETLELTData PipelinesData StorageTransformationsOrchestrationData OperationsCloud DataSnowflakeBigQuery

Properties

Name Type Description
path array Path to the bucket.
backend string Desired backend of the bucket.
isSnowflakeSharedDatabase boolean Flag indicating the bucket uses a shared Snowflake database.
View JSON Schema on GitHub

JSON Schema

keboola-bucketregisterguiderequest.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "BucketRegisterGuideRequest",
  "required": [
    "path",
    "backend"
  ],
  "properties": {
    "path": {
      "description": "Path to the bucket.",
      "type": "array",
      "items": {
        "type": "string",
        "minLength": 1
      }
    },
    "backend": {
      "description": "Desired backend of the bucket.",
      "type": "string",
      "enum": [
        "snowflake",
        "bigquery"
      ]
    },
    "isSnowflakeSharedDatabase": {
      "description": "Flag indicating the bucket uses a shared Snowflake database.",
      "type": "boolean",
      "nullable": true
    }
  },
  "type": "object"
}