-
Notifications
You must be signed in to change notification settings - Fork 120
Expand file tree
/
Copy pathdatabricks_template_schema.json
More file actions
22 lines (22 loc) · 1.18 KB
/
databricks_template_schema.json
File metadata and controls
22 lines (22 loc) · 1.18 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"welcome_message": "\nWelcome to the file-push template for Declarative Automation Bundles!\n\nA workspace was selected based on your current profile. For information about how to change this, see https://docs.databricks.com/dev-tools/cli/profiles.html.\nworkspace_host: {{workspace_host}}",
"properties": {
"catalog_name": {
"type": "string",
"description": "\nPlease provide the name of an EXISTING UC catalog with default storage enabled.\nCatalog Name",
"order": 1,
"default": "main",
"pattern": "^[a-z_][a-z0-9_-]{0,254}$",
"pattern_match_failure_message": "Name must only consist of letters, numbers, dashes, and underscores."
},
"schema_name": {
"type": "string",
"description": "\nPlease provide a NEW schema name where the pipelines and tables will land in.\nSchema Name",
"order": 2,
"default": "filepushschema",
"pattern": "^[a-z_][a-z0-9_-]{0,254}$",
"pattern_match_failure_message": "Name must only consist of letters, numbers, dashes, and underscores."
}
},
"success_message": "\nBundle folder '{{.catalog_name}}.{{.schema_name}}' has been created. Please refer to the README.md for next steps."
}