mirror of
https://github.com/FlipsideCrypto/stellar-models.git
synced 2026-02-06 14:16:42 +00:00
* standard prices with some customizations * . * check * tests/desc * added overview file --------- Co-authored-by: Mike Stepanovic <mike.stepanovic@flipsidecrypto.com>
21 lines
729 B
YAML
21 lines
729 B
YAML
version: 2
|
|
models:
|
|
- name: silver__trades
|
|
|
|
columns:
|
|
- name: HISTORY_OPERATION_ID
|
|
description: "{{ doc('history_operation_id') }}"
|
|
tests:
|
|
- not_null:
|
|
where: modified_timestamp > current_date - {{ var('test_days_threshold', 3) }}
|
|
- dbt_expectations.expect_column_values_to_be_in_type_list:
|
|
column_type_list:
|
|
- NUMBER
|
|
- name: '"order"'
|
|
description: "{{ doc('order') }}"
|
|
tests:
|
|
- not_null:
|
|
where: modified_timestamp > current_date - {{ var('test_days_threshold', 3) }}
|
|
- dbt_expectations.expect_column_values_to_be_in_type_list:
|
|
column_type_list:
|
|
- NUMBER |