GitHub user dosubot[bot] added a comment to the discussion: assets import
<!-- Answer --> You don't need to include fields like `datasource: 1__table`, `slice_id`, `dashboards`, or `optionName` in your chart YAMLs for asset import. Superset ignores or overwrites these internal IDs and frontend-only fields during import. The import process uses only UUIDs for linking assets; it automatically updates all datasource and chart references in `params`, `form_data`, and `query_context` to match the new dataset/chart IDs and types assigned during import. Best practice: omit `id`, `slice_id`, `chartId`, `dashboards`, and `optionName` from your YAMLs. Just ensure your `dataset_uuid` and `uuid` fields are unique and correctly referenced. Superset will handle all the necessary remapping for you, making the import process robust and safe for multi-tenant onboarding. Fields like `datasource: 1__table` or `slice_id: 1` are replaced with the correct values during import, so you don't need to set them yourself [[chart import logic](https://github.com/apache/superset/blob/829e4d92d91ceae4b43b1ed3b063ffe45377799c/superset/commands/chart/importers/v1/__init__.py)] [[update_chart_config_dataset](https://github.com/apache/superset/blob/829e4d92d91ceae4b43b1ed3b063ffe45377799c/superset/commands/utils.py)] [[chart schema](https://github.com/apache/superset/blob/829e4d92d91ceae4b43b1ed3b063ffe45377799c/superset/charts/schemas.py)]. <!-- Dosu Comment Footer --> *To reply, just mention [@dosu](https://go.dosu.dev/dosubot).* --- <sup>How did I do? [Good](https://app.dosu.dev/response-feedback/a94f3c81-4394-41dc-989e-1b74d2e45261?feedback_type=great_response) | [Irrelevant](https://app.dosu.dev/response-feedback/a94f3c81-4394-41dc-989e-1b74d2e45261?feedback_type=irrelevant_answer) | [Incorrect](https://app.dosu.dev/response-feedback/a94f3c81-4394-41dc-989e-1b74d2e45261?feedback_type=incorrect_sources) | [Verbose](https://app.dosu.dev/response-feedback/a94f3c81-4394-41dc-989e-1b74d2e45261?feedback_type=too_verbose) | [Hallucination](https://app.dosu.dev/response-feedback/a94f3c81-4394-41dc-989e-1b74d2e45261?feedback_type=hallucination) | [Report 🐛](https://app.dosu.dev/response-feedback/a94f3c81-4394-41dc-989e-1b74d2e45261?feedback_type=bug_report) | [Other](https://app.dosu.dev/response-feedback/a94f3c81-4394-41dc-989e-1b74d2e45261?feedback_type=other)</sup> [](https://app.dosu.dev/a28d3c7e-a9d3-459e-9fb6-3a6f9ff4f357/ask?utm_source=github)& nbsp;[](https://go.dosu.dev/discord-bot) [](https://twitter.com/intent/tweet?text=%40dosu_ai%20helped%20me%20solve%20this%20issue!&url=https%3A//github.com/apache/superset/discussions/34573) GitHub link: https://github.com/apache/superset/discussions/34573#discussioncomment-14078205 ---- This is an automatically sent email for [email protected]. To unsubscribe, please send an email to: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
