-
Notifications
You must be signed in to change notification settings - Fork 4.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Source Stripe: external account streams (#14357)
* added external account streams * fix metadata type and formatting * consolidate types to one line * fix api docs link * auto-bump connector version [ci skip] * format files Co-authored-by: Octavia Squidington III <octavia-squidington-iii@users.noreply.github.com> Co-authored-by: marcosmarxm <marcosmarxm@gmail.com>
- Loading branch information
1 parent
eca6465
commit 7b4f59b
Showing
10 changed files
with
175 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
48 changes: 48 additions & 0 deletions
48
...ations/connectors/source-stripe/source_stripe/schemas/external_account_bank_accounts.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
{ | ||
"$schema": "http://json-schema.org/draft-04/schema#", | ||
"type": "object", | ||
"properties": { | ||
"id": { | ||
"type": "string" | ||
}, | ||
"object": { | ||
"type": ["string", "null"] | ||
}, | ||
"account_holder_name": { | ||
"type": ["string", "null"] | ||
}, | ||
"account_holder_type": { | ||
"type": ["string", "null"] | ||
}, | ||
"account_type": { | ||
"type": ["string", "null"] | ||
}, | ||
"bank_name": { | ||
"type": ["string", "null"] | ||
}, | ||
"country": { | ||
"type": ["string", "null"] | ||
}, | ||
"currency": { | ||
"type": ["string", "null"] | ||
}, | ||
"fingerprint": { | ||
"type": ["string", "null"] | ||
}, | ||
"last4": { | ||
"type": ["string", "null"] | ||
}, | ||
"metadata": { | ||
"type": ["object", "null"] | ||
}, | ||
"routing_number": { | ||
"type": ["string", "null"] | ||
}, | ||
"status": { | ||
"type": ["string", "null"] | ||
}, | ||
"account": { | ||
"type": ["string", "null"] | ||
} | ||
} | ||
} |
78 changes: 78 additions & 0 deletions
78
...e-integrations/connectors/source-stripe/source_stripe/schemas/external_account_cards.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,78 @@ | ||
{ | ||
"$schema": "http://json-schema.org/draft-04/schema#", | ||
"type": "object", | ||
"properties": { | ||
"id": { | ||
"type": "string" | ||
}, | ||
"object": { | ||
"type": ["string", "null"] | ||
}, | ||
"address_city": { | ||
"type": ["string", "null"] | ||
}, | ||
"address_country": { | ||
"type": ["string", "null"] | ||
}, | ||
"address_line1": { | ||
"type": ["string", "null"] | ||
}, | ||
"address_line1_check": { | ||
"type": ["string", "null"] | ||
}, | ||
"address_line2": { | ||
"type": ["string", "null"] | ||
}, | ||
"address_state": { | ||
"type": ["string", "null"] | ||
}, | ||
"address_zip": { | ||
"type": ["string", "null"] | ||
}, | ||
"address_zip_check": { | ||
"type": ["string", "null"] | ||
}, | ||
"brand": { | ||
"type": ["string", "null"] | ||
}, | ||
"country": { | ||
"type": ["string", "null"] | ||
}, | ||
"cvc_check": { | ||
"type": ["string", "null"] | ||
}, | ||
"dynamic_last4": { | ||
"type": ["string", "null"] | ||
}, | ||
"exp_month": { | ||
"type": ["integer", "null"] | ||
}, | ||
"exp_year": { | ||
"type": ["integer", "null"] | ||
}, | ||
"fingerprint": { | ||
"type": ["string", "null"] | ||
}, | ||
"funding": { | ||
"type": ["string", "null"] | ||
}, | ||
"last4": { | ||
"type": ["string", "null"] | ||
}, | ||
"metadata": { | ||
"type": ["object", "null"] | ||
}, | ||
"name": { | ||
"type": ["string", "null"] | ||
}, | ||
"redaction": { | ||
"type": ["string", "null"] | ||
}, | ||
"tokenization_method": { | ||
"type": ["string", "null"] | ||
}, | ||
"account": { | ||
"type": ["string", "null"] | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters