diff --git a/bundle/internal/schema/annotations.yml b/bundle/internal/schema/annotations.yml index e52189daa..556f9729b 100644 --- a/bundle/internal/schema/annotations.yml +++ b/bundle/internal/schema/annotations.yml @@ -97,6 +97,12 @@ github.com/databricks/cli/bundle/config.Lock: "description": |- Whether to force this lock if it is enabled. github.com/databricks/cli/bundle/config.Presets: + "catalog": + "description": |- + The default catalog to use for all resources. + "schema": + "description": |- + The default schema to use for all resources. "jobs_max_concurrent_runs": "description": |- The maximum concurrent runs for a job. diff --git a/bundle/schema/jsonschema.json b/bundle/schema/jsonschema.json index 8e8efa7fc..93dc179f0 100644 --- a/bundle/schema/jsonschema.json +++ b/bundle/schema/jsonschema.json @@ -1175,6 +1175,10 @@ { "type": "object", "properties": { + "catalog": { + "description": "The default catalog to use for all resources.", + "$ref": "#/$defs/string" + }, "jobs_max_concurrent_runs": { "description": "The maximum concurrent runs for a job.", "$ref": "#/$defs/int" @@ -1187,6 +1191,10 @@ "description": "Whether pipeline deployments should be locked in development mode.", "$ref": "#/$defs/bool" }, + "schema": { + "description": "The default schema to use for all resources.", + "$ref": "#/$defs/string" + }, "source_linked_deployment": { "description": "Whether to link the deployment to the bundle source.", "$ref": "#/$defs/bool"