Skip to main content
Version: Next

DashboardFiltersResponseSchema

filters object[]

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

  • Array [
  • columnstringnullable

    Target column name for the filter

    idstringrequired

    The native filter ID

    namestringrequired

    The native filter name

    statusstringrequired

    Filter status: 'applied' (default value was included in the query), 'not_applied' (filter had no default value and was omitted, matching dashboard initial-load behavior), or 'not_applied_uses_default_to_first_item_prequery' (filter uses defaultToFirstItem which requires a pre-query to resolve and cannot be applied server-side)

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