Merged PR 2578: Created address_validations in intermediate
# Description Created address_validations in intermediate for check in hero # Checklist - [X] The edited models and dependants run properly with production data. - [x] The edited models are sufficiently documented. - [x] The edited models contain PK tests, and I've ran and passed them. - [x] I have checked for DRY opportunities with other models and docs. - [x] I've picked the right materialization for the affected models. # Other - [ ] Check if a full-refresh is required after this PR is merged. Related work items: #17069
This commit is contained in:
commit
8171fda345
2 changed files with 87 additions and 1 deletions
|
|
@ -1897,4 +1897,65 @@ 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."
|
||||
|
||||
- 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."
|
||||
Loading…
Add table
Add a link
Reference in a new issue