Looker · Schema
DashboardFilter
A filter on a dashboard that allows users to dynamically change query parameters across multiple tiles simultaneously.
AnalyticsBI PlatformBusiness IntelligenceData AnalyticsData Visualization
Properties
| Name | Type | Description |
|---|---|---|
| id | string | Unique identifier for this filter |
| dashboard_id | string | ID of the parent dashboard |
| name | string | Internal name of the filter |
| title | string | Display title of the filter |
| type | string | Filter input type |
| model | string | LookML model name for field_filter type |
| explore | string | LookML explore name for field_filter type |
| dimension | string | LookML dimension for field_filter type |
| default_value | string | Default filter value |
| allow_multiple_values | boolean | Whether multiple values can be selected |
| required | boolean | Whether the filter must have a value |
| row | integer | Row position of the filter in the filter bar |
| listens_to_filters | array | Other filters this filter listens to for cascading |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "DashboardFilter",
"type": "object",
"description": "A filter on a dashboard that allows users to dynamically change query parameters across multiple tiles simultaneously.",
"properties": {
"id": {
"type": "string",
"description": "Unique identifier for this filter"
},
"dashboard_id": {
"type": "string",
"description": "ID of the parent dashboard"
},
"name": {
"type": "string",
"description": "Internal name of the filter"
},
"title": {
"type": "string",
"description": "Display title of the filter"
},
"type": {
"type": "string",
"description": "Filter input type"
},
"model": {
"type": "string",
"description": "LookML model name for field_filter type"
},
"explore": {
"type": "string",
"description": "LookML explore name for field_filter type"
},
"dimension": {
"type": "string",
"description": "LookML dimension for field_filter type"
},
"default_value": {
"type": "string",
"description": "Default filter value"
},
"allow_multiple_values": {
"type": "boolean",
"description": "Whether multiple values can be selected"
},
"required": {
"type": "boolean",
"description": "Whether the filter must have a value"
},
"row": {
"type": "integer",
"description": "Row position of the filter in the filter bar"
},
"listens_to_filters": {
"type": "array",
"description": "Other filters this filter listens to for cascading"
}
}
}