docs
- Models
- Sources
- Seeds
- Snapshots
- Analyses
- Macros
models/schema.yml
version: 2models:- name: model_namedocs:show: true | false
Definition
The docs
field can be used to provide documentation-specific configuration to models. The only currently supported docs
attribute is show
, which controls whether or not models are shown in the auto-generated documentation website.
Note: hidden models will still appear in the dbt DAG visualization, but will be identified as "hidden".
▶Changelog
Default
The default value for show
is true
.
Examples
Mark a model as hidden
models:- name: sessions__tmpdocs:show: false