-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy path_schema.yml
More file actions
35 lines (34 loc) · 1.2 KB
/
_schema.yml
File metadata and controls
35 lines (34 loc) · 1.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
version: 2
models:
- name: dbt_template_view_model
description: "A starter dbt view model"
columns:
- name: block_number
description: "The unique block number in last 1 day"
- name: block_date
description: "The date of the block"
- name: total_tx_per_block
description: "The total number of transactions per block"
- name: dbt_template_table_model
description: "A starter dbt table model"
columns:
- name: block_number
description: "The unique block number in last 1 day"
- name: block_date
description: "The date of the block"
- name: total_tx_per_block
description: "The total number of transactions per block"
- name: dbt_template_incremental_model
description: "A starter dbt incremental model"
data_tests:
- dbt_utils.unique_combination_of_columns:
combination_of_columns:
- block_number
- block_date
columns:
- name: block_number
description: "The unique block number in last 1 day"
- name: block_date
description: "The date of the block"
- name: total_tx_per_block
description: "The total number of transactions per block"