Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .changes/unreleased/Under the Hood-20260523-015747.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
kind: Under the Hood
body: sync JSON schemas from dbt-fusion
time: 2026-05-23T01:57:47.745925831Z
custom:
Author: fa-assistant
Issue: N/A
178 changes: 175 additions & 3 deletions core/dbt/jsonschemas/project/latest.json
Original file line number Diff line number Diff line change
Expand Up @@ -581,6 +581,13 @@
"replace_where"
]
},
{
"description": "legacy (ClickHouse only) — intermediate-table + swap approach https://github.com/ClickHouse/dbt-clickhouse/blob/main/dbt/adapters/clickhouse/impl.py",
"type": "string",
"enum": [
"legacy"
]
},
{
"type": "object",
"required": [
Expand Down Expand Up @@ -655,7 +662,6 @@
"database": {
"anyOf": [
{
"default": null,
"type": [
"boolean",
"null"
Expand All @@ -670,7 +676,6 @@
"identifier": {
"anyOf": [
{
"default": null,
"type": [
"boolean",
"null"
Expand All @@ -685,7 +690,6 @@
"schema": {
"anyOf": [
{
"default": null,
"type": [
"boolean",
"null"
Expand Down Expand Up @@ -801,6 +805,18 @@
"null"
]
},
"loaded_at_field": {
"type": [
"string",
"null"
]
},
"loaded_at_query": {
"type": [
"string",
"null"
]
},
"warn_after": {
"default": {
"count": null,
Expand Down Expand Up @@ -1059,6 +1075,70 @@
},
"additionalProperties": false
},
"ModelState": {
"type": "object",
"properties": {
"evaluate_volatile_sql": {
"anyOf": [
{
"type": [
"boolean",
"null"
]
},
{
"type": "string",
"pattern": "^\\{.*\\}$"
}
]
},
"execute_hooks_on_reuse": {
"anyOf": [
{
"type": [
"boolean",
"null"
]
},
{
"type": "string",
"pattern": "^\\{.*\\}$"
}
]
},
"lag_tolerance": {
"anyOf": [
{
"$ref": "#/definitions/ModelFreshnessRules"
},
{
"type": "null"
}
]
},
"pre_clone": {
"anyOf": [
{
"$ref": "#/definitions/StatePreClone"
},
{
"type": "null"
}
]
},
"require_fresh_data_from": {
"anyOf": [
{
"$ref": "#/definitions/UpdatesOn"
},
{
"type": "null"
}
]
}
},
"additionalProperties": false
},
"OnConfigurationChange": {
"type": "string",
"enum": [
Expand Down Expand Up @@ -1456,6 +1536,21 @@
}
]
},
"+copy_tags": {
"anyOf": [
{
"default": null,
"type": [
"boolean",
"null"
]
},
{
"type": "string",
"pattern": "^\\{.*\\}$"
}
]
},
"+database": {
"type": [
"string",
Expand Down Expand Up @@ -2737,6 +2832,21 @@
}
]
},
"+copy_tags": {
"anyOf": [
{
"default": null,
"type": [
"boolean",
"null"
]
},
{
"type": "string",
"pattern": "^\\{.*\\}$"
}
]
},
"+create_notebook": {
"anyOf": [
{
Expand Down Expand Up @@ -3605,6 +3715,16 @@
"null"
]
},
"+state": {
"anyOf": [
{
"$ref": "#/definitions/ModelState"
},
{
"type": "null"
}
]
},
"+static_analysis": {
"anyOf": [
{
Expand Down Expand Up @@ -4054,6 +4174,20 @@
}
]
},
"+copy_tags": {
"anyOf": [
{
"type": [
"boolean",
"null"
]
},
{
"type": "string",
"pattern": "^\\{.*\\}$"
}
]
},
"+database": {
"type": [
"string",
Expand Down Expand Up @@ -4911,6 +5045,21 @@
}
]
},
"+copy_tags": {
"anyOf": [
{
"default": null,
"type": [
"boolean",
"null"
]
},
{
"type": "string",
"pattern": "^\\{.*\\}$"
}
]
},
"+database": {
"type": [
"string",
Expand Down Expand Up @@ -6414,6 +6563,21 @@
}
]
},
"+copy_tags": {
"anyOf": [
{
"default": null,
"type": [
"boolean",
"null"
]
},
{
"type": "string",
"pattern": "^\\{.*\\}$"
}
]
},
"+databricks_compute": {
"type": [
"string",
Expand Down Expand Up @@ -7132,6 +7296,14 @@
}
]
},
"StatePreClone": {
"type": "string",
"enum": [
"never",
"if_missing",
"always"
]
},
"StaticAnalysisKind": {
"type": "string",
"enum": [
Expand Down
Loading
Loading