Files
superset2/docs/developer_docs_versioned_docs/version-6.1.0/api/warm-up-the-cache-for-each-chart-powered-by-the-given-table.RequestSchema.json
2026-07-28 21:39:01 +07:00

41 lines
1.2 KiB
JSON

{
"title": "Body",
"body": {
"content": {
"application/json": {
"schema": {
"properties": {
"dashboard_id": {
"description": "The ID of the dashboard to get filters for when warming cache",
"type": "integer"
},
"db_name": {
"description": "The name of the database where the table is located",
"type": "string"
},
"extra_filters": {
"description": "Extra filters to apply when warming up cache",
"type": "string"
},
"table_name": {
"description": "The name of the table to warm up cache for",
"type": "string"
}
},
"required": ["db_name", "table_name"],
"type": "object",
"title": "DatasetCacheWarmUpRequestSchema"
},
"example": {
"dashboard_id": 1,
"db_name": "string",
"extra_filters": "string",
"table_name": "string"
}
}
},
"description": "Identifies the database and table to warm up cache for, and any additional dashboard or filter context to use.",
"required": true
}
}