Skip to content

Commit

Permalink
Added full_refresh to model_configs
Browse files Browse the repository at this point in the history
  • Loading branch information
StuartMiddleton committed Apr 8, 2024
1 parent f017f36 commit 4332c1c
Showing 1 changed file with 18 additions and 16 deletions.
34 changes: 18 additions & 16 deletions schemas/latest/dbt_project-latest.json
Original file line number Diff line number Diff line change
Expand Up @@ -224,8 +224,8 @@
},
"data_test_configs": {
"title": "Data test configs",
"type": "object",
"description": "Configurations set in the dbt_project.yml file will apply to all tests that don't have a more specific configuration set.",
"type": "object",
"properties": {
"+alias": {
"$ref": "#/$defs/alias"
Expand Down Expand Up @@ -322,12 +322,12 @@
},
"docs_config": {
"title": "Docs config",
"type": "object",
"description": "Configurations for the appearance of nodes in the dbt documentation.",
"type": "object",
"properties": {
"node_color": {
"type": "string",
"description": "The color of the node on the DAG in the documentation. It must be an Hex code or a valid CSS color name.",
"type": "string",
"pattern": "^(#[a-fA-F0-9]{3}|#[a-fA-F0-9]{6}|[^#][a-zA-Z]*)$"
},
"show": {
Expand All @@ -351,8 +351,8 @@
},
"grant_access_to": {
"title": "Authorized views",
"type": "array",
"description": "Configuration, specific to BigQuery adapter, used to setup authorized views.",
"type": "array",
"items": {
"type": "object",
"properties": {
Expand All @@ -367,8 +367,8 @@
}
},
"grants": {
"type": "object",
"description": "grant config. each key is a database permission and the value is the grantee of that permission",
"type": "object",
"patternProperties": {
".*": {
"$ref": "#/$defs/string_or_array_of_strings"
Expand All @@ -380,8 +380,8 @@
"type": "string"
},
"hours_to_expiration": {
"type": "number",
"description": "Configuration specific to BigQuery adapter used to set an expiration delay (in hours) to a table."
"description": "Configuration specific to BigQuery adapter used to set an expiration delay (in hours) to a table.",
"type": "number"
},
"incremental_strategy": {
"type": "string"
Expand All @@ -394,13 +394,13 @@
"pattern": "\\{\\{.*\\}\\}"
},
"kms_key_name": {
"type": "string",
"description": "Configuration, specific to BigQuery adapter, of the KMS key name used for data encryption."
"description": "Configuration, specific to BigQuery adapter, of the KMS key name used for data encryption.",
"type": "string"
},
"label_configs": {
"title": "Label configs",
"type": "object",
"description": "Configurations specific to BigQuery adapter used to add labels and tags to tables & views created by dbt.",
"type": "object",
"patternProperties": {
"^[a-z][a-z0-9_-]{0,63}$": {
"oneOf": [
Expand Down Expand Up @@ -430,8 +430,8 @@
},
"model_configs": {
"title": "Model configs",
"type": "object",
"description": "Configurations set in the dbt_project.yml file will apply to all models that don't have a more specific configuration set.",
"type": "object",
"properties": {
"+access": {
"$ref": "#/$defs/access"
Expand Down Expand Up @@ -469,7 +469,7 @@
},
"+full_refresh": {
"$ref": "#/$defs/boolean_or_jinja_string"
},
},
"+grant_access_to": {
"$ref": "#/$defs/grant_access_to"
},
Expand Down Expand Up @@ -571,6 +571,9 @@
"file_format": {
"$ref": "#/$defs/file_format"
},
"full_refresh": {
"$ref": "#/$defs/boolean_or_jinja_string"
},
"grant_access_to": {
"$ref": "#/$defs/grant_access_to"
},
Expand Down Expand Up @@ -669,8 +672,8 @@
},
"persist_docs_config": {
"title": "Persist docs config",
"type": "object",
"description": "Configurations for the persistence of the dbt documentation.",
"type": "object",
"properties": {
"columns": {
"$ref": "#/$defs/boolean_or_jinja_string",
Expand Down Expand Up @@ -988,8 +991,7 @@
"type": "string"
},
"unit_test_configs": {
"properties" :{

"properties": {
"+meta": {
"$ref": "#/$defs/meta"
},
Expand Down Expand Up @@ -1021,4 +1023,4 @@
"type": "string"
}
}
}
}

0 comments on commit 4332c1c

Please sign in to comment.