From 2348e852acd20747baf31a78234a36516b7f45c3 Mon Sep 17 00:00:00 2001 From: Pieter Noordhuis Date: Fri, 25 Oct 2024 15:28:20 +0200 Subject: [PATCH] Update schema --- bundle/schema/jsonschema.json | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/bundle/schema/jsonschema.json b/bundle/schema/jsonschema.json index 788b0e1f0..62e5fe6d8 100644 --- a/bundle/schema/jsonschema.json +++ b/bundle/schema/jsonschema.json @@ -186,6 +186,7 @@ "type": "object", "properties": { "display_name": { + "description": "The display name of the dashboard.", "$ref": "#/$defs/string" }, "embed_credentials": { @@ -195,22 +196,24 @@ "$ref": "#/$defs/string" }, "parent_path": { + "description": "The workspace path of the folder containing the dashboard. Includes leading slash and no\ntrailing slash.\nThis field is excluded in List Dashboards responses.", "$ref": "#/$defs/string" }, "permissions": { "$ref": "#/$defs/slice/github.com/databricks/cli/bundle/config/resources.Permission" }, "serialized_dashboard": { + "description": "The contents of the dashboard in serialized string form.\nThis field is excluded in List Dashboards responses.\nUse the [get dashboard API](https://docs.databricks.com/api/workspace/lakeview/get)\nto retrieve an example response, which includes the `serialized_dashboard` field.\nThis field provides the structure of the JSON string that represents the dashboard's\nlayout and components.", "$ref": "#/$defs/interface" }, "warehouse_id": { + "description": "The warehouse ID used to run the dashboard.", "$ref": "#/$defs/string" } }, "additionalProperties": false, "required": [ - "display_name", - "warehouse_id" + "display_name" ] }, {