Skip to content

Commit

Permalink
added config to saved-queries
Browse files Browse the repository at this point in the history
  • Loading branch information
WilliamDee committed Oct 22, 2024
1 parent bffd026 commit be38663
Showing 1 changed file with 62 additions and 0 deletions.
62 changes: 62 additions & 0 deletions schemas/latest/dbt_yml_files-latest.json
Original file line number Diff line number Diff line change
Expand Up @@ -516,6 +516,68 @@
},
"additionalProperties": false
}
},
"config": {
"type": "object",
"properties": {
"enabled": {
"type": "boolean",
"default": true
},
"group": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null
},
"meta": {
"type": "object",
"propertyNames": {
"type": "string"
}
},
"export_as": {
"anyOf": [
{
"enum": [
"table",
"view"
]
},
{
"type": "null"
}
],
"default": null
},
"schema": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null
},
"cache": {
"type": "object",
"properties": {
"enabled": {
"type": "boolean",
"default": false
}
},
"additionalProperties": false
}
},
"additionalProperties": true
}
},
"additionalProperties": false
Expand Down

0 comments on commit be38663

Please sign in to comment.