superset_dataset_create
Create datasets in Apache Superset from existing database tables or views to enable data visualization and analysis.
Instructions
Create a new dataset in Superset
Makes a request to the /api/v1/dataset/ POST endpoint to create a new dataset from an existing database table or view.
Args: table_name: Name of the physical table in the database database_id: ID of the database where the table exists schema: Optional database schema name where the table is located owners: Optional list of user IDs who should own this dataset
Returns: A dictionary with the created dataset information including its ID
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| table_name | Yes | ||
| database_id | Yes | ||
| schema | No | ||
| owners | No |