Skip to content

Commit

Permalink
actually run codegen
Browse files Browse the repository at this point in the history
  • Loading branch information
joellabes committed Sep 2, 2024
1 parent eef936c commit d9dd764
Showing 1 changed file with 33 additions and 12 deletions.
45 changes: 33 additions & 12 deletions schemas/latest/dbt_yml_files-latest.json
Original file line number Diff line number Diff line change
Expand Up @@ -615,6 +615,9 @@
"title": "Label",
"type": "string"
},
"time_granularity": {
"$ref": "#/$defs/TimeGranularity"
},
"type": {
"$ref": "#/$defs/ConversionMetricType"
},
Expand All @@ -625,6 +628,7 @@
"required": [
"name",
"label",
"time_granularity",
"type",
"type_params"
],
Expand Down Expand Up @@ -744,6 +748,9 @@
"title": "Label",
"type": "string"
},
"time_granularity": {
"$ref": "#/$defs/TimeGranularity"
},
"type": {
"$ref": "#/$defs/CumulativeMetricType"
},
Expand All @@ -754,6 +761,7 @@
"required": [
"name",
"label",
"time_granularity",
"type",
"type_params"
],
Expand All @@ -774,7 +782,7 @@
"grain_to_date": {
"anyOf": [
{
"$ref": "#/$defs/GrainToDate"
"$ref": "#/$defs/TimeGranularity"
}
],
"default": "month"
Expand Down Expand Up @@ -874,6 +882,9 @@
"title": "Label",
"type": "string"
},
"time_granularity": {
"$ref": "#/$defs/TimeGranularity"
},
"type": {
"$ref": "#/$defs/DerivedMetricType"
},
Expand All @@ -884,6 +895,7 @@
"required": [
"name",
"label",
"time_granularity",
"type",
"type_params"
],
Expand Down Expand Up @@ -1251,17 +1263,6 @@
"title": "FreshnessRules",
"type": "object"
},
"GrainToDate": {
"enum": [
"day",
"week",
"month",
"quarter",
"year"
],
"title": "GrainToDate",
"type": "string"
},
"Grants": {
"additionalProperties": {
"$ref": "#/$defs/StringOrArrayOfStrings"
Expand Down Expand Up @@ -2184,6 +2185,9 @@
"title": "Label",
"type": "string"
},
"time_granularity": {
"$ref": "#/$defs/TimeGranularity"
},
"type": {
"$ref": "#/$defs/RatioMetricType"
},
Expand All @@ -2194,6 +2198,7 @@
"required": [
"name",
"label",
"time_granularity",
"type",
"type_params"
],
Expand Down Expand Up @@ -2626,6 +2631,9 @@
"title": "Label",
"type": "string"
},
"time_granularity": {
"$ref": "#/$defs/TimeGranularity"
},
"type": {
"$ref": "#/$defs/SimpleMetricType"
},
Expand All @@ -2636,6 +2644,7 @@
"required": [
"name",
"label",
"time_granularity",
"type",
"type_params"
],
Expand Down Expand Up @@ -3363,11 +3372,23 @@
},
"TimeGranularity": {
"enum": [
"NANOSECOND",
"MICROSECOND",
"MILLISECOND",
"SECOND",
"MINUTE",
"HOUR",
"DAY",
"WEEK",
"MONTH",
"QUARTER",
"YEAR",
"nanosecond",
"microsecond",
"millisecond",
"second",
"minute",
"hour",
"day",
"week",
"month",
Expand Down

0 comments on commit d9dd764

Please sign in to comment.