format files in staging

This commit is contained in:
Pablo Martin 2024-09-12 15:36:15 +02:00
parent 8fdb88afc7
commit aabb45dbd5
3 changed files with 24 additions and 26 deletions

View file

@ -195,8 +195,7 @@ models:
- unique - unique
- not_null - not_null
- name: stg_core__edeposit_user - name: stg_core__edeposit_user
description: description: "This table contains data on partner users for E-deposit,
"This table contains data on partner users for E-deposit,
their currencies and amount of protection according to the their currencies and amount of protection according to the
level given on the verification" level given on the verification"
columns: columns:
@ -216,8 +215,7 @@ models:
- name: currency - name: currency
data_type: character varying data_type: character varying
description: description: "Three-letter ISO code assigned to the currency used by user."
"Three-letter ISO code assigned to the currency used by user."
tests: tests:
- not_null - not_null
- dbt_expectations.expect_column_values_to_match_regex: - dbt_expectations.expect_column_values_to_match_regex:

View file

@ -4,7 +4,7 @@ models:
- name: stg_edeposit__verifications - name: stg_edeposit__verifications
description: description:
"Records of each transaction that happens in the edeposit API. Records are "Records of each transaction that happens in the edeposit API. Records are
mutable and can get updated." mutable and can get updated."
columns: columns:
- name: id_verification - name: id_verification
data_type: character varying data_type: character varying
@ -39,8 +39,8 @@ models:
- not_null - not_null
- accepted_values: - accepted_values:
values: values:
- 'V1' - "V1"
- 'V2' - "V2"
- name: nightly_fee_local - name: nightly_fee_local
data_type: numeric data_type: numeric

View file

@ -747,7 +747,7 @@ models:
- name: full_contact_details - name: full_contact_details
data_type: jsonb data_type: jsonb
description: | description: |
The contact related to this transaction. The contact related to this transaction.
Might be null since not all transactions have a related contact. Might be null since not all transactions have a related contact.