mirror of
https://github.com/FlipsideCrypto/terra-models.git
synced 2026-02-06 13:51:46 +00:00
39 lines
1.1 KiB
YAML
39 lines
1.1 KiB
YAML
version: 2
|
|
|
|
models:
|
|
- name: silver__blocks_val_array
|
|
description: |-
|
|
This table records all the blocks of Terra2 blockchain.
|
|
tests:
|
|
- dbt_utils.unique_combination_of_columns:
|
|
combination_of_columns:
|
|
- block_id
|
|
columns:
|
|
- name: BLOCK_ID
|
|
description: "{{ doc('block_id')}}"
|
|
tests:
|
|
- not_null
|
|
- dbt_expectations.expect_column_values_to_be_in_type_list:
|
|
column_type_list:
|
|
- NUMBER
|
|
- FLOAT
|
|
|
|
|
|
- name: VALIDATOR_ADDRESS_ARRAY
|
|
description: "{{ doc('validator_address_array') }}"
|
|
tests:
|
|
- not_null
|
|
- dbt_expectations.expect_column_values_to_be_in_type_list:
|
|
column_type_list:
|
|
- ARRAY
|
|
- VARIANT
|
|
- OBJECT
|
|
|
|
- name: _INSERTED_TIMESTAMP
|
|
description: "{{ doc('_inserted_timestamp')}}"
|
|
tests:
|
|
- not_null
|
|
- dbt_expectations.expect_column_values_to_be_in_type_list:
|
|
column_type_list:
|
|
- TIMESTAMP_NTZ
|