ChartDataResponseSchema
result object[]
A list of results for each corresponding query in the request.
All requested annotation data
A list with applied filters
Unique cache key for query object
Cache timeout in following order: custom timeout, datasource timeout, cache default timeout, config default cache timeout.
Cache timestamp
A list of column names
A list of generic data types of each column
A list with results
Error
Start timestamp of time range
Is the result cached
The executed query statement
A list with rejected filters
Amount of rows in result set
Stacktrace if there was an error
Status of the query
Possible values: [stopped, failed, pending, running, scheduled, success, timed_out]
End timestamp of time range
dashboard_filters object
Metadata about dashboard native filters applied to the query. Only present when filters_dashboard_id is provided.
filters object[]
Metadata about each in-scope dashboard native filter and whether its default value was applied to the query
The native filter ID
The native filter name
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)
Target column name for the filter
{
"result": [
{
"annotation_data": [
{}
],
"applied_filters": [
{}
],
"cache_key": "string",
"cache_timeout": 0,
"cached_dttm": "string",
"colnames": [
"string"
],
"coltypes": [
0
],
"data": [
{}
],
"error": "string",
"from_dttm": 0,
"is_cached": true,
"query": "string",
"rejected_filters": [
{}
],
"rowcount": 0,
"stacktrace": "string",
"status": "stopped",
"to_dttm": 0
}
],
"dashboard_filters": {
"filters": [
{
"id": "string",
"name": "string",
"status": "string",
"column": "string"
}
]
}
}