Added fees in gbp

This commit is contained in:
Joaquin Ossa 2025-01-20 15:14:57 +01:00
parent b58d165eff
commit 31e4feb593
3 changed files with 34 additions and 2 deletions

View file

@ -55,6 +55,22 @@ models:
min_value: 0
strictly: true
- name: exchange_rate_to_gbp
data_type: numeric
description: "Exchange rate used to convert the local currency to GBP."
data_tests:
- dbt_expectations.expect_column_values_to_be_between:
min_value: 0
strictly: true
- name: booking_fee_in_gbp
data_type: numeric
description: "Total fee charged to the user for the month in gbp."
data_tests:
- dbt_expectations.expect_column_values_to_be_between:
min_value: 0
strictly: true
- name: guest_last_name
data_type: text
description: Last name of the guest checking in.
@ -235,6 +251,14 @@ models:
min_value: 0
strictly: true
- name: total_fee_in_gbp
data_type: numeric
description: "Total fee charged to the user for the month in gbp."
data_tests:
- dbt_expectations.expect_column_values_to_be_between:
min_value: 0
strictly: true
- name: number_of_requests
data_type: numeric
description: "Count of requests created by the user partner for the month."