udemy-complete-dbt-bootcamp/code_thingies/dbtlearn/models/schema.yml
Pablo Martin bccbff7205 Thingies
2023-11-02 17:45:20 +01:00

27 lines
541 B
YAML

version: 2
models:
- name: dim_listings_cleansed
columns:
- name: listing_id
tests:
- unique
- not_null
- name: host_id
tests:
- not_null
- relationships:
to: ref('dim_hosts_cleansed')
field: host_id
- name: room_type
tests:
- accepted_values:
values: [
'Entire home/apt',
'Private room',
'Shared room',
'Hotel room'
]