{ "$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" }