more fields

This commit is contained in:
Pablo Martin 2024-02-23 11:55:52 +01:00
parent 3dd94f8939
commit e3030c1951

View file

@ -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') }}"