more fields
This commit is contained in:
parent
3dd94f8939
commit
e3030c1951
1 changed files with 7 additions and 0 deletions
|
|
@ -196,6 +196,9 @@ sources:
|
|||
- name: object
|
||||
data_type: character varying
|
||||
description: "Silly column. The value is always `charge`."
|
||||
tests:
|
||||
- dbt_expectations.expect_column_values_to_match_regex:
|
||||
regex: "^charge$"
|
||||
- name: review
|
||||
data_type: character varying
|
||||
description: "ID of the review associated with this charge if one exists."
|
||||
|
|
@ -205,6 +208,10 @@ sources:
|
|||
- name: status
|
||||
data_type: character varying
|
||||
description: "The status of the payment is either succeeded, pending, or failed."
|
||||
tests:
|
||||
- not_null
|
||||
- dbt_expectations.expect_column_values_to_be_in_set:
|
||||
value_set: ["succeeded", "pending", "failed"]
|
||||
- name: created
|
||||
data_type: bigint
|
||||
description: "{{ doc('stripe_created_desc') }}"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue