Manifest
Current schema: v1
Produced by:
dbt compile
dbt run
dbt test
dbt seed
dbt snapshot
dbt docs generate
dbt source snapshot-freshness
dbt ls
This single file contains a full representation of your dbt project's resources (models, tests, macros, etc), including all node configurations and resource properties. Even if you're only running some models or tests, all resources will appear in the manifest (unless they are disabled) with most of their properties. (A few node properties, such as compiled_sql
, only appear for executed nodes.)
Today, dbt uses this file to populate the docs site, and to perform state comparison. Members of the community have used this file to run checks on how many models have descriptions and tests.
Top-level keys
metadata
nodes
: Dictionary of all analyses, models, seeds, snapshots, and tests.sources
: Dictionary of sources.exposures
: Dictionary of exposures.macros
: Dictionary of macros.docs
: Dictionary ofdocs
blocks.parent_map
: Dictionary that contains the first-order parents of each resource.child_map
: Dictionary that contains the first-order children of each resource.selectors
: Expanded dictionary representation of YAMLselectors
.disabled
: Array of resources withenabled: false
.
Resource details
All resources nested within nodes
, sources
, exposures
, macros
, and docs
have the following base properties:
name
: Resource name.unique_id
:<resource_type>.<package>.<resource_name>
, same as dictionary keypackage_name
: Name of package that defines this resource.root_path
: Absolute file path of this resource's package.path
: Relative file path of this resource's definition within its "resource path" (source-paths
,data-paths
, etc.).original_file_path
: Relative file path of this resource's definition, including its resource path.
Each has several additional properties related to its resource type.