From be3866343dbbac9b52dfbf6dd9e50858dc95724a Mon Sep 17 00:00:00 2001 From: Will Deng Date: Tue, 22 Oct 2024 14:38:00 -0400 Subject: [PATCH] added config to saved-queries --- schemas/latest/dbt_yml_files-latest.json | 62 ++++++++++++++++++++++++ 1 file changed, 62 insertions(+) diff --git a/schemas/latest/dbt_yml_files-latest.json b/schemas/latest/dbt_yml_files-latest.json index 4b4f193..a118a69 100644 --- a/schemas/latest/dbt_yml_files-latest.json +++ b/schemas/latest/dbt_yml_files-latest.json @@ -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