File tree Expand file tree Collapse file tree 1 file changed +40
-0
lines changed Expand file tree Collapse file tree 1 file changed +40
-0
lines changed Original file line number Diff line number Diff line change @@ -55,6 +55,32 @@ models:
55
55
- dbt_expectations.expect_column_values_to_be_between :
56
56
min_value : 1
57
57
max_value : 31
58
+ - name : day_of_week_name_short
59
+ description : The short name of the day of the week
60
+ tests :
61
+ - not_null
62
+ - accepted_values :
63
+ values :
64
+ - Mon
65
+ - Tue
66
+ - Wed
67
+ - Thu
68
+ - Fri
69
+ - Sat
70
+ - Sun
71
+ - name : day_of_week_name
72
+ description : The name of the day of the week
73
+ tests :
74
+ - not_null
75
+ - accepted_values :
76
+ values :
77
+ - Monday
78
+ - Tuesday
79
+ - Wednesday
80
+ - Thursday
81
+ - Friday
82
+ - Saturday
83
+ - Sunday
58
84
- name : day_of_year
59
85
description : The day of the year
60
86
tests :
@@ -69,13 +95,27 @@ models:
69
95
- dbt_expectations.expect_column_values_to_be_between :
70
96
min_value : 0
71
97
max_value : 53
98
+ - name : prior_year_week_of_year
99
+ description : The week of the year in the prior year
100
+ tests :
101
+ - not_null
102
+ - dbt_expectations.expect_column_values_to_be_between :
103
+ min_value : 0
104
+ max_value : 53
72
105
- name : iso_week_of_year
73
106
description : The ISO week of the year
74
107
tests :
75
108
- not_null
76
109
- dbt_expectations.expect_column_values_to_be_between :
77
110
min_value : 1
78
111
max_value : 53
112
+ - name : prior_year_iso_week_of_year
113
+ description : The ISO week of the year in the prior year
114
+ tests :
115
+ - not_null
116
+ - dbt_expectations.expect_column_values_to_be_between :
117
+ min_value : 1
118
+ max_value : 53
79
119
- name : month_of_year
80
120
description : The month of the year
81
121
tests :
You can’t perform that action at this time.
0 commit comments