Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updating to address current manifest schema V# #2662

Merged
merged 9 commits into from
Jan 11, 2023
21 changes: 19 additions & 2 deletions website/docs/reference/artifacts/manifest-json.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,25 @@
---
title: Manifest
---
<VersionBlock firstVersion="1.4">
**dbt Core v1.4 produces schema**: [`v8`](https://schemas.getdbt.com/dbt/manifest/v8/index.html)
</VersionBlock>

**Current schema**: [`v6`](https://schemas.getdbt.com/dbt/manifest/v6/index.html)
<VersionBlock lastVersion="1.3">
**dbt Core v1.3 produces schema**: [`v7`](https://schemas.getdbt.com/dbt/manifest/v7/index.html)
</VersionBlock>

<VersionBlock lastVersion="1.2">
**dbt Core v1.2 produces schema**: [`v6`](https://schemas.getdbt.com/dbt/manifest/v6/index.html)
</VersionBlock>

<VersionBlock lastVersion="1.1">
**dbt Core v1.1 produces schema**: [`v5`](https://schemas.getdbt.com/dbt/manifest/v5/index.html)
</VersionBlock>

<VersionBlock lastVersion="1.0">
**dbt Core v1.0 produces schema**: [`v4`](https://schemas.getdbt.com/dbt/manifest/v4/index.html)
</VersionBlock>

**Produced by:** [`build`](commands/build) [`compile`](commands/compile) [`docs generate`](commands/cmd-docs) [`list`](commands/list) [`seed`](commands/seed) [`snapshot`](commands/snapshot) [`source freshness`](commands/source) [`test`](commands/test) [`run`](commands/run) [`run-operation`](commands/run-operation)

Expand Down Expand Up @@ -31,7 +48,7 @@ All resources nested within `nodes`, `sources`, `exposures`, `macros`, and `docs
- `name`: Resource name.
- `unique_id`: `<resource_type>.<package>.<resource_name>`, same as dictionary key
- `package_name`: Name of package that defines this resource.
- `root_path`: Absolute file path of this resource's package.
- `root_path`: Absolute file path of this resource's package. This is removed in dbt Core v1.4 / manifest v8 to reduce duplicative information across nodes.
- `path`: Relative file path of this resource's definition within its "resource path" (`model-paths`, `seed-paths`, etc.).
- `original_file_path`: Relative file path of this resource's definition, including its resource path.

Expand Down