diff --git a/models/intermediate/core/int_core__vr_check_in_cover.sql b/models/intermediate/core/int_core__vr_check_in_cover.sql index 6047d70..a2c0aae 100644 --- a/models/intermediate/core/int_core__vr_check_in_cover.sql +++ b/models/intermediate/core/int_core__vr_check_in_cover.sql @@ -46,8 +46,8 @@ select and vr.is_verification_request_complete ) as is_awaiting_check_in, p.amount_in_txn_currency is not null as cover_was_purchased, - av.validation_passed, - av.notes, + av.validation_passed as address_validation_passed, + av.notes as address_validation_notes, ( p.amount_in_txn_currency is null and vr.is_verification_request_complete ) as cover_was_rejected, diff --git a/models/intermediate/core/schema.yaml b/models/intermediate/core/schema.yaml index 321f6f0..56a7bac 100644 --- a/models/intermediate/core/schema.yaml +++ b/models/intermediate/core/schema.yaml @@ -204,13 +204,13 @@ models: description: "Boolean to indicate if the cover was purchased by the guest or not." - - name: validation_passed + - name: address_validation_passed data_type: boolean description: "Boolean to indicate if the validation was approved or not. In case there was a problem with the validation it will be Null" - - name: notes + - name: address_validation_notes data_type: character varying description: "Notes in case there was some problem with the validation."