CSAT score

This commit is contained in:
Joaquin 2024-11-04 16:51:24 +01:00
parent 9b0c7161e3
commit 392006b71c
6 changed files with 126 additions and 6 deletions

View file

@ -3189,6 +3189,17 @@ models:
description: |
Count of daily guest journeys completed in a given date and
per specified dimension.
- name: count_csat_score
data_type: bigint
description: |
Count of daily guest journeys with CSAT (customer satisfaction score)
in a given date and per specified dimension.
- name: average_csat_score
data_type: bigint
description: |
Average daily CSAT score in a given date and per specified dimension.
- name: int_kpis__metric_monthly_check_in_attributed_guest_journeys
description: |
@ -3324,6 +3335,26 @@ models:
tests:
- not_null
- name: count_csat_score
data_type: numeric
description: |
Count of daily guest journeys with CSAT (customer satisfaction score)
in a given date and per specified dimension.
tests:
- dbt_expectations.expect_column_values_to_be_between:
min_value: 0
strictly: false
- name: average_csat_score
data_type: numeric
description: |
Average daily CSAT score in a given date and per specified dimension.
tests:
- dbt_expectations.expect_column_values_to_be_between:
min_value: 0
max_value: 5
strictly: false
- name: int_kpis__agg_monthly_check_in_attributed_guest_journeys
description: |
This model computes the dimension aggregation for Monthly metrics associated
@ -3368,6 +3399,8 @@ models:
metric_column_name: started_guest_journeys
- assert_dimension_completeness:
metric_column_name: completed_guest_journeys
- assert_dimension_completeness:
metric_column_name: count_csat_score
- accepted_values:
values:
- global
@ -3432,6 +3465,26 @@ models:
tests:
- not_null
- name: count_csat_score
data_type: numeric
description: |
Count of daily guest journeys with CSAT (customer satisfaction score)
in a given date and per specified dimension.
tests:
- dbt_expectations.expect_column_values_to_be_between:
min_value: 0
strictly: false
- name: average_csat_score
data_type: numeric
description: |
Average daily CSAT score in a given date and per specified dimension.
tests:
- dbt_expectations.expect_column_values_to_be_between:
min_value: 0
max_value: 5
strictly: false
- name: int_kpis__metric_mtd_check_in_attributed_guest_journeys
description: |
This model computes the Month-To-Date metrics associated with Guest Journeys
@ -3566,6 +3619,26 @@ models:
tests:
- not_null
- name: count_csat_score
data_type: numeric
description: |
Count of daily guest journeys with CSAT (customer satisfaction score)
in a given date and per specified dimension.
tests:
- dbt_expectations.expect_column_values_to_be_between:
min_value: 0
strictly: false
- name: average_csat_score
data_type: numeric
description: |
Average daily CSAT score in a given date and per specified dimension.
tests:
- dbt_expectations.expect_column_values_to_be_between:
min_value: 0
max_value: 5
strictly: false
- name: int_kpis__agg_mtd_check_in_attributed_guest_journeys
description: |
This model computes the dimension aggregation for Month-To-Date metrics associated
@ -3610,6 +3683,8 @@ models:
metric_column_name: started_guest_journeys
- assert_dimension_completeness:
metric_column_name: completed_guest_journeys
- assert_dimension_completeness:
metric_column_name: count_csat_score
- accepted_values:
values:
- global
@ -3672,4 +3747,24 @@ models:
Monthly aggregated count of guest journeys completed for a given date,
dimension, and value.
tests:
- not_null
- not_null
- name: count_csat_score
data_type: numeric
description: |
Count of daily guest journeys with CSAT (customer satisfaction score)
in a given date and per specified dimension.
tests:
- dbt_expectations.expect_column_values_to_be_between:
min_value: 0
strictly: false
- name: average_csat_score
data_type: numeric
description: |
Average daily CSAT score in a given date and per specified dimension.
tests:
- dbt_expectations.expect_column_values_to_be_between:
min_value: 0
max_value: 5
strictly: false