Skip to content

Declaring downstream exposures for a model

Exposures let you document downstream uses of your dbt project—like dashboards, notebooks, or applications—directly in your dbt project so that lineage and impact analysis extend beyond models into the tools that consume them. They are defined in YAML and appear in the dbt docs DAG, helping teams understand what breaks if an upstream model changes.

Must-know

  • Exposures are defined in YAML files (typically under an exposures: key) and can live in any .yml file within your models directory, not just a dedicated exposures.yml.
  • Each exposure requires a name, type (dashboard, notebook, analysis, ml, or application), owner (with name and/or email), and a depends_on list referencing models, seeds, or snapshots via ref() or sources via source().
  • Exposures show up as distinct nodes in the DAG and dbt docs site, enabling stakeholders to trace which exposures depend on a given model and assess downstream impact before making changes.
  • The depends_on field must use ref() or source() function syntax (not hardcoded table names) so dbt can resolve the dependency graph correctly and include exposures in selection syntax like dbt run --select +exposure:my_dashboard.
  • Exposures do not run any code themselves—they are purely metadata/documentation nodes and have no compiled SQL or materialization.
  • Common gotcha: forgetting to update or remove exposures when a downstream tool is deprecated leads to stale lineage information that misrepresents actual dependencies in dbt docs.
Check this objectiveFree · always available

A dbt project defines the following exposure: exposures: - name: weekly_jaffle_report type: dashboard maturity: high url: https://bi.tool/dashboards/1 depends_on: - ref('fct_orders') - ref('dim_customers') owner: name: Callum McData email: [email protected] You want to build fct_orders, dim_customers, and everything those two models depend on, using the exposure's own lineage instead of typing out each model name. Which command does this?

Your objective map0 tried · 0 right · 31 untouched

What you have tried across dbt Analytics Engineering's objectives, not a readiness score.

Coverage checked against the published exam guide on Aug 5, 2026.

These are independent practice questions, written against this certification's published exam guide. They are not the certification vendor's own questions, and not the real exam.