From 7f8e7489e42207495d5d550d9f97dbd4bea81cf2 Mon Sep 17 00:00:00 2001 From: Joaquin Ossa Date: Mon, 24 Feb 2025 10:48:34 +0100 Subject: [PATCH] finished schema --- models/intermediate/resolutions/schema.yml | 24 ++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/models/intermediate/resolutions/schema.yml b/models/intermediate/resolutions/schema.yml index 3be73c9..d150edd 100644 --- a/models/intermediate/resolutions/schema.yml +++ b/models/intermediate/resolutions/schema.yml @@ -336,6 +336,30 @@ models: data_type: text description: "Accommodation name." + - name: check_in_at_utc + data_type: timestamp without time zone + description: "Timestamp of the check-in date in UTC of the booking." + data_tests: + - not_null + + - name: check_in_date_utc + data_type: date + description: "Date of the check-in date in UTC of the booking." + data_tests: + - not_null + + - name: check_out_at_utc + data_type: timestamp without time zone + description: "Timestamp of the check-out date in UTC of the booking." + data_tests: + - not_null + + - name: check_out_date_utc + data_type: date + description: "Date of the check-out date in UTC of the booking." + data_tests: + - not_null + - name: id_booking data_type: numeric description: "Superhog unique booking ID"