Skip to main content

DashboardFiltersResponseSchema

filters object[]

Metadata about each in-scope dashboard native filter and whether its default value was applied to the query

  • Array [
  • idstringrequired

    The native filter ID

    namestringrequired

    The native filter name

    statusstringrequired

    Filter status: 'applied' (default value was included in the query) or 'not_applied' (filter had no default value and was omitted, matching dashboard initial-load behavior)

    columnstringnullable

    Target column name for the filter

  • ]
  • DashboardFiltersResponseSchema
    {
    "filters": [
    {
    "id": "string",
    "name": "string",
    "status": "string",
    "column": "string"
    }
    ]
    }