Skip to content

Commit

Permalink
update default schema too
Browse files Browse the repository at this point in the history
  • Loading branch information
dave-connors-3 committed Oct 31, 2023
1 parent bbc73e6 commit 7231531
Showing 1 changed file with 22 additions and 31 deletions.
53 changes: 22 additions & 31 deletions schemas/dbt_yml_files.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,13 +48,7 @@
"type": "string"
},
"docs": {
"type": "object",
"required": ["show"],
"properties": {
"show": {
"type": "boolean"
}
}
"$ref": "#/$defs/docs_config"
}
}
}
Expand Down Expand Up @@ -173,12 +167,7 @@
"type": "string"
},
"docs": {
"type": "object",
"properties": {
"show": {
"type": "boolean"
}
}
"$ref": "#/$defs/docs_config"
}
},
"additionalProperties": false
Expand Down Expand Up @@ -318,12 +307,7 @@
"type": "string"
},
"docs": {
"type": "object",
"properties": {
"show": {
"type": "boolean"
}
}
"$ref": "#/$defs/docs_config"
},
"group": {
"type": "string"
Expand Down Expand Up @@ -414,12 +398,7 @@
"type": "string"
},
"docs": {
"type": "object",
"properties": {
"show": {
"type": "boolean"
}
}
"$ref": "#/$defs/docs_config"
},
"tests": {
"type": "array",
Expand Down Expand Up @@ -497,12 +476,7 @@
"type": "string"
},
"docs": {
"type": "object",
"properties": {
"show": {
"type": "boolean"
}
}
"$ref": "#/$defs/docs_config"
},
"meta": {
"type": "object"
Expand Down Expand Up @@ -743,6 +717,23 @@
}
}
},
"docs_config": {
"title": "Docs config",
"type": "object",
"description": "Configurations for the appearance of nodes in the dbt documentation.",
"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.",
"pattern": "^(#[a-fA-F0-9]{3}|#[a-fA-F0-9]{6}|[^#][a-zA-Z]*)$"
},
"show": {
"type": "boolean",
"default": true
}
},
"additionalProperties": false
},
"freshness_definition": {
"default": {
"warn_after": {
Expand Down

0 comments on commit 7231531

Please sign in to comment.