Skip to content

Commit

Permalink
change jsonschema to enum
Browse files Browse the repository at this point in the history
  • Loading branch information
aranke committed Oct 18, 2024
1 parent d8b04c9 commit 418c0c9
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
2 changes: 1 addition & 1 deletion schemas/dbt/manifest/v12.json
Original file line number Diff line number Diff line change
Expand Up @@ -22628,4 +22628,4 @@
"unit_tests"
],
"$id": "https://schemas.getdbt.com/dbt/manifest/v12.json"
}
}
6 changes: 5 additions & 1 deletion schemas/dbt/run-results/v6.json
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,11 @@
"title": "TimingInfo",
"properties": {
"name": {
"type": "string"
"enum": [
"compile",
"execute",
"other"
]
},
"started_at": {
"anyOf": [
Expand Down
6 changes: 5 additions & 1 deletion schemas/dbt/sources/v3.json
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,11 @@
"title": "TimingInfo",
"properties": {
"name": {
"type": "string"
"enum": [
"compile",
"execute",
"other"
]
},
"started_at": {
"anyOf": [
Expand Down

0 comments on commit 418c0c9

Please sign in to comment.