forked from FGRibreau/stripe-schema
-
Notifications
You must be signed in to change notification settings - Fork 0
/
stripe-schema.json
4889 lines (4889 loc) · 170 KB
/
stripe-schema.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
{
"name": "accounts",
"comment": "This is an object that represents a Stripe account.",
"section": "connect",
"columns": [
{
"name": "id",
"type": "varchar",
"comment": "Unique identifier for the object.",
"primary_key": true,
"visibility": "default"
},
{
"name": "business_name",
"type": "varchar",
"comment": "",
"primary_key": false,
"pii": "organization",
"visibility": "default"
},
{
"name": "business_url",
"type": "varchar",
"comment": "",
"primary_key": false,
"pii": "url",
"visibility": "default"
},
{
"name": "country",
"type": "varchar",
"comment": "The account's country.",
"primary_key": false,
"visibility": "default"
},
{
"name": "created",
"type": "timestamp",
"comment": "Time at which the object was created. Measured in seconds since the Unix epoch.",
"primary_key": false,
"visibility": "default"
},
{
"name": "debit_negative_balances",
"type": "boolean",
"comment": "",
"primary_key": false,
"visibility": "default"
},
{
"name": "default_currency",
"type": "varchar",
"comment": "Three-letter ISO currency code representing the default currency for the account. This must be a currency that [Stripe supports in the account's country](https://stripe.com/docs/payouts).",
"primary_key": false,
"visibility": "default"
},
{
"name": "details_submitted",
"type": "boolean",
"comment": "Whether account details have been submitted. Standard accounts cannot receive payouts before this is true.",
"primary_key": false,
"visibility": "default"
},
{
"name": "display_name",
"type": "varchar",
"comment": "",
"primary_key": false,
"pii": "freeform",
"visibility": "default"
},
{
"name": "email",
"type": "varchar",
"comment": "The primary user's email address.",
"primary_key": false,
"pii": "email_address",
"visibility": "default"
},
{
"name": "payout_statement_descriptor",
"type": "varchar",
"comment": "",
"primary_key": false,
"visibility": "default"
},
{
"name": "payouts_enabled",
"type": "boolean",
"comment": "Whether Stripe can send payouts to this account.",
"primary_key": false,
"visibility": "default"
},
{
"name": "charges_enabled",
"type": "boolean",
"comment": "Whether the account can create live charges.",
"primary_key": false,
"visibility": "default"
},
{
"name": "product_description",
"type": "varchar",
"comment": "",
"primary_key": false,
"visibility": "default"
},
{
"name": "statement_descriptor",
"type": "varchar",
"comment": "",
"primary_key": false,
"pii": "freeform",
"visibility": "default"
},
{
"name": "support_email",
"type": "varchar",
"comment": "",
"primary_key": false,
"pii": "email_address",
"visibility": "default"
},
{
"name": "support_phone",
"type": "varchar",
"comment": "",
"primary_key": false,
"pii": "phone_number",
"visibility": "default"
},
{
"name": "timezone",
"type": "varchar",
"comment": "",
"primary_key": false,
"visibility": "default"
},
{
"name": "type",
"type": "varchar",
"comment": "The type of the Stripe account. Can be `express` or `custom`.",
"primary_key": false,
"visibility": "default"
},
{
"name": "decline_charge_on_cvc_failure",
"type": "boolean",
"comment": "Whether Stripe automatically declines charges with an incorrect CVC. This setting only applies when a CVC is provided and it fails bank verification.",
"primary_key": false,
"visibility": "default"
},
{
"name": "decline_charge_on_avs_failure",
"type": "boolean",
"comment": "Whether Stripe automatically declines charges with an incorrect ZIP or postal code. This setting only applies when a ZIP or postal code is provided and they fail bank verification.",
"primary_key": false,
"visibility": "default"
},
{
"name": "legal_entity_business_name",
"type": "varchar",
"comment": "The company's legal name.",
"primary_key": false,
"pii": "organization",
"visibility": "default"
},
{
"name": "legal_entity_business_name_kana",
"type": "varchar",
"comment": "The Kana variation of the company's legal name (Japan only).",
"primary_key": false,
"pii": "organization",
"visibility": "default"
},
{
"name": "legal_entity_business_name_kanji",
"type": "varchar",
"comment": "The Kanji variation of the company's legal name (Japan only).",
"primary_key": false,
"pii": "organization",
"visibility": "default"
},
{
"name": "legal_entity_business_tax_id_provided",
"type": "boolean",
"comment": "Whether the business ID number of the legal entity was provided.",
"primary_key": false,
"visibility": "default"
},
{
"name": "legal_entity_business_vat_id_provided",
"type": "boolean",
"comment": "Whether the business VAT number of the legal entity was provided.",
"primary_key": false,
"visibility": "default"
},
{
"name": "legal_entity_first_name",
"type": "varchar",
"comment": "The first name of the individual responsible for the account.",
"primary_key": false,
"pii": "name",
"visibility": "default"
},
{
"name": "legal_entity_first_name_kana",
"type": "varchar",
"comment": "The Kana variation of the first name of the individual responsible for the account (Japan only).",
"primary_key": false,
"pii": "name",
"visibility": "default"
},
{
"name": "legal_entity_first_name_kanji",
"type": "varchar",
"comment": "The Kanji variation of the first name of the individual responsible for the account (Japan only).",
"primary_key": false,
"pii": "name",
"visibility": "default"
},
{
"name": "legal_entity_gender",
"type": "varchar",
"comment": "The gender of the individual responsible for the account (International regulations require either \"male\" or \"female\").",
"primary_key": false,
"visibility": "default"
},
{
"name": "legal_entity_last_name",
"type": "varchar",
"comment": "The last name of the individual responsible for the account.",
"primary_key": false,
"pii": "name",
"visibility": "default"
},
{
"name": "legal_entity_last_name_kana",
"type": "varchar",
"comment": "The Kana varation of the last name of the individual responsible for the account (Japan only).",
"primary_key": false,
"pii": "name",
"visibility": "default"
},
{
"name": "legal_entity_last_name_kanji",
"type": "varchar",
"comment": "The Kanji varation of the last name of the individual responsible for the account (Japan only).",
"primary_key": false,
"pii": "name",
"visibility": "default"
},
{
"name": "legal_entity_maiden_name",
"type": "varchar",
"comment": "The maiden name of the individual responsible for the account.",
"primary_key": false,
"pii": "name",
"visibility": "default"
},
{
"name": "legal_entity_personal_id_number_provided",
"type": "boolean",
"comment": "Whether the personal ID number of the individual responsible for the account was provided.",
"primary_key": false,
"visibility": "default"
},
{
"name": "legal_entity_phone_number",
"type": "varchar",
"comment": "The company's phone number, used for verification.",
"primary_key": false,
"pii": "phone_number",
"visibility": "default"
},
{
"name": "legal_entity_ssn_last_4_provided",
"type": "boolean",
"comment": "Whether the last 4 ssn digits of the individual responsible for the account have been provided.",
"primary_key": false,
"visibility": "default"
},
{
"name": "legal_entity_tax_id_registrar",
"type": "varchar",
"comment": "The jurisdiction in which the `business_tax_id` is registered (Germany-based companies only).",
"primary_key": false,
"pii": "location",
"visibility": "default"
},
{
"name": "legal_entity_type",
"type": "varchar",
"comment": "Either \"individual\" or \"company\", for what kind of legal entity the account owner is for.",
"primary_key": false,
"visibility": "default"
},
{
"name": "legal_entity_address_city",
"type": "varchar",
"comment": "City/District/Suburb/Town/Village.",
"primary_key": false,
"pii": "location",
"visibility": "default"
},
{
"name": "legal_entity_address_country",
"type": "varchar",
"comment": "2-letter country code.",
"primary_key": false,
"visibility": "default"
},
{
"name": "legal_entity_address_line1",
"type": "varchar",
"comment": "Address line 1 (Street address/PO Box/Company name).",
"primary_key": false,
"pii": "location",
"visibility": "default"
},
{
"name": "legal_entity_address_line2",
"type": "varchar",
"comment": "Address line 2 (Apartment/Suite/Unit/Building).",
"primary_key": false,
"pii": "location",
"visibility": "default"
},
{
"name": "legal_entity_address_postal_code",
"type": "varchar",
"comment": "ZIP or postal code.",
"primary_key": false,
"pii": "location",
"visibility": "default"
},
{
"name": "legal_entity_address_state",
"type": "varchar",
"comment": "State/County/Province/Region.",
"primary_key": false,
"pii": "location",
"visibility": "default"
},
{
"name": "legal_entity_address_kana_city",
"type": "varchar",
"comment": "City/District/Suburb/Town/Village.",
"primary_key": false,
"pii": "location",
"visibility": "default"
},
{
"name": "legal_entity_address_kana_country",
"type": "varchar",
"comment": "2-letter country code.",
"primary_key": false,
"visibility": "default"
},
{
"name": "legal_entity_address_kana_line1",
"type": "varchar",
"comment": "Address line 1 (Street address/PO Box/Company name).",
"primary_key": false,
"pii": "location",
"visibility": "default"
},
{
"name": "legal_entity_address_kana_line2",
"type": "varchar",
"comment": "Address line 2 (Apartment/Suite/Unit/Building).",
"primary_key": false,
"pii": "location",
"visibility": "default"
},
{
"name": "legal_entity_address_kana_postal_code",
"type": "varchar",
"comment": "ZIP or postal code.",
"primary_key": false,
"pii": "location",
"visibility": "default"
},
{
"name": "legal_entity_address_kana_state",
"type": "varchar",
"comment": "State/County/Province/Region.",
"primary_key": false,
"pii": "location",
"visibility": "default"
},
{
"name": "legal_entity_address_kanji_city",
"type": "varchar",
"comment": "City/District/Suburb/Town/Village.",
"primary_key": false,
"pii": "location",
"visibility": "default"
},
{
"name": "legal_entity_address_kanji_country",
"type": "varchar",
"comment": "2-letter country code.",
"primary_key": false,
"visibility": "default"
},
{
"name": "legal_entity_address_kanji_line1",
"type": "varchar",
"comment": "Address line 1 (Street address/PO Box/Company name).",
"primary_key": false,
"pii": "location",
"visibility": "default"
},
{
"name": "legal_entity_address_kanji_line2",
"type": "varchar",
"comment": "Address line 2 (Apartment/Suite/Unit/Building).",
"primary_key": false,
"pii": "location",
"visibility": "default"
},
{
"name": "legal_entity_address_kanji_postal_code",
"type": "varchar",
"comment": "ZIP or postal code.",
"primary_key": false,
"pii": "location",
"visibility": "default"
},
{
"name": "legal_entity_address_kanji_state",
"type": "varchar",
"comment": "State/County/Province/Region.",
"primary_key": false,
"pii": "location",
"visibility": "default"
},
{
"name": "legal_entity_dob_day",
"type": "bigint",
"comment": "The day of birth, between 1 and 31.",
"primary_key": false,
"pii": "dob",
"visibility": "default"
},
{
"name": "legal_entity_dob_month",
"type": "bigint",
"comment": "The month of birth, between 1 and 12.",
"primary_key": false,
"pii": "dob",
"visibility": "default"
},
{
"name": "legal_entity_dob_year",
"type": "bigint",
"comment": "The four-digit year of birth.",
"primary_key": false,
"pii": "dob",
"visibility": "default"
},
{
"name": "legal_entity_personal_address_city",
"type": "varchar",
"comment": "City/District/Suburb/Town/Village.",
"primary_key": false,
"pii": "location",
"visibility": "default"
},
{
"name": "legal_entity_personal_address_country",
"type": "varchar",
"comment": "2-letter country code.",
"primary_key": false,
"visibility": "default"
},
{
"name": "legal_entity_personal_address_line1",
"type": "varchar",
"comment": "Address line 1 (Street address/PO Box/Company name).",
"primary_key": false,
"pii": "location",
"visibility": "default"
},
{
"name": "legal_entity_personal_address_line2",
"type": "varchar",
"comment": "Address line 2 (Apartment/Suite/Unit/Building).",
"primary_key": false,
"pii": "location",
"visibility": "default"
},
{
"name": "legal_entity_personal_address_postal_code",
"type": "varchar",
"comment": "ZIP or postal code.",
"primary_key": false,
"pii": "location",
"visibility": "default"
},
{
"name": "legal_entity_personal_address_state",
"type": "varchar",
"comment": "State/County/Province/Region.",
"primary_key": false,
"pii": "location",
"visibility": "default"
},
{
"name": "legal_entity_personal_address_kana_city",
"type": "varchar",
"comment": "City/District/Suburb/Town/Village.",
"primary_key": false,
"pii": "location",
"visibility": "default"
},
{
"name": "legal_entity_personal_address_kana_country",
"type": "varchar",
"comment": "2-letter country code.",
"primary_key": false,
"visibility": "default"
},
{
"name": "legal_entity_personal_address_kana_line1",
"type": "varchar",
"comment": "Address line 1 (Street address/PO Box/Company name).",
"primary_key": false,
"pii": "location",
"visibility": "default"
},
{
"name": "legal_entity_personal_address_kana_line2",
"type": "varchar",
"comment": "Address line 2 (Apartment/Suite/Unit/Building).",
"primary_key": false,
"pii": "location",
"visibility": "default"
},
{
"name": "legal_entity_personal_address_kana_postal_code",
"type": "varchar",
"comment": "ZIP or postal code.",
"primary_key": false,
"pii": "location",
"visibility": "default"
},
{
"name": "legal_entity_personal_address_kana_state",
"type": "varchar",
"comment": "State/County/Province/Region.",
"primary_key": false,
"pii": "location",
"visibility": "default"
},
{
"name": "legal_entity_personal_address_kanji_city",
"type": "varchar",
"comment": "City/District/Suburb/Town/Village.",
"primary_key": false,
"pii": "location",
"visibility": "default"
},
{
"name": "legal_entity_personal_address_kanji_country",
"type": "varchar",
"comment": "2-letter country code.",
"primary_key": false,
"visibility": "default"
},
{
"name": "legal_entity_personal_address_kanji_line1",
"type": "varchar",
"comment": "Address line 1 (Street address/PO Box/Company name).",
"primary_key": false,
"pii": "location",
"visibility": "default"
},
{
"name": "legal_entity_personal_address_kanji_line2",
"type": "varchar",
"comment": "Address line 2 (Apartment/Suite/Unit/Building).",
"primary_key": false,
"pii": "location",
"visibility": "default"
},
{
"name": "legal_entity_personal_address_kanji_postal_code",
"type": "varchar",
"comment": "ZIP or postal code.",
"primary_key": false,
"pii": "location",
"visibility": "default"
},
{
"name": "legal_entity_personal_address_kanji_state",
"type": "varchar",
"comment": "State/County/Province/Region.",
"primary_key": false,
"pii": "location",
"visibility": "default"
},
{
"name": "legal_entity_verification_details",
"type": "varchar",
"comment": "A user-displayable string describing the verification state for the person. For example, this may say \"Provided identity information could not be verified\".",
"primary_key": false,
"visibility": "default"
},
{
"name": "legal_entity_verification_details_code",
"type": "varchar",
"comment": "",
"primary_key": false,
"visibility": "default"
},
{
"name": "legal_entity_verification_document_id",
"type": "varchar",
"comment": "",
"primary_key": false,
"visibility": "default"
},
{
"name": "legal_entity_verification_status",
"type": "varchar",
"comment": "The state of verification for the person. Possible values are `unverified`, `pending`, or `verified`.",
"primary_key": false,
"visibility": "default"
},
{
"name": "payout_schedule_delay_days",
"type": "bigint",
"comment": "The number of days charges for the account will be held before being paid out.",
"primary_key": false,
"visibility": "default"
},
{
"name": "payout_schedule_interval",
"type": "varchar",
"comment": "How frequently funds will be paid out. One of `manual` (payouts only created via API call), `daily`, `weekly`, or `monthly`.",
"primary_key": false,
"visibility": "default"
},
{
"name": "payout_schedule_monthly_anchor",
"type": "bigint",
"comment": "The day of the month funds will be paid out. Only shown if `interval` is monthly. Payouts scheduled between the 29th and 31st of the month are sent on the last day of shorter months.",
"primary_key": false,
"visibility": "default"
},
{
"name": "payout_schedule_weekly_anchor",
"type": "varchar",
"comment": "The day of the week funds will be paid out, of the style 'monday', 'tuesday', etc. Only shown if `interval` is weekly.",
"primary_key": false,
"visibility": "default"
},
{
"name": "tos_acceptance_date",
"type": "timestamp",
"comment": "The Unix timestamp marking when the Stripe Services Agreement was accepted by the account representative",
"primary_key": false,
"visibility": "default"
},
{
"name": "tos_acceptance_ip",
"type": "varchar",
"comment": "The IP address from which the Stripe Services Agreement was accepted by the account representative",
"primary_key": false,
"pii": "ip_address",
"visibility": "default"
},
{
"name": "tos_acceptance_user_agent",
"type": "varchar",
"comment": "The user agent of the browser from which the Stripe Services Agreement was accepted by the account representative",
"primary_key": false,
"visibility": "default"
},
{
"name": "verification_fields_needed",
"type": "varchar",
"comment": "",
"primary_key": false,
"visibility": "default"
},
{
"name": "verification_due_by",
"type": "timestamp",
"comment": "By what time the `fields_needed` must be provided. If this date is in the past, the account is already in bad standing, and providing `fields_needed` is necessary to re-enable payouts and prevent other consequences. If this date is in the future, `fields_needed` must be provided to ensure the account remains in good standing.",
"primary_key": false,
"visibility": "default"
},
{
"name": "verification_disabled_reason",
"type": "varchar",
"comment": "If the account is disabled, this string describes why the account can’t create charges or receive payouts. Can be `rejected.fraud`, `rejected.terms_of_service`, `rejected.listed`, `rejected.other`, `fields_needed`, `listed`, `under_review`, or `other`.",
"primary_key": false,
"visibility": "default"
}
],
"link": "https://stripe.com/docs/api#account_object",
"data_subjects": "MERCHANT",
"data_owner": "account",
"visibility": "default"
},
{
"name": "accounts_metadata",
"comment": "Additional metadata fields associated with accounts.",
"section": "connect",
"columns": [
{
"name": "account_id",
"type": "varchar",
"comment": "The ID of the account that this metadata entry is associated with.",
"primary_key": true,
"foreign_key": "accounts",
"visibility": "default"
},
{
"name": "key",
"type": "varchar",
"comment": "Name of the metadata key.",
"primary_key": true,
"pii": "freeform",
"visibility": "default"
},
{
"name": "value",
"type": "varchar",
"comment": "Value of the metadata.",
"primary_key": false,
"pii": "freeform",
"visibility": "default"
}
],
"link": "https://stripe.com/docs/api#account_object",
"data_subjects": "MERCHANT",
"data_owner": "account",
"visibility": "default"
},
{
"name": "external_account_bank_accounts",
"comment": "This is an object that represents an external bank account.",
"section": "payments",
"columns": [
{
"name": "account_id",
"type": "varchar",
"comment": "",
"primary_key": true,
"foreign_key": "accounts",
"visibility": "default"
},
{
"name": "id",
"type": "varchar",
"comment": "Unique identifier for the object.",
"primary_key": true,
"visibility": "default"
},
{
"name": "account_holder_name",
"type": "varchar",
"comment": "The name of the person or business that owns the bank account.",
"primary_key": false,
"pii": "name",
"visibility": "default"
},
{
"name": "account_holder_type",
"type": "varchar",
"comment": "The type of entity that holds the account. This can be either `individual` or `company`.",
"primary_key": false,
"visibility": "default"
},
{
"name": "bank_name",
"type": "varchar",
"comment": "Name of the bank associated with the routing number (e.g., `WELLS FARGO`).",
"primary_key": false,
"visibility": "default"
},
{
"name": "country",
"type": "varchar",
"comment": "Two-letter ISO code representing the country the bank account is located in.",
"primary_key": false,
"visibility": "default"
},
{
"name": "currency",
"type": "varchar",
"comment": "Three-letter [ISO code for the currency](https://stripe.com/docs/payouts) paid out to the bank account.",
"primary_key": false,
"visibility": "default"
},
{
"name": "default_for_currency",
"type": "boolean",
"comment": "Whether this bank account is the default external account for its currency.",
"primary_key": false,
"visibility": "default"
},
{
"name": "fingerprint",
"type": "varchar",
"comment": "Uniquely identifies this particular bank account. You can use this attribute to check whether two bank accounts are the same.",
"primary_key": false,
"visibility": "default"
},
{
"name": "last4",
"type": "varchar",
"comment": "",
"primary_key": false,
"pii": "account_number",
"visibility": "default"
},
{
"name": "routing_number",
"type": "varchar",
"comment": "The routing transit number for the bank account.",
"primary_key": false,
"visibility": "default"
},
{
"name": "status",
"type": "varchar",
"comment": "For bank accounts, possible values are `new`, `validated`, `verified`, `verification_failed`, or `errored`. A bank account that hasn't had any activity or validation performed is `new`. If Stripe can determine that the bank account exists, its status will be `validated`. Note that there often isn’t enough information to know (e.g., for smaller credit unions), and the validation is not always run. If customer bank account verification has succeeded, the bank account status will be `verified`. If the verification failed for any reason, such as microdeposit failure, the status will be `verification_failed`. If a transfer sent to this bank account fails, we'll set the status to `errored` and will not continue to send transfers until the bank details are updated.\n\nFor external accounts, possible values are `new` and `errored`. Validations aren't run against external accounts because they're only used for payouts. This means the other statuses don't apply. If a transfer fails, the status is set to `errored` and transfers are stopped until account details are updated.",
"primary_key": false,
"visibility": "default"
}
],
"data_subjects": "MERCHANT",
"data_owner": "account",
"visibility": "default"
},
{
"name": "external_account_cards",
"comment": "This is an object that represents an external account card.",
"section": "payments",
"columns": [
{
"name": "account_id",
"type": "varchar",
"comment": "",
"primary_key": true,
"foreign_key": "accounts",
"visibility": "default"
},
{
"name": "id",
"type": "varchar",
"comment": "Unique identifier for the object.",
"primary_key": true,
"visibility": "default"
},
{
"name": "address_city",
"type": "varchar",
"comment": "City/District/Suburb/Town/Village.",
"primary_key": false,
"pii": "location",
"visibility": "default"
},
{
"name": "address_country",
"type": "varchar",
"comment": "Billing address country, if provided when creating card.",
"primary_key": false,
"pii": "location",
"visibility": "default"
},
{
"name": "address_line1",
"type": "varchar",
"comment": "Address line 1 (Street address/PO Box/Company name).",
"primary_key": false,
"pii": "location",
"visibility": "default"
},
{
"name": "address_line1_check",
"type": "varchar",
"comment": "If `address_line1` was provided, results of the check: `pass`, `fail`, `unavailable`, or `unchecked`.",
"primary_key": false,
"pii": "location",
"visibility": "default"
},
{
"name": "address_line2",
"type": "varchar",
"comment": "Address line 2 (Apartment/Suite/Unit/Building).",
"primary_key": false,
"pii": "location",
"visibility": "default"
},
{
"name": "address_state",
"type": "varchar",
"comment": "State/County/Province/Region.",
"primary_key": false,
"pii": "location",
"visibility": "default"
},
{
"name": "address_zip",
"type": "varchar",
"comment": "ZIP or postal code.",
"primary_key": false,
"pii": "location",
"visibility": "default"
},
{
"name": "address_zip_check",
"type": "varchar",
"comment": "If `address_zip` was provided, results of the check: `pass`, `fail`, `unavailable`, or `unchecked`.",
"primary_key": false,
"pii": "location",
"visibility": "default"
},
{
"name": "brand",
"type": "varchar",
"comment": "Card brand. Can be `American Express`, `Diners Club`, `Discover`, `JCB`, `MasterCard`, `UnionPay`, `Visa`, or `Unknown`.",
"primary_key": false,
"visibility": "default"
},
{
"name": "country",
"type": "varchar",
"comment": "Two-letter ISO code representing the country of the card. You could use this attribute to get a sense of the international breakdown of cards you've collected.",
"primary_key": false,
"visibility": "default"
},
{
"name": "currency",
"type": "varchar",
"comment": "Three-letter [ISO code for currency](https://stripe.com/docs/payouts). Only applicable on accounts (not customers or recipients). The card can be used as a transfer destination for funds in this currency.",
"primary_key": false,
"visibility": "default"
},
{
"name": "customer_id",
"type": "varchar",
"comment": "The customer that this card belongs to. This attribute will not be in the card object if the card belongs to an account or recipient instead.",
"primary_key": false,
"foreign_key": "customers",
"visibility": "default"
},
{
"name": "cvc_check",
"type": "varchar",
"comment": "If a CVC was provided, results of the check: `pass`, `fail`, `unavailable`, or `unchecked`.",
"primary_key": false,
"visibility": "default"
},
{
"name": "default_for_currency",
"type": "boolean",
"comment": "Whether this card is the default external account for its currency.",
"primary_key": false,
"visibility": "default"
},
{
"name": "dynamic_last4",
"type": "varchar",
"comment": "(For tokenized numbers only.) The last four digits of the device account number.",
"primary_key": false,
"pii": "account_number",
"visibility": "default"
},
{
"name": "exp_month",
"type": "bigint",
"comment": "Two-digit number representing the card's expiration month.",
"primary_key": false,
"visibility": "default"
},
{
"name": "exp_year",
"type": "bigint",
"comment": "Four-digit number representing the card's expiration year.",
"primary_key": false,
"visibility": "default"
},
{
"name": "fingerprint",
"type": "varchar",
"comment": "Uniquely identifies this particular card number. You can use this attribute to check whether two customers who've signed up with you are using the same card number, for example.",
"primary_key": false,
"pii": "id_number",
"visibility": "default"
},
{
"name": "funding",