more work
This commit is contained in:
parent
3620401037
commit
c059599ad6
1 changed files with 43 additions and 18 deletions
|
|
@ -46,42 +46,67 @@ sources:
|
||||||
data_type: boolean
|
data_type: boolean
|
||||||
quote: True
|
quote: True
|
||||||
description: "WIP. I'm guessing this signals that the user wanted to be deleted?"
|
description: "WIP. I'm guessing this signals that the user wanted to be deleted?"
|
||||||
- name: joindate
|
tests:
|
||||||
|
- not_null
|
||||||
|
- name: JoinDate
|
||||||
data_type: timestamp without time zone
|
data_type: timestamp without time zone
|
||||||
description: ""
|
quote: True
|
||||||
- name: lastname
|
description: "Timestamp on which the user was created."
|
||||||
|
tests:
|
||||||
|
- not_null
|
||||||
|
- name: LastName
|
||||||
data_type: character varying
|
data_type: character varying
|
||||||
|
quote: True
|
||||||
description: ""
|
description: ""
|
||||||
- name: username
|
- name: UserName
|
||||||
data_type: character varying
|
data_type: character varying
|
||||||
|
quote: True
|
||||||
description: ""
|
description: ""
|
||||||
- name: firstname
|
tests:
|
||||||
|
- not_null
|
||||||
|
- name: FirstName
|
||||||
data_type: character varying
|
data_type: character varying
|
||||||
|
quote: True
|
||||||
description: ""
|
description: ""
|
||||||
- name: codeprefix
|
- name: CodePrefix
|
||||||
data_type: character varying
|
data_type: character varying
|
||||||
description: ""
|
quote: True
|
||||||
- name: billingtown
|
description: "WIP. No clue on what is this."
|
||||||
|
- name: BillingTown
|
||||||
data_type: character varying
|
data_type: character varying
|
||||||
|
quote: True
|
||||||
description: ""
|
description: ""
|
||||||
- name: companyname
|
- name: CompanyName
|
||||||
data_type: character varying
|
data_type: character varying
|
||||||
|
quote: True
|
||||||
description: ""
|
description: ""
|
||||||
- name: dateofbirth
|
- name: DateOfBirth
|
||||||
data_type: timestamp without time zone
|
data_type: timestamp without time zone
|
||||||
|
quote: True
|
||||||
description: ""
|
description: ""
|
||||||
- name: phonenumber
|
- name: PhoneNumber
|
||||||
data_type: character varying
|
data_type: character varying
|
||||||
|
quote: True
|
||||||
description: ""
|
description: ""
|
||||||
- name: passwordhash
|
- name: PasswordHash
|
||||||
data_type: character varying
|
data_type: character varying
|
||||||
|
quote: True
|
||||||
description: ""
|
description: ""
|
||||||
- name: accounttypeid
|
- name: AccountTypeId
|
||||||
data_type: bigint
|
data_type: bigint
|
||||||
|
quote: True
|
||||||
description: ""
|
description: ""
|
||||||
- name: createduserid
|
- name: CreatedUserId
|
||||||
data_type: character varying
|
data_type: character varying
|
||||||
description: ""
|
quote: True
|
||||||
|
description: |
|
||||||
|
A user can be created by another user. If this user has been created by another user, this is the UUID of the creator.
|
||||||
|
|
||||||
|
Else, this is null.
|
||||||
|
tests:
|
||||||
|
- dbt_expectations.expect_column_values_to_match_regex:
|
||||||
|
regex: "^[0-9A-Fa-f]{8}-[0-9A-Fa-f]{4}-4[0-9A-Fa-f]{3}-[89ABab][0-9A-Fa-f]{3}-[0-9A-Fa-f]{12}$"
|
||||||
|
row_condition: '"CreatedUserId" is not null'
|
||||||
- name: securitystamp
|
- name: securitystamp
|
||||||
data_type: character varying
|
data_type: character varying
|
||||||
description: ""
|
description: ""
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue