From 5e7504499fe89769c7dcffd2786c2f82fbfbe2ce Mon Sep 17 00:00:00 2001 From: Joaquin Ossa Date: Thu, 6 Jun 2024 12:00:07 +0200 Subject: [PATCH] Added description document for core__verification_requests --- models/reporting/core/schema.yaml | 195 ++++++++++++++++++++++++++++++ 1 file changed, 195 insertions(+) diff --git a/models/reporting/core/schema.yaml b/models/reporting/core/schema.yaml index ae0469d..5ca583c 100644 --- a/models/reporting/core/schema.yaml +++ b/models/reporting/core/schema.yaml @@ -370,3 +370,198 @@ models: probably broken and unreliable. For more details, contact pablo.martin or Lawrence. + - name: core__verification_requests + description: + This is a table that shows all guest journey from our guests users with + each record matching each guest journey. + + It holds information about the guests like name, email, phone, etc.., as + well as dates regarding the process of the guest journey like when it + was started or finished. + columns: + - name: id_verification_request + data_type: bigint + description: + Unique, incremental, internal ID for the related verification + request. + + - name: uuid_verification_request + data_type: text + description: uuid for the related verification request. + + - name: id_verification_set + data_type: bigint + description: "" + + - name: id_superhog_verified_set + data_type: bigint + description: "" + + - name: id_payment_validation_set + data_type: bigint + description: "" + + - name: id_user_guest + data_type: character varying + description: Unique, incremental, internal ID for the guest user. + + - name: id_user_host + data_type: character varying + description: Unique, incremental, internal ID for the guest user. + + - name: is_verification_request_complete + data_type: boolean + description: True if the verification request is considered + complete, AKA the guest has finished the full guest journey. + + - name: verification_url + data_type: character varying + description: "" + + - name: callback_url + data_type: character varying + description: "" + + - name: redirect_url + data_type: character varying + description: "" + + - name: logo + data_type: character varying + description: "" + + - name: guest_email + data_type: character varying + description: The email of the guest. + + - name: last_name + data_type: character varying + description: The last name of the guest. + + - name: first_name + data_type: character varying + description: The first name of the guest. + + - name: guest_phone_number + data_type: character varying + description: The phone number of the guest. + + - name: telephone_code + data_type: character varying + description: The telephone code of the guest. + + - name: guest_phone_number_2 + data_type: character varying + description: "" + + - name: verification_start_at_utc + data_type: timestamp without time zone + description: + The date and time at which the guest started the guest journey. + + - name: verification_start_date_utc + data_type: date + description: + The date on which the guest started the guest journey. + + - name: verification_end_at_utc + data_type: timestamp without time zone + description: + The date and time at which the guest finished the guest journey. + + - name: verification_end_date_utc + data_type: date + description: + The date on which the guest finished the guest journey. + + - name: link_used_at_utc + data_type: timestamp without time zone + description: + -->The date and time at which the guest used the link for the verification. + + - name: link_used_date_utc + data_type: date + description: + -->The date on which the guest used the link for the verification. + + - name: expire_at_utc + data_type: timestamp without time zone + description: + -->The date and time at which the link for the verification expires. + + - name: expire_date_utc + data_type: date + description: + -->The date on which the link for the verification expires. + + - name: is_deleted + data_type: boolean + description: | + -->True if the link for verification expired before finishing the + verification. + + - name: redirect_name + data_type: character varying + description: "" + + - name: id_one_step_link + data_type: bigint + description: "" + + - name: success_message + data_type: character varying + description: "" + + - name: summary + data_type: character varying + description: "" + + - name: rejection_reason + data_type: character varying + description: + -->Reason as to why the guest was rejected. + + - name: has_switched_to_mobile + data_type: boolean + description: | + -->True if the guest changed has switched to mobile + during the verification process. + + - name: is_verifier_rejected + data_type: boolean + description: | + -->True if the guest is rejected after verifications. + + - name: config + data_type: character varying + description: "" + + - name: metadata + data_type: character varying + description: "" + + - name: created_at_utc + data_type: timestamp without time zone + description: + -->The date and time at which the verification process was created. + + - name: created_date_utc + data_type: date + description: + -->The date on which the verification process was created. + + - name: updated_at_utc + data_type: timestamp without time zone + description: + -->The date and time at which the last update of the + process happened. + + - name: updated_date_utc + data_type: date + description: + -->The date on which the last update of the + process happened. + + - name: dwh_extracted_at_utc + data_type: timestamp with time zone + description: "" \ No newline at end of file