# The Dashboard object

## Attributes

- `dashboard_id` (string)
  UUID identifying the dashboard.
  Example: `04aab30f99ea444490c10c85852f216c`
- `display_name` (string)
  The display name of the dashboard.
  Example: `Monthly Traffic Report`
- `path` (string)
  The workspace path of the dashboard asset, including the file name.
   Exported dashboards always have the file extension `.lvdash.json`.
   This field is excluded in List Dashboards responses.
  Example: `/path/to/dir/Monthly Traffic Report.lvdash.json`
- `create_time` (string)
  The timestamp of when the dashboard was created.
- `update_time` (string)
  The timestamp of when the dashboard was last updated by the user.
   This field is excluded in List Dashboards responses.
- `warehouse_id` (string)
  The warehouse ID used to run the dashboard.
  Example: `47bb1c472649e711`
- `etag` (string)
  The etag for the dashboard. Can be optionally provided on updates to ensure that the dashboard
   has not been modified since the last read.
   This field is excluded in List Dashboards responses.
  Example: `80611980`
- `serialized_dashboard` (string)
  The contents of the dashboard in serialized string form.
   This field is excluded in List Dashboards responses.
   Use the [get dashboard API](https://docs.databricks.com/api/workspace/lakeview/get)
   to retrieve an example response, which includes the `serialized_dashboard` field.
   This field provides the structure of the JSON string that represents the dashboard's 
   layout and components.
- `lifecycle_state` (string)
  The state of the dashboard resource. Used for tracking trashed status.
  Possible values: `ACTIVE`, `TRASHED`
- `parent_path` (string)
  The workspace path of the folder containing the dashboard. Includes leading slash and no
   trailing slash.
   This field is excluded in List Dashboards responses.
  Example: `/path/to/dir`

## Example

```json
{
  "dashboard_id": "04aab30f99ea444490c10c85852f216c",
  "display_name": "Monthly Traffic Report",
  "path": "/path/to/dir/Monthly Traffic Report.lvdash.json",
  "create_time": "string",
  "update_time": "string",
  "warehouse_id": "47bb1c472649e711",
  "etag": "80611980",
  "serialized_dashboard": "{\"pages\":[{\"name\":\"b532570b\",\"displayName\":\"New Page\"}]}",
  "lifecycle_state": "string",
  "parent_path": "/path/to/dir"
}
```


