Skip to content

Commit

Permalink
NULL schemas are allowed
Browse files Browse the repository at this point in the history
  • Loading branch information
b-per authored Oct 9, 2023
1 parent 38c6d7e commit cea30f4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion schemas/1.5/dbt_project-1.5.json
Original file line number Diff line number Diff line change
Expand Up @@ -813,7 +813,7 @@
"type": "object"
},
"schema": {
"type": "string"
"type": ["string", "null"]
},
"sql_header": {
"type": "string"
Expand Down
2 changes: 1 addition & 1 deletion schemas/1.6/dbt_project-1.6.json
Original file line number Diff line number Diff line change
Expand Up @@ -781,7 +781,7 @@
"type": "object"
},
"schema": {
"type": "string"
"type": ["string", "null"]
},
"sql_header": {
"type": "string"
Expand Down
2 changes: 1 addition & 1 deletion schemas/dbt_project.json
Original file line number Diff line number Diff line change
Expand Up @@ -804,7 +804,7 @@
"enum": ["append_new_columns", "fail", "ignore", "sync_all_columns"]
},
"schema": {
"type": "string"
"type": ["string", "null"]
},
"sql_header": {
"type": "string"
Expand Down

0 comments on commit cea30f4

Please sign in to comment.