Skip to content

Commit

Permalink
Add null value coalescing options to jsonschema for parsing
Browse files Browse the repository at this point in the history
  • Loading branch information
QMalcolm committed Sep 27, 2023
1 parent d1cb3b4 commit 744d37b
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -221,9 +221,15 @@
"alias": {
"type": "string"
},
"fill_nulls_with": {
"type": "integer"
},
"filter": {
"type": "string"
},
"join_to_timespine": {
"type": "boolean"
},
"name": {
"type": "string"
}
Expand Down
2 changes: 2 additions & 0 deletions dbt_semantic_interfaces/parsing/schemas.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,8 @@
"name": {"type": "string"},
"filter": {"type": "string"},
"alias": {"type": "string"},
"join_to_timespine": {"type": "boolean"},
"fill_nulls_with": {"type": "integer"},
},
"additionalProperties": False,
},
Expand Down

0 comments on commit 744d37b

Please sign in to comment.