mirror of
https://github.com/apache/superset.git
synced 2026-08-04 21:12:44 +00:00
36 lines
1016 B
JSON
36 lines
1016 B
JSON
{
|
|
"title": "Body",
|
|
"body": {
|
|
"content": {
|
|
"application/json": {
|
|
"schema": {
|
|
"properties": {
|
|
"chart_id": {
|
|
"description": "The ID of the chart to warm up cache for",
|
|
"type": "integer"
|
|
},
|
|
"dashboard_id": {
|
|
"description": "The ID of the dashboard to get filters for when warming cache",
|
|
"type": "integer"
|
|
},
|
|
"extra_filters": {
|
|
"description": "Extra filters to apply when warming up cache",
|
|
"type": "string"
|
|
}
|
|
},
|
|
"required": ["chart_id"],
|
|
"type": "object",
|
|
"title": "ChartCacheWarmUpRequestSchema"
|
|
},
|
|
"example": {
|
|
"chart_id": 1,
|
|
"dashboard_id": 1,
|
|
"extra_filters": "string"
|
|
}
|
|
}
|
|
},
|
|
"description": "Identifies the chart to warm up cache for, and any additional dashboard or filter context to use.",
|
|
"required": true
|
|
}
|
|
}
|