action superset_get_dashboard_id_or_slug_datasets { label: "get_dashboard_id_or_slug_datasets" description: "Returns a list of a dashboard's datasets. Each dataset includes only the information necessary to render the dashboard's charts." provider: superset method: GET path: "/dashboard/{id_or_slug}/datasets" encoding: json input: { type: "object" properties: { id_or_slug: { type: "string" } } required: ["id_or_slug"] additionalProperties: false } output: { type: "object" properties: { result: { type: "array" items: { type: "object" properties: { cache_timeout: { type: "integer" format: "int32" } column_formats: { type: "object" } column_types: { type: "array" items: { type: "integer" format: "int32" } } columns: { type: "array" items: { type: "object" } } database: { type: "object" properties: { allow_multi_schema_metadata_fetch: { type: "boolean" } allows_cost_estimate: { type: "boolean" } allows_subquery: { type: "boolean" } allows_virtual_table_explore: { type: "boolean" } backend: { type: "string" } explore_database_id: { type: "integer" format: "int32" } id: { type: "integer" format: "int32" } name: { type: "string" } } } datasource_name: { type: "string" } default_endpoint: { type: "string" } edit_url: { type: "string" } fetch_values_predicate: { type: "string" } filter_select: { type: "boolean" } filter_select_enabled: { type: "boolean" } granularity_sqla: { type: "array" items: { type: "array" items: { type: "string" } } } health_check_message: { type: "string" } id: { type: "integer" format: "int32" } is_sqllab_view: { type: "boolean" } main_dttm_col: { type: "string" } metrics: { type: "array" items: { type: "object" } } name: { type: "string" } offset: { type: "integer" format: "int32" } order_by_choices: { type: "array" items: { type: "array" items: { type: "string" } } } owners: { type: "array" items: { type: "integer" format: "int32" } } params: { type: "string" } perm: { type: "string" } schema: { type: "string" } select_star: { type: "string" } sql: { type: "string" } table_name: { type: "string" } template_params: { type: "string" } time_grain_sqla: { type: "array" items: { type: "array" items: { type: "string" } } } type: { type: "string" } uid: { type: "string" } verbose_map: { type: "object" } } } } } } }