CSAT score
This commit is contained in:
parent
b31a6ba194
commit
ee2cb2e40e
6 changed files with 125 additions and 5 deletions
|
|
@ -3190,6 +3190,17 @@ models:
|
|||
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: |
|
||||
This model computes the Monthly metrics associated with Guest Journeys
|
||||
|
|
@ -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
|
||||
|
|
@ -3673,6 +3748,26 @@ models:
|
|||
dimension, and value.
|
||||
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_daily_host_resolutions
|
||||
description: |
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue