more tests
This commit is contained in:
parent
3efcb7add7
commit
702848fb9d
1 changed files with 10 additions and 0 deletions
|
|
@ -319,9 +319,19 @@ sources:
|
||||||
- name: amount_captured
|
- name: amount_captured
|
||||||
data_type: bigint
|
data_type: bigint
|
||||||
description: "Amount in cents captured (can be less than the amount attribute on the charge if a partial capture was made)."
|
description: "Amount in cents captured (can be less than the amount attribute on the charge if a partial capture was made)."
|
||||||
|
tests:
|
||||||
|
- not_null
|
||||||
|
- dbt_expectations.expect_column_values_to_be_between:
|
||||||
|
min_value: 0
|
||||||
|
strictly: False
|
||||||
- name: amount_refunded
|
- name: amount_refunded
|
||||||
data_type: bigint
|
data_type: bigint
|
||||||
description: "Amount in cents refunded (can be less than the amount attribute on the charge if a partial refund was issued)."
|
description: "Amount in cents refunded (can be less than the amount attribute on the charge if a partial refund was issued)."
|
||||||
|
tests:
|
||||||
|
- not_null
|
||||||
|
- dbt_expectations.expect_column_values_to_be_between:
|
||||||
|
min_value: 0
|
||||||
|
strictly: False
|
||||||
- name: application_fee
|
- name: application_fee
|
||||||
data_type: character varying
|
data_type: character varying
|
||||||
description: "The application fee (if any) for the charge. See the Connect documentation for details."
|
description: "The application fee (if any) for the charge. See the Connect documentation for details."
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue