data-dwh-dbt-project/models/intermediate/_int_models.yml

24 lines
679 B
YAML
Raw Normal View History

2024-02-01 16:46:41 +01:00
version: 2
models:
- name: int_core__deal_id_master_list
description: "The distinct list of Deal Ids present in Core, along with the count of Accounts related to it."
columns:
- name: id_deal
description: "The Deal Id."
tests:
- unique
- not_null
- name: users_with_this_id_deal
description: "The count of Superhog accounts that have this Deal Id assigned."
2024-02-01 16:51:41 +01:00
- name: int_core__unified_user
description: "Data for all users after merging User and SuperhogUser."
columns:
- name: id_user
description: "The primary key for this table"
tests:
- unique
- not_null
2024-02-01 16:46:41 +01:00