diff --git a/website/docs/reference/artifacts/manifest-json.md b/website/docs/reference/artifacts/manifest-json.md
index 5e8dcedd2d5..47a9849eda5 100644
--- a/website/docs/reference/artifacts/manifest-json.md
+++ b/website/docs/reference/artifacts/manifest-json.md
@@ -3,15 +3,9 @@ title: "Manifest JSON file"
sidebar_label: "Manifest"
---
-| dbt Core version | Manifest version |
-|------------------|---------------------------------------------------------------|
-| v1.6 | [v10](https://schemas.getdbt.com/dbt/manifest/v10/index.html) |
-| v1.5 | [v9](https://schemas.getdbt.com/dbt/manifest/v9/index.html) |
-| v1.4 | [v8](https://schemas.getdbt.com/dbt/manifest/v8/index.html) |
-| v1.3 | [v7](https://schemas.getdbt.com/dbt/manifest/v7/index.html) |
-| v1.2 | [v6](https://schemas.getdbt.com/dbt/manifest/v6/index.html) |
-| v1.1 | [v5](https://schemas.getdbt.com/dbt/manifest/v5/index.html) |
-| v1.0 | [v4](https://schemas.getdbt.com/dbt/manifest/v4/index.html) |
+import ManifestVersions from '/snippets/_manifest-versions.md';
+
+
**Produced by:** Any command that parses your project. This includes all commands **except** [`deps`](/reference/commands/deps), [`clean`](/reference/commands/clean), [`debug`](/reference/commands/debug), [`init`](/reference/commands/init)
diff --git a/website/docs/reference/dbt-jinja-functions/model.md b/website/docs/reference/dbt-jinja-functions/model.md
index e967debd01f..9ccf0759470 100644
--- a/website/docs/reference/dbt-jinja-functions/model.md
+++ b/website/docs/reference/dbt-jinja-functions/model.md
@@ -52,15 +52,9 @@ To view the structure of `models` and their definitions:
Use the following table to understand how the versioning pattern works and match the Manifest version with the dbt version:
-| dbt version | Manifest version |
-| ----------- | ---------------- |
-| `v1.5` | [Manifest v9](https://schemas.getdbt.com/dbt/manifest/v9/index.html)
-| `v1.4` | [Manifest v8](https://schemas.getdbt.com/dbt/manifest/v8/index.html)
-| `v1.3` | [Manifest v7](https://schemas.getdbt.com/dbt/manifest/v7/index.html)
-| `v1.2` | [Manifest v6](https://schemas.getdbt.com/dbt/manifest/v6/index.html)
-| `v1.1` | [Manifest v5](https://schemas.getdbt.com/dbt/manifest/v5/index.html)
-
+import ManifestVersions from '/snippets/_manifest-versions.md';
+
## Related docs
diff --git a/website/snippets/_manifest-versions.md b/website/snippets/_manifest-versions.md
new file mode 100644
index 00000000000..c9b3e7af6ec
--- /dev/null
+++ b/website/snippets/_manifest-versions.md
@@ -0,0 +1,11 @@
+
+| dbt Core version | Manifest version |
+|------------------|---------------------------------------------------------------|
+| v1.7 | [v11](https://schemas.getdbt.com/dbt/manifest/v11/index.html) |
+| v1.6 | [v10](https://schemas.getdbt.com/dbt/manifest/v10/index.html) |
+| v1.5 | [v9](https://schemas.getdbt.com/dbt/manifest/v9/index.html) |
+| v1.4 | [v8](https://schemas.getdbt.com/dbt/manifest/v8/index.html) |
+| v1.3 | [v7](https://schemas.getdbt.com/dbt/manifest/v7/index.html) |
+| v1.2 | [v6](https://schemas.getdbt.com/dbt/manifest/v6/index.html) |
+| v1.1 | [v5](https://schemas.getdbt.com/dbt/manifest/v5/index.html) |
+| v1.0 | [v4](https://schemas.getdbt.com/dbt/manifest/v4/index.html) |
\ No newline at end of file