Skip to content

Commit aaa653b

Browse files
committed
more docs
1 parent bc1e50d commit aaa653b

File tree

1 file changed

+40
-0
lines changed

1 file changed

+40
-0
lines changed

models/intermediate/intermediate.yml

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,32 @@ models:
5555
- dbt_expectations.expect_column_values_to_be_between:
5656
min_value: 1
5757
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
5884
- name: day_of_year
5985
description: The day of the year
6086
tests:
@@ -69,13 +95,27 @@ models:
6995
- dbt_expectations.expect_column_values_to_be_between:
7096
min_value: 0
7197
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
72105
- name: iso_week_of_year
73106
description: The ISO week of the year
74107
tests:
75108
- not_null
76109
- dbt_expectations.expect_column_values_to_be_between:
77110
min_value: 1
78111
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
79119
- name: month_of_year
80120
description: The month of the year
81121
tests:

0 commit comments

Comments
 (0)