-
Notifications
You must be signed in to change notification settings - Fork 1
/
StripeERD.graphml
3029 lines (3029 loc) · 117 KB
/
StripeERD.graphml
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
<?xml version="1.0" encoding="UTF-8"?>
<graphml xmlns="http://graphml.graphdrawing.org/xmlns" xmlns:java="http://www.yworks.com/xml/yfiles-common/1.0/java" xmlns:sys="http://www.yworks.com/xml/yfiles-common/markup/primitives/2.0" xmlns:x="http://www.yworks.com/xml/yfiles-common/markup/2.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:y="http://www.yworks.com/xml/graphml" xmlns:yed="http://www.yworks.com/xml/yed/3" xsi:schemaLocation="http://graphml.graphdrawing.org/xmlns http://www.yworks.com/xml/schema/graphml/1.1/ygraphml.xsd">
<key for="node" id="nodegraph" yfiles.type="nodegraphics"/>
<key for="edge" id="edgegraph" yfiles.type="edgegraphics"/>
<graph edgedefault="directed" id="G">
<node id="entity0">
<data key="nodegraph">
<y:GenericNode configuration="com.yworks.entityRelationship.big_entity">
<y:Geometry height="2014" width="415.24" x="2979" y="20"/>
<y:Fill color="#ECEBEC" transparent="false"/>
<y:BorderStyle color="#000000" type="line" width="1.0"/>
<y:NodeLabel alignment="center" autoSizePolicy="content" configuration="com.yworks.entityRelationship.label.name" fontFamily="Courier" fontSize="12" fontStyle="plain" hasLineColor="false" modelName="internal" modelPosition="t" backgroundColor="#ECEBEC" textColor="#FFFFFF" visible="true" horizontalTextPosition="center" iconTextGap="4" height="22" width="345" x="0" y="4">Accounts</y:NodeLabel>
<y:NodeLabel alignment="left" autoSizePolicy="content" configuration="com.yworks.entityRelationship.label.attributes" fontFamily="Courier" fontSize="12" fontStyle="plain" hasLineColor="false" modelName="custom" modelPosition="t" backgroundColor="#FFFFFF" textColor="#000000" visible="true" horizontalTextPosition="center" iconTextGap="4" height="1964" width="345" x="2" y="31.66796875">Id
BusinessType
ChargesEnabled
Country
IsController
ControllerType
Created
DefaultCurrency
DetailsSubmitted
Email
ExternalAccountsAggregate
FutureRequirementsAggregate
PayoutsEnabled
SettingsAggregate
BusinessProfileSupportEmail
BusinessProfileSupportPhone
BusinessProfileSupportAddressCity
BusinessProfileSupportAddressCountry
BusinessProfileSupportAddressLine1
BusinessProfileSupportAddressLine2
BusinessProfileSupportAddressPostalCode
BusinessProfileSupportAddressState
BusinessProfileSupportUrl
BusinessProfileProductDescription
BusinessProfileMcc
BusinessProfileMonthlyEstimatedRevenueAmount
BusinessProfileMonthlyEstimatedRevenueCurrency
BusinessProfileName
BusinessProfileUrl
TosAcceptanceDate
TosAcceptanceIp
TosAcceptanceServiceAgreement
TosAcceptanceUserAgent
TransferSchedule
Type
RequirementsAggregate
TransfersEnabled
MetadataAggregate
Capabilities
CompanyAddressCity
CompanyAddressCountry
CompanyAddressLine1
CompanyAddressLine2
CompanyAddressPostalCode
CompanyAddressState
CompanyDirectorsProvided
CompanyExecutivesProvided
CompanyExportLicenseId
CompanyExportPurposeCode
CompanyName
CompanyOwnersProvided
CompanyOwnershipDeclarationDate
CompanyOwnershipDeclarationIp
CompanyOwnershipDeclarationUserAgent
CompanyPhone
CompanyRegistrationNumber
CompanyStructure
CompanyTaxId
CompanyVatId
CompanyTaxIdProvided
CompanyTaxIdRegistrar
CompanyVatIdProvided
CompanyVerificationDocumentBack
CompanyVerificationDocumentFront
IndividualId
IndividualObject
IndividualAccount
IndividualAddressCity
IndividualAddressCountry
IndividualAddressLine1
IndividualAddressLine2
IndividualAddressPostalCode
IndividualAddressState
IndividualDOBDay
IndividualDOBMonth
IndividualDOBYear
IndividualEmail
IndividualFirstName
IndividualFullNameAliases
IndividualGender
IndividualIdNumber
IndividualIdNumberSecondary
IndividualLastName
IndividualMaidenName
IndividualMetadataAggregate
IndividualNationality
IndividualPhone
IndividualPoliticalExposure
IndividualRegisteredAddressCity
IndividualRegisteredAddressCountry
IndividualRegisteredAddressLine1
IndividualRegisteredAddressLine2
IndividualRegisteredAddressPostalCode
IndividualRegisteredAddressState
IndividualSSNLast4
IndividualVerificationAdditionalDocumentBack
IndividualVerificationAdditionalDocumentFront
IndividualVerificationDocumentBack
IndividualVerificationDocumentFront <y:LabelModel>
<y:ErdAttributesNodeLabelModel/>
</y:LabelModel>
<y:ModelParameter>
<y:ErdAttributesNodeLabelModelParameter/>
</y:ModelParameter>
</y:NodeLabel>
</y:GenericNode>
</data>
</node>
<node id="entity1">
<data key="nodegraph">
<y:GenericNode configuration="com.yworks.entityRelationship.big_entity">
<y:Geometry height="394" width="218.68" x="2114" y="6041"/>
<y:Fill color="#ECEBEC" transparent="false"/>
<y:BorderStyle color="#000000" type="line" width="1.0"/>
<y:NodeLabel alignment="center" autoSizePolicy="content" configuration="com.yworks.entityRelationship.label.name" fontFamily="Courier" fontSize="12" fontStyle="plain" hasLineColor="false" modelName="internal" modelPosition="t" backgroundColor="#ECEBEC" textColor="#FFFFFF" visible="true" horizontalTextPosition="center" iconTextGap="4" height="22" width="183" x="0" y="4">BankAccounts</y:NodeLabel>
<y:NodeLabel alignment="left" autoSizePolicy="content" configuration="com.yworks.entityRelationship.label.attributes" fontFamily="Courier" fontSize="12" fontStyle="plain" hasLineColor="false" modelName="custom" modelPosition="t" backgroundColor="#FFFFFF" textColor="#000000" visible="true" horizontalTextPosition="center" iconTextGap="4" height="324" width="183" x="2" y="31.66796875">Id
CustomerId
Account
AccountHolderName
AccountHolderType
AccountNumber
BankName
Country
Currency
DefaultForCurrency
Fingerprint
Last4
RoutingNumber
Status
AccountType
MetadataAggregate
Object
AvailablePayoutMethods <y:LabelModel>
<y:ErdAttributesNodeLabelModel/>
</y:LabelModel>
<y:ModelParameter>
<y:ErdAttributesNodeLabelModelParameter/>
</y:ModelParameter>
</y:NodeLabel>
</y:GenericNode>
</data>
</node>
<node id="entity2">
<data key="nodegraph">
<y:GenericNode configuration="com.yworks.entityRelationship.big_entity">
<y:Geometry height="654" width="218.68" x="322" y="5388"/>
<y:Fill color="#ECEBEC" transparent="false"/>
<y:BorderStyle color="#000000" type="line" width="1.0"/>
<y:NodeLabel alignment="center" autoSizePolicy="content" configuration="com.yworks.entityRelationship.label.name" fontFamily="Courier" fontSize="12" fontStyle="plain" hasLineColor="false" modelName="internal" modelPosition="t" backgroundColor="#ECEBEC" textColor="#FFFFFF" visible="true" horizontalTextPosition="center" iconTextGap="4" height="22" width="183" x="0" y="4">Cards</y:NodeLabel>
<y:NodeLabel alignment="left" autoSizePolicy="content" configuration="com.yworks.entityRelationship.label.attributes" fontFamily="Courier" fontSize="12" fontStyle="plain" hasLineColor="false" modelName="custom" modelPosition="t" backgroundColor="#FFFFFF" textColor="#000000" visible="true" horizontalTextPosition="center" iconTextGap="4" height="584" width="183" x="2" y="31.66796875">Id
CustomerId
ExpMonth
ExpYear
Currency
Account
Token
AddressCity
AddressCountry
AddressLine1
AddressLine1Check
AddressLine2
AddressState
AddressZip
AddressZipCheck
Brand
Country
CvcCheck
Cvc
DefaultForCurrency
Number
Fingerprint
Funding
Last4
Name
Recipient
TokenizationMethod
Metadata
Object
AvailablePayoutMethods
DynamicLast4 <y:LabelModel>
<y:ErdAttributesNodeLabelModel/>
</y:LabelModel>
<y:ModelParameter>
<y:ErdAttributesNodeLabelModelParameter/>
</y:ModelParameter>
</y:NodeLabel>
</y:GenericNode>
</data>
</node>
<node id="entity3">
<data key="nodegraph">
<y:GenericNode configuration="com.yworks.entityRelationship.big_entity">
<y:Geometry height="1394" width="287.64" x="1222" y="5407"/>
<y:Fill color="#ECEBEC" transparent="false"/>
<y:BorderStyle color="#000000" type="line" width="1.0"/>
<y:NodeLabel alignment="center" autoSizePolicy="content" configuration="com.yworks.entityRelationship.label.name" fontFamily="Courier" fontSize="12" fontStyle="plain" hasLineColor="false" modelName="internal" modelPosition="t" backgroundColor="#ECEBEC" textColor="#FFFFFF" visible="true" horizontalTextPosition="center" iconTextGap="4" height="22" width="239" x="0" y="4">Charges</y:NodeLabel>
<y:NodeLabel alignment="left" autoSizePolicy="content" configuration="com.yworks.entityRelationship.label.attributes" fontFamily="Courier" fontSize="12" fontStyle="plain" hasLineColor="false" modelName="custom" modelPosition="t" backgroundColor="#FFFFFF" textColor="#000000" visible="true" horizontalTextPosition="center" iconTextGap="4" height="1344" width="239" x="2" y="31.66796875">Id
Amount
Currency
CustomerId
AmountRefunded
ApplicationFee
ApplicationFeeAmount
BalanceTransaction
BillingDetailsAddressCity
BillingDetailsAddressCountry
BillingDetailsAddressLine1
BillingDetailsAddressLine2
BillingDetailsAddressPostalCode
BillingDetailsAddressState
BillingDetailsEmail
BillingDetailsName
BillingDetailsPhone
Captured
CalculatedStatementDescriptor
Created
Description
Destination
Disputed
DisputeId
FailureCode
FailureMessage
FraudDetailsStripeReport
FraudDetailsUserReport
Invoice
Livemode
MetadataAggregate
Order
OutcomeAggregate
Paid
PaymentIntent
PaymentMethod
PaymentMethodDetailsAggregate
ReceiptEmail
ReceiptNumber
ReceiptURL
Refunded
RefundsAggregate
Review
ShippingAddressCity
ShippingAddressCountry
ShippingAddressLine1
ShippingAddressLine2
ShippingAddressPostalCode
ShippingAddressState
ShippingCarrier
ShippingName
ShippingPhone
ShippingTrackingNumber
SourceAggregate
SourceTransfer
StatementDescriptor
Status
Transfer
TransferDataAmount
TransferDataDestination
TransferGroup
StatementDescriptorSuffix
Object
AmountCaptured
Application
FailureBalanceTransaction
OnBehalfOf
RadarOptionsSession <y:LabelModel>
<y:ErdAttributesNodeLabelModel/>
</y:LabelModel>
<y:ModelParameter>
<y:ErdAttributesNodeLabelModelParameter/>
</y:ModelParameter>
</y:NodeLabel>
</y:GenericNode>
</data>
</node>
<node id="entity4">
<data key="nodegraph">
<y:GenericNode configuration="com.yworks.entityRelationship.big_entity">
<y:Geometry height="1314" width="378.48" x="2605" y="5367"/>
<y:Fill color="#ECEBEC" transparent="false"/>
<y:BorderStyle color="#000000" type="line" width="1.0"/>
<y:NodeLabel alignment="center" autoSizePolicy="content" configuration="com.yworks.entityRelationship.label.name" fontFamily="Courier" fontSize="12" fontStyle="plain" hasLineColor="false" modelName="internal" modelPosition="t" backgroundColor="#ECEBEC" textColor="#FFFFFF" visible="true" horizontalTextPosition="center" iconTextGap="4" height="22" width="314" x="0" y="4">CheckoutSession</y:NodeLabel>
<y:NodeLabel alignment="left" autoSizePolicy="content" configuration="com.yworks.entityRelationship.label.attributes" fontFamily="Courier" fontSize="12" fontStyle="plain" hasLineColor="false" modelName="custom" modelPosition="t" backgroundColor="#FFFFFF" textColor="#000000" visible="true" horizontalTextPosition="center" iconTextGap="4" height="1264" width="314" x="2" y="31.66796875">Id
AfterExpirationRecoveryAllowPromotionCodes
AfterExpirationRecoveryEnabled
AfterExpirationRecoveryExpiresAt
AfterExpirationRecoveryUrl
AllowPromotionCodes
AmountSubtotal
AmountTotal
AutomaticTaxEnabled
AutomaticTaxStatus
BillingAddressCollection
CancelUrl
ClientReferenceId
ClientSecret
ConsentPromotions
ConsentTermsOfService
ConsentCollection
Created
Currency
CurrencyConversion
CustomFields
CustomTextAfterSubmitMessage
CustomTextShippingAddressMessage
CustomTextSubmitMessage
CustomTextTermsOfAcceptanceMessage
CustomerId
CustomerCreation
CustomerDetailsAddress
CustomerDetailsEmail
CustomerDetailsName
CustomerDetailsPhone
CustomerDetailsTaxExempt
CustomerDetailsTaxIds
CustomerEmail
ExpiresAt
InvoiceId
InvoiceCreation
Livemode
Locale
Metadata
Mode
Object
PaymentIntentId
PaymentLinkId
PaymentMethodCollection
PaymentMethodTypes
PaymentStatus
PhoneNumberCollectionEnabled
RecoveredFrom
Redaction
SetupIntent
ShippingAddressCollectionAllowedCountries
ShippingCost
ShippingDetails
ShippingOptions
Status
SubmitType
SubscriptionId
SuccessUrl
TotalDetails
UiMode
Url
ReturnUrl
LineItemsAggregate <y:LabelModel>
<y:ErdAttributesNodeLabelModel/>
</y:LabelModel>
<y:ModelParameter>
<y:ErdAttributesNodeLabelModelParameter/>
</y:ModelParameter>
</y:NodeLabel>
</y:GenericNode>
</data>
</node>
<node id="entity5">
<data key="nodegraph">
<y:GenericNode configuration="com.yworks.entityRelationship.big_entity">
<y:Geometry height="354" width="160.0" x="3283" y="4657"/>
<y:Fill color="#ECEBEC" transparent="false"/>
<y:BorderStyle color="#000000" type="line" width="1.0"/>
<y:NodeLabel alignment="center" autoSizePolicy="content" configuration="com.yworks.entityRelationship.label.name" fontFamily="Courier" fontSize="12" fontStyle="plain" hasLineColor="false" modelName="internal" modelPosition="t" backgroundColor="#ECEBEC" textColor="#FFFFFF" visible="true" horizontalTextPosition="center" iconTextGap="4" height="22" width="156" x="0" y="4">Coupons</y:NodeLabel>
<y:NodeLabel alignment="left" autoSizePolicy="content" configuration="com.yworks.entityRelationship.label.attributes" fontFamily="Courier" fontSize="12" fontStyle="plain" hasLineColor="false" modelName="custom" modelPosition="t" backgroundColor="#FFFFFF" textColor="#000000" visible="true" horizontalTextPosition="center" iconTextGap="4" height="304" width="156" x="2" y="31.66796875">Id
CreatedAt
Currency
Duration
DurationInMonths
AmountOff
PercentOff
Valid
MaxRedemptions
RedeemBy
MetadataAggregate
TimesRedeemed
Object
AppliesTo
Livemode
Name <y:LabelModel>
<y:ErdAttributesNodeLabelModel/>
</y:LabelModel>
<y:ModelParameter>
<y:ErdAttributesNodeLabelModelParameter/>
</y:ModelParameter>
</y:NodeLabel>
</y:GenericNode>
</data>
</node>
<node id="entity6">
<data key="nodegraph">
<y:GenericNode configuration="com.yworks.entityRelationship.big_entity">
<y:Geometry height="594" width="253.44" x="3806" y="5382"/>
<y:Fill color="#ECEBEC" transparent="false"/>
<y:BorderStyle color="#000000" type="line" width="1.0"/>
<y:NodeLabel alignment="center" autoSizePolicy="content" configuration="com.yworks.entityRelationship.label.name" fontFamily="Courier" fontSize="12" fontStyle="plain" hasLineColor="false" modelName="internal" modelPosition="t" backgroundColor="#ECEBEC" textColor="#FFFFFF" visible="true" horizontalTextPosition="center" iconTextGap="4" height="22" width="212" x="0" y="4">CreditNotes</y:NodeLabel>
<y:NodeLabel alignment="left" autoSizePolicy="content" configuration="com.yworks.entityRelationship.label.attributes" fontFamily="Courier" fontSize="12" fontStyle="plain" hasLineColor="false" modelName="custom" modelPosition="t" backgroundColor="#FFFFFF" textColor="#000000" visible="true" horizontalTextPosition="center" iconTextGap="4" height="544" width="212" x="2" y="31.66796875">Id
Amount
AmountShipping
Created
Currency
CustomerId
CustomerBalanceTransaction
DiscountAmounts
EffectiveAt
InvoiceId
Lines
Livemode
Memo
Metadata
Number
OutOfBandAmount
Pdf
Reason
Refund
ShippingCost
Status
Subtotal
SubtotalExcludingTax
TaxAmounts
Total
TotalExcludingTax
Type
VoidedAt <y:LabelModel>
<y:ErdAttributesNodeLabelModel/>
</y:LabelModel>
<y:ModelParameter>
<y:ErdAttributesNodeLabelModelParameter/>
</y:ModelParameter>
</y:NodeLabel>
</y:GenericNode>
</data>
</node>
<node id="entity7">
<data key="nodegraph">
<y:GenericNode configuration="com.yworks.entityRelationship.big_entity">
<y:Geometry height="1094" width="328.84" x="4328" y="2314"/>
<y:Fill color="#ECEBEC" transparent="false"/>
<y:BorderStyle color="#000000" type="line" width="1.0"/>
<y:NodeLabel alignment="center" autoSizePolicy="content" configuration="com.yworks.entityRelationship.label.name" fontFamily="Courier" fontSize="12" fontStyle="plain" hasLineColor="false" modelName="internal" modelPosition="t" backgroundColor="#ECEBEC" textColor="#FFFFFF" visible="true" horizontalTextPosition="center" iconTextGap="4" height="22" width="273" x="0" y="4">Customers</y:NodeLabel>
<y:NodeLabel alignment="left" autoSizePolicy="content" configuration="com.yworks.entityRelationship.label.attributes" fontFamily="Courier" fontSize="12" fontStyle="plain" hasLineColor="false" modelName="custom" modelPosition="t" backgroundColor="#FFFFFF" textColor="#000000" visible="true" horizontalTextPosition="center" iconTextGap="4" height="1044" width="273" x="2" y="31.66796875">Id
AddressAggregate
Balance
Created
Currency
DefaultSource
Delinquent
CouponId
Description
Email
Livemode
MetadataAggregate
Name
Phone
ShippingAggregate
TaxExempt
InvoicePrefix
NextInvoiceSequence
TestClock
PreferredLocales
InvoiceSettingsCustomFieldsAggregate
InvoiceSettingsDefaultPaymentMethod
InvoiceSettingsFooter
TaxIdsAggregate
DiscountId
DiscountCheckoutSession
DiscountCustomer
DiscountStart
DiscountEnd
DiscountInvoice
DiscountInvoiceItem
DiscountPromotionCode
DiscountSubscription
DiscountCouponCreatedAt
DiscountCouponCurrency
DiscountCouponName
DiscountCouponDuration
DiscountCouponDurationInMonths
DiscountCouponAmountOff
DiscountCouponPercentOff
DiscountCouponValid
DiscountCouponMaxRedemptions
DiscountCouponRedeemBy
DiscountCouponTimesRedeemed
DiscountCouponObject
DiscountCouponLiveMode
DiscountCouponMetadataAggregate
SourcesAggregate
TaxAutomaticTax
TaxIPAddress
TaxCountry
TaxState
TaxSource <y:LabelModel>
<y:ErdAttributesNodeLabelModel/>
</y:LabelModel>
<y:ModelParameter>
<y:ErdAttributesNodeLabelModelParameter/>
</y:ModelParameter>
</y:NodeLabel>
</y:GenericNode>
</data>
</node>
<node id="entity8">
<data key="nodegraph">
<y:GenericNode configuration="com.yworks.entityRelationship.big_entity">
<y:Geometry height="954" width="339.84" x="5544" y="5318"/>
<y:Fill color="#ECEBEC" transparent="false"/>
<y:BorderStyle color="#000000" type="line" width="1.0"/>
<y:NodeLabel alignment="center" autoSizePolicy="content" configuration="com.yworks.entityRelationship.label.name" fontFamily="Courier" fontSize="12" fontStyle="plain" hasLineColor="false" modelName="internal" modelPosition="t" backgroundColor="#ECEBEC" textColor="#FFFFFF" visible="true" horizontalTextPosition="center" iconTextGap="4" height="22" width="284" x="0" y="4">Disputes</y:NodeLabel>
<y:NodeLabel alignment="left" autoSizePolicy="content" configuration="com.yworks.entityRelationship.label.attributes" fontFamily="Courier" fontSize="12" fontStyle="plain" hasLineColor="false" modelName="custom" modelPosition="t" backgroundColor="#FFFFFF" textColor="#000000" visible="true" horizontalTextPosition="center" iconTextGap="4" height="904" width="284" x="2" y="31.66796875">Id
Currency
EvidenceAccessActivityLog
EvidenceBillingAddress
EvidenceCancellationPolicy
EvidenceCancellationPolicyDisclosure
EvidenceCancellationRebuttal
EvidenceCustomerCommunication
EvidenceCustomerEmailAddress
EvidenceCustomerName
EvidenceCustomerPurchaseIp
EvidenceCustomerSignature
EvidenceDuplicateChargeDocumentation
EvidenceDuplicateChargeExplanation
EvidenceDuplicateChargeId
EvidenceProductDescription
EvidenceReceipt
EvidenceRefundPolicy
EvidenceRefundPolicyDisclosure
EvidenceRefundRefusalExplanation
EvidenceServiceDate
EvidenceServiceDocumentation
EvidenceShippingAddress
EvidenceShippingCarrier
EvidenceShippingDate
EvidenceShippingDocumentation
EvidenceShippingTrackingNumber
EvidenceUncategorizedFile
EvidenceUncategorizedText
EvidenceDetailsDueBy
EvidenceDetailsHasEvidence
EvidenceDetailsPastDue
EvidenceDetailsSubmissionCount
Amount
BalanceTransactionsAggregate
Charge
Created
IsChargeRefundable
Livemode
Reason
Status
MetadataAggregate
Transaction
Object
PaymentIntent
PaymentMethodDetails <y:LabelModel>
<y:ErdAttributesNodeLabelModel/>
</y:LabelModel>
<y:ModelParameter>
<y:ErdAttributesNodeLabelModelParameter/>
</y:ModelParameter>
</y:NodeLabel>
</y:GenericNode>
</data>
</node>
<node id="entity9">
<data key="nodegraph">
<y:GenericNode configuration="com.yworks.entityRelationship.big_entity">
<y:Geometry height="534" width="188.92" x="5383" y="3421"/>
<y:Fill color="#ECEBEC" transparent="false"/>
<y:BorderStyle color="#000000" type="line" width="1.0"/>
<y:NodeLabel alignment="center" autoSizePolicy="content" configuration="com.yworks.entityRelationship.label.name" fontFamily="Courier" fontSize="12" fontStyle="plain" hasLineColor="false" modelName="internal" modelPosition="t" backgroundColor="#ECEBEC" textColor="#FFFFFF" visible="true" horizontalTextPosition="center" iconTextGap="4" height="22" width="159" x="0" y="4">InvoiceItems</y:NodeLabel>
<y:NodeLabel alignment="left" autoSizePolicy="content" configuration="com.yworks.entityRelationship.label.attributes" fontFamily="Courier" fontSize="12" fontStyle="plain" hasLineColor="false" modelName="custom" modelPosition="t" backgroundColor="#FFFFFF" textColor="#000000" visible="true" horizontalTextPosition="center" iconTextGap="4" height="484" width="159" x="2" y="31.66796875">Id
InvoiceId
Amount
Customer
Currency
Date
Description
Discountable
LiveMode
PeriodStart
PeriodEnd
PlanId
PlanAggregate
PriceId
PriceAggregate
Proration
Quantity
Subscription
SubscriptionItems
TestClock
UnitAmount
UnitAmountDecimal
MetadataAggregate
DiscountsAggregate
TaxRatesAggregate <y:LabelModel>
<y:ErdAttributesNodeLabelModel/>
</y:LabelModel>
<y:ModelParameter>
<y:ErdAttributesNodeLabelModelParameter/>
</y:ModelParameter>
</y:NodeLabel>
</y:GenericNode>
</data>
</node>
<node id="entity10">
<data key="nodegraph">
<y:GenericNode configuration="com.yworks.entityRelationship.big_entity">
<y:Geometry height="1614" width="335.72" x="6256" y="2008"/>
<y:Fill color="#ECEBEC" transparent="false"/>
<y:BorderStyle color="#000000" type="line" width="1.0"/>
<y:NodeLabel alignment="center" autoSizePolicy="content" configuration="com.yworks.entityRelationship.label.name" fontFamily="Courier" fontSize="12" fontStyle="plain" hasLineColor="false" modelName="internal" modelPosition="t" backgroundColor="#ECEBEC" textColor="#FFFFFF" visible="true" horizontalTextPosition="center" iconTextGap="4" height="22" width="277" x="0" y="4">Invoices</y:NodeLabel>
<y:NodeLabel alignment="left" autoSizePolicy="content" configuration="com.yworks.entityRelationship.label.attributes" fontFamily="Courier" fontSize="12" fontStyle="plain" hasLineColor="false" modelName="custom" modelPosition="t" backgroundColor="#FFFFFF" textColor="#000000" visible="true" horizontalTextPosition="center" iconTextGap="4" height="1564" width="277" x="2" y="31.66796875">Id
CustomerId
AccountCountry
AccountName
AccountTaxRates
AmountDue
AmountPaid
AmountRemaining
Application
ApplicationFeeAmount
AttemptCount
Attempted
AutomaticTaxEnabled
AutomaticTaxStatus
BillingReason
CollectionMethod
Charge
AutoAdvance
Currency
Created
Description
DefaultPaymentMethod
DefaultSource
DefaultTaxRates
DiscountName
DiscountAmount
CouponId
Discounts
DueDate
EndingBalance
InvoicePdf
Footer
LastFinalizationError
HostedInvoiceUrl
Livemode
MetadataAggregate
CustomFieldsAggregate
NextPaymentAttempt
Number
OnBehalfOf
Paid
PaidOutOfBand
PaymentIntent
PaymentMethodOptions
PaymentMethodTypes
PostPaymentCreditNotesAmount
PrePaymentCreditNotesAmount
Quote
PeriodEnd
PeriodStart
ReceiptNumber
StartingBalance
StatementDescriptor
Status
Subscription
StatusTransitionsFinalizedAt
StatusTransitionsMarkedUncollectibleAt
StatusTransitionsPaidAt
StatusTransitionsVoidedAt
Subtotal
Tax
TestClock
Total
TotalDiscountAmounts
TotalTaxAmounts
TransferDataAmount
TransferDataDestination
WebhooksDeliveredAt
AmountShipping
ShippingDetails
ShippingCost
CustomerAddress
CustomerEmail
CustomerName
CustomerPhone
CustomerShipping
CustomerTaxExempt
CustomerTaxIds
EffectiveAt <y:LabelModel>
<y:ErdAttributesNodeLabelModel/>
</y:LabelModel>
<y:ModelParameter>
<y:ErdAttributesNodeLabelModelParameter/>
</y:ModelParameter>
</y:NodeLabel>
</y:GenericNode>
</data>
</node>
<node id="entity11">
<data key="nodegraph">
<y:GenericNode configuration="com.yworks.entityRelationship.big_entity">
<y:Geometry height="1234" width="357.15999999999997" x="6979" y="5285"/>
<y:Fill color="#ECEBEC" transparent="false"/>
<y:BorderStyle color="#000000" type="line" width="1.0"/>
<y:NodeLabel alignment="center" autoSizePolicy="content" configuration="com.yworks.entityRelationship.label.name" fontFamily="Courier" fontSize="12" fontStyle="plain" hasLineColor="false" modelName="internal" modelPosition="t" backgroundColor="#ECEBEC" textColor="#FFFFFF" visible="true" horizontalTextPosition="center" iconTextGap="4" height="22" width="297" x="0" y="4">PaymentIntent</y:NodeLabel>
<y:NodeLabel alignment="left" autoSizePolicy="content" configuration="com.yworks.entityRelationship.label.attributes" fontFamily="Courier" fontSize="12" fontStyle="plain" hasLineColor="false" modelName="custom" modelPosition="t" backgroundColor="#FFFFFF" textColor="#000000" visible="true" horizontalTextPosition="center" iconTextGap="4" height="1184" width="297" x="2" y="31.66796875">Id
Amount
AmountDetailsTip
AmountCapturable
AmountReceived
ApplicationFeeAmount
AutomaticPaymentMethodsEnabled
AutomaticPaymentMethodsAllowRedirects
CanceledAt
CancellationReason
CaptureMethod
ClientSecret
ConfirmationMethod
Created
Currency
Application
Customer
LatestCharge
PaymentMethod
TransferDataDestination
OnBehalfOf
Invoice
Review
Description
LastPaymentErrorCharge
LastPaymentErrorCode
LastPaymentErrorDeclineCode
LastPaymentErrorDocURL
LastPaymentErrorMessage
LastPaymentErrorParam
LastPaymentErrorPaymentMethod
LastPaymentErrorPaymentMethodType
LastPaymentErrorType
LiveMode
NextAction
Object
PaymentMethodOptions
PaymentMethodTypes
PaymentMethodConfigurationDetailsId
PaymentMethodConfigurationDetailsParent
ProcessingCard
ProcessingType
ReceiptEmail
MetadataAggregate
SetupFutureUsage
ShippingAddressCity
ShippingAddressCountry
ShippingAddressline1
ShippingAddressline2
ShippingAddressPostalCode
ShippingAddressState
ShippingCarrier
ShippingName
ShippingPhone
ShippingTrackingNumber
StatementDescriptor
StatementDescriptorSuffix
Status
TransferDataAmount
TransferGroup <y:LabelModel>
<y:ErdAttributesNodeLabelModel/>
</y:LabelModel>
<y:ModelParameter>
<y:ErdAttributesNodeLabelModelParameter/>
</y:ModelParameter>
</y:NodeLabel>
</y:GenericNode>
</data>
</node>
<node id="entity12">
<data key="nodegraph">
<y:GenericNode configuration="com.yworks.entityRelationship.big_entity">
<y:Geometry height="814" width="484.32" x="2222" y="3352"/>
<y:Fill color="#ECEBEC" transparent="false"/>
<y:BorderStyle color="#000000" type="line" width="1.0"/>
<y:NodeLabel alignment="center" autoSizePolicy="content" configuration="com.yworks.entityRelationship.label.name" fontFamily="Courier" fontSize="12" fontStyle="plain" hasLineColor="false" modelName="internal" modelPosition="t" backgroundColor="#ECEBEC" textColor="#FFFFFF" visible="true" horizontalTextPosition="center" iconTextGap="4" height="22" width="404" x="0" y="4">PaymentLinks</y:NodeLabel>
<y:NodeLabel alignment="left" autoSizePolicy="content" configuration="com.yworks.entityRelationship.label.attributes" fontFamily="Courier" fontSize="12" fontStyle="plain" hasLineColor="false" modelName="custom" modelPosition="t" backgroundColor="#FFFFFF" textColor="#000000" visible="true" horizontalTextPosition="center" iconTextGap="4" height="764" width="404" x="2" y="31.66796875">Id
Active
AfterCompletionHostedConfirmationCustomMessage
AfterCompletionType
AfterCompletionRedirectURL
AllowPromotionCodes
ApplicationFeeAmount
ApplicationFeePercent
AutomaticTaxEnabled
BillingAddressCollection
ConsentCollectionPromotions
ConsentCollectionTermsOfService
ConsentCollectionPaymentMethodResuseAgreementPosition
Currency
CustomTextShippingAddressMessage
CustomTextSubmitMessage
CustomTextAfterSubmitMessage
CustomTextTermsOfServiceAcceptanceMessage
CustomerCreation
Livemode
Object
OnBehalfOf
MetadataAggregate
PaymentIntentDataCaptureMethod
PaymentIntentDataSetupFutureUsage
PaymentMethodCollection
PaymentMethodTypes
PhoneNumberberCollectionEnabled
ShippingAddressCollectionAllowedCountries
ShippingOptions
SubmitType
SubscriptionDataDescription
SubscriptionDataTrialPeriodDays
TaxIdCollectionEnabled
TransferDataDestination
TransferDataAmount
Url
LineItems
CustomFieldsAggregate <y:LabelModel>
<y:ErdAttributesNodeLabelModel/>
</y:LabelModel>
<y:ModelParameter>
<y:ErdAttributesNodeLabelModelParameter/>
</y:ModelParameter>
</y:NodeLabel>
</y:GenericNode>
</data>
</node>
<node id="entity13">
<data key="nodegraph">
<y:GenericNode configuration="com.yworks.entityRelationship.big_entity">
<y:Geometry height="1814" width="372.6" x="7554" y="4557"/>
<y:Fill color="#ECEBEC" transparent="false"/>
<y:BorderStyle color="#000000" type="line" width="1.0"/>
<y:NodeLabel alignment="center" autoSizePolicy="content" configuration="com.yworks.entityRelationship.label.name" fontFamily="Courier" fontSize="12" fontStyle="plain" hasLineColor="false" modelName="internal" modelPosition="t" backgroundColor="#ECEBEC" textColor="#FFFFFF" visible="true" horizontalTextPosition="center" iconTextGap="4" height="22" width="311" x="0" y="4">PaymentMethods</y:NodeLabel>
<y:NodeLabel alignment="left" autoSizePolicy="content" configuration="com.yworks.entityRelationship.label.attributes" fontFamily="Courier" fontSize="12" fontStyle="plain" hasLineColor="false" modelName="custom" modelPosition="t" backgroundColor="#FFFFFF" textColor="#000000" visible="true" horizontalTextPosition="center" iconTextGap="4" height="1764" width="311" x="2" y="31.66796875">Id
CustomerId
BillingDetailsAddressCity
BillingDetailsAddressCountry
BillingDetailsAddressLine1
BillingDetailsAddressLine2
BillingDetailsAddressPostalCode
BillingDetailsAddressState
BillingDetailsEmail
BillingDetailsName
BillingDetailsPhone
MetadataAggregate
Type
Object
AcssDebitBankName
AcssDebitFingerprint
AcssDebitInstitutionNumber
AcssDebitLast4
AcssDebitTransitNumber
Affirm
AfterpayClearpay
Alipay
AuBecsDebitBsbNumber
AuBecsDebitFingerprint
AuBecsDebitLast4
BacsDebitSortCode
BacsDebitLast4
BacsDebitFingerprint
Bancontact
Blik
CardBrand
CardChecksAddressLine1Check
CardChecksAddressPostalCodeCheck
CardChecksCvcCheck
CardCountry
CardExpMonth
CardExpYear
CardFingerprint
CardFunding
CardGeneratedFrom
CardLast4
CardNetworksAvailable
CardNetworksPreferred
CardThreeDSecureUsageSupported
CardWallet
CashAppBuyerId
CashAppCashTag
CustomerBalance
EpsBank
FpxAccountHolderType
FpxBank
GIROPAY
Grabpay
IdealBank
IdealBic
Konbini
Link
Oxxo
P24Bank
Paynow
Paypal
Pix
Promptpay
RevolutPay
SepaDebitBankCode
SepaDebitBranchCode
SepaDebitCountry
SepaDebitFingerprint
SepaDebitGeneratedFromCharge
SepaDebitGeneratedFromSetupAttempt
SepaDebitLast4
SofortCountry
UsBankAccountAccountHolderType
UsBankAccountAccountType
UsBankAccountBankName
UsBankAccountFinancialConnectionsAccount
UsBankAccountFingerprint
UsBankAccountLast4
UsBankAccountNetworksPreferred
UsBankAccountNetworksSupported
UsBankAccountRoutingNumber
UsBankAccountStatusDetails
WechatPay
Zip
Created
Livemode
PaypalPayerId
PaypalPayerEmail
RadarOptionsSession <y:LabelModel>
<y:ErdAttributesNodeLabelModel/>
</y:LabelModel>
<y:ModelParameter>
<y:ErdAttributesNodeLabelModelParameter/>
</y:ModelParameter>
</y:NodeLabel>
</y:GenericNode>
</data>
</node>
<node id="entity14">
<data key="nodegraph">
<y:GenericNode configuration="com.yworks.entityRelationship.big_entity">
<y:Geometry height="494" width="233.0" x="1855" y="285"/>
<y:Fill color="#ECEBEC" transparent="false"/>
<y:BorderStyle color="#000000" type="line" width="1.0"/>
<y:NodeLabel alignment="center" autoSizePolicy="content" configuration="com.yworks.entityRelationship.label.name" fontFamily="Courier" fontSize="12" fontStyle="plain" hasLineColor="false" modelName="internal" modelPosition="t" backgroundColor="#ECEBEC" textColor="#FFFFFF" visible="true" horizontalTextPosition="center" iconTextGap="4" height="22" width="193" x="0" y="4">Payouts</y:NodeLabel>
<y:NodeLabel alignment="left" autoSizePolicy="content" configuration="com.yworks.entityRelationship.label.attributes" fontFamily="Courier" fontSize="12" fontStyle="plain" hasLineColor="false" modelName="custom" modelPosition="t" backgroundColor="#FFFFFF" textColor="#000000" visible="true" horizontalTextPosition="center" iconTextGap="4" height="444" width="193" x="2" y="31.66796875">Id
Object
Amount
ArrivalDate
BalanceTransaction
Created
Currency
Description
Destination
FailureBalanceTransaction
FailureCode
FailureMessage
Metadata
Method
SourceType
StatementDescriptor
Status
Type
Automatic
Livemode
OriginalPayout
ReversedBy
ReconciliationStatus <y:LabelModel>
<y:ErdAttributesNodeLabelModel/>
</y:LabelModel>
<y:ModelParameter>
<y:ErdAttributesNodeLabelModelParameter/>
</y:ModelParameter>
</y:NodeLabel>
</y:GenericNode>
</data>
</node>
<node id="entity15">
<data key="nodegraph">
<y:GenericNode configuration="com.yworks.entityRelationship.big_entity">
<y:Geometry height="1314" width="372.04" x="1630" y="5375"/>
<y:Fill color="#ECEBEC" transparent="false"/>
<y:BorderStyle color="#000000" type="line" width="1.0"/>
<y:NodeLabel alignment="center" autoSizePolicy="content" configuration="com.yworks.entityRelationship.label.name" fontFamily="Courier" fontSize="12" fontStyle="plain" hasLineColor="false" modelName="internal" modelPosition="t" backgroundColor="#ECEBEC" textColor="#FFFFFF" visible="true" horizontalTextPosition="center" iconTextGap="4" height="22" width="309" x="0" y="4">Persons</y:NodeLabel>
<y:NodeLabel alignment="left" autoSizePolicy="content" configuration="com.yworks.entityRelationship.label.attributes" fontFamily="Courier" fontSize="12" fontStyle="plain" hasLineColor="false" modelName="custom" modelPosition="t" backgroundColor="#FFFFFF" textColor="#000000" visible="true" horizontalTextPosition="center" iconTextGap="4" height="1244" width="309" x="2" y="31.66796875">Id
Account
Created
DobDay
DobMonth
DobYear
Email
FirstName
LastName
MaidenName