Created address_validations in intermediate

This commit is contained in:
Joaquin Ossa 2024-08-19 11:43:54 +02:00
parent 52f42b9e9b
commit e8b76e130e
2 changed files with 92 additions and 1 deletions

View file

@ -1855,4 +1855,70 @@ models:
data_type: date
description: |
Date of the last time the information of the Host was updated
in our systems.
in our systems.
- name: int_core__address_validations
description:
"This tables contains records on address validation for Check-in Hero
purchases by guests.
The cover validation can pass or be rejected"
columns:
- name: id_address_validation
data_type: bigint
description: "Id of the address validation."
tests:
- unique
- not_null
- name: id_verification
data_type: bigint
description: "Id of the verification."
tests:
- unique
- not_null
- name: id_verification_request
data_type: bigint
description: "Id of the verification request."
tests:
- unique
- not_null
- name: id_accommodation
data_type: bigint
description: "Id of the accommodation or listing."
tests:
- not_null
- name: validation_passed
data_type: boolean
description: "Boolean to indicate if the validation was approved or not."
tests:
- accepted_values:
values:
- True
- False
- name: feature_size_meters
data_type: numeric
description: ""
- name: feature_size_meters_upper_limit
data_type: numeric
description: ""
- name: notes
data_type: character varying
description: "Notes in case there was some problem with the validation."
- name: created_at_utc
data_type: timestamp without time zone
description: "Date and time at which the validation was created."
- name: updated_at_utc
data_type: timestamp without time zone
description: "Date and time at which the validation was last updated."
- name: dwh_extracted_at_utc
data_type: timestamp with time zone
description: "Date and time at which the record was extracted from the backend into the DWH."