-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathopenapi.yaml
More file actions
920 lines (920 loc) · 23.2 KB
/
openapi.yaml
File metadata and controls
920 lines (920 loc) · 23.2 KB
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
openapi: 3.0.2
info:
contact:
url: https://github.com/moov-io/metro2
description: Moov Metro2 ([Automated Clearing House](https://en.wikipedia.org/wiki/Automated_Clearing_House))
implements an HTTP API for creating, parsing and validating Metro2 files. Metro2
is an open-source consumer credit history report for credit report file creation
and validation.
license:
name: Apache 2.0
url: http://www.apache.org/licenses/LICENSE-2.0.html
title: METRO2 API
version: v1
servers:
- description: Local development
url: http://localhost:8080
tags:
- description: |
File contains the structures of a Metro2 File. It contains one header record block, one trailer record block, multiple data blocks.
File have 2 types such as json and metro2.
name: Metro2 Files
paths:
/health:
get:
description: Check the metro2 service to check if running
operationId: health
responses:
"200":
content:
text/plain:
schema:
example: 'health: true'
type: string
description: successful operation
summary: health metro2 service
tags:
- Metro2 Files
/print:
post:
description: Print metro2 file with requested file format.
operationId: print
parameters:
- description: print metro2 file type
explode: true
in: query
name: format
required: false
schema:
default: json
enum:
- json
- metro2
type: string
style: form
requestBody:
content:
multipart/form-data:
schema:
properties:
format:
default: json
description: print metro2 file type
enum:
- json
- metro2
type: string
file:
description: metro2 file to upload
format: binary
type: string
application/json:
schema:
$ref: '#/components/schemas/File'
responses:
"200":
content:
text/plain:
schema:
example: '0480HEADER 555555555508202002051019990510199905101999YOUR
BUSINESS NAME HERE LINE ONE OF YOUR ADDRESS LINE
TWO OF YOUR ADDRESS LINE THERE OF YOUR ADDRESS 1234567890 109810101202001112206666666 553723456 M4811222019000000000000002438LOC
00000000000000010062 BBBBBBBBBBBBBBBBBBBBBBBBASXA00000223300000000000000000009202002071920010802200208022002 SMITH-JONES JUNIOR S1593287590318197251755555551 USRMXH+6W
Casper, Wyoming, United States U.S. Postal MI72654 YOJ1
BEAUCHAMP KEVIN S4451128770102202043355523332R J2
BEAUCHAMP KEVIN S4451128770102202043355523332R
US234 HARRISON PLACE SUITE #305 LANSING MI72654 YO K1WETCOSAT
INDUSTRIES LTD. 04K21Purchased From Name K300 Mortgage
Number K4010120202001202020000001234 L11New Consumer Account Number N1Employer
Name First Line of Employer Address Second Line
of Employer Address Employer City MI23456 Occupation 0500TRAILER000000001 000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000001000000001000000000000000001000000000000000001000000001000000001000000001000000001000000001000000000000000001000000001000000001000000001000000001000000001000000001000000001000000001000000001 '
type: string
application/json:
schema:
$ref: '#/components/schemas/File'
description: successful operation
"400":
content:
text/plain:
schema:
example: invalid metro2 file
type: string
description: request
summary: Print metro2 file with specific format
tags:
- Metro2 Files
/validator:
post:
description: Validation of metro2 file.
operationId: validator
requestBody:
content:
multipart/form-data:
schema:
properties:
file:
description: metro2 file to upload
format: binary
type: string
responses:
"200":
content:
text/plain:
schema:
example: valid file
type: string
description: successful operation
"400":
content:
text/plain:
schema:
example: bad request
type: string
description: bad request
"501":
content:
text/plain:
schema:
example: invalid metro2 file
type: string
description: failed operation
summary: Validate metro2 file
tags:
- Metro2 Files
/convert:
post:
description: Convert from original metro2 file to new metro2 file
operationId: convert
parameters:
- description: print metro2 file type
explode: true
in: query
name: format
required: false
schema:
default: json
enum:
- json
- metro2
type: string
style: form
requestBody:
content:
multipart/form-data:
schema:
properties:
format:
default: json
description: format of metro file
enum:
- json
- metro2
type: string
type:
description: metro file type
enum:
- character
- packed
type: string
generate:
default: false
description: generate new trailer record
type: boolean
newline:
description: has new line
type: boolean
file:
description: metro2 file to upload
format: binary
type: string
application/json:
schema:
$ref: '#/components/schemas/File'
responses:
"200":
content:
application/octet-stream:
schema:
description: new metro2 file
format: binary
type: string
description: successful operation
"400":
content:
text/plain:
schema:
example: bad request
type: string
description: bad request
"501":
content:
text/plain:
schema:
example: faile metro2 convert
type: string
description: failed operation
summary: Convert metro2 file
tags:
- Metro2 Files
components:
schemas:
File:
properties:
header:
$ref: '#/components/schemas/HeaderRecord'
data:
items:
$ref: '#/components/schemas/DataRecord'
type: array
trailer:
$ref: '#/components/schemas/TrailerRecord'
required:
- header
- trailer
HeaderRecord:
properties:
blockDescriptorWord:
format: int32
type: integer
recordDescriptorWord:
format: int32
type: integer
recordIdentifier:
enum:
- HEADER
type: string
cycleIdentifier:
type: string
innovisProgramIdentifier:
type: string
equifaxProgramIdentifier:
type: string
experianProgramIdentifier:
type: string
transUnionProgramIdentifier:
type: string
activityDate:
format: date-time
type: string
dateCreated:
format: date-time
type: string
programDate:
format: date-time
type: string
programRevisionDate:
format: date-time
type: string
reporterName:
type: string
reporterAddress:
type: string
reporterTelephoneNumber:
format: int64
type: integer
softwareVendorName:
type: string
softwareVersionNumber:
type: string
prbcProgramIdentifier:
type: string
required:
- activityDate
- dateCreated
- recordDescriptorWord
- recordIdentifier
- reporterAddress
- reporterName
TrailerRecord:
properties:
blockDescriptorWord:
format: int32
type: integer
recordDescriptorWord:
format: int32
type: integer
recordIdentifier:
enum:
- TRAILER
type: string
totalBaseRecords:
format: int32
type: integer
totalStatusCodeDF:
format: int32
type: integer
totalConsumerSegmentsJ1:
format: int32
type: integer
totalConsumerSegmentsJ2:
format: int32
type: integer
blockCount:
format: int32
type: integer
totalStatusCodeDA:
format: int32
type: integer
totalStatusCode05:
format: int32
type: integer
totalStatusCode11:
format: int32
type: integer
totalStatusCode13:
format: int32
type: integer
totalStatusCode61:
format: int32
type: integer
totalStatusCode62:
format: int32
type: integer
totalStatusCode63:
format: int32
type: integer
totalStatusCode64:
format: int32
type: integer
totalStatusCode65:
format: int32
type: integer
totalStatusCode71:
format: int32
type: integer
totalStatusCode78:
format: int32
type: integer
totalStatusCode80:
format: int32
type: integer
totalStatusCode82:
format: int32
type: integer
totalStatusCode83:
format: int32
type: integer
totalStatusCode84:
format: int32
type: integer
totalStatusCode88:
format: int32
type: integer
totalStatusCode89:
format: int32
type: integer
totalStatusCode93:
format: int32
type: integer
totalStatusCode94:
format: int32
type: integer
totalStatusCode95:
format: int32
type: integer
totalStatusCode96:
format: int32
type: integer
totalStatusCode97:
format: int32
type: integer
totalECOACodeZ:
format: int32
type: integer
totalEmploymentSegments:
format: int32
type: integer
totalOriginalCreditorSegments:
format: int32
type: integer
totalPurchasedToSegments:
format: int32
type: integer
totalMortgageInformationSegments:
format: int32
type: integer
totalPaymentInformationSegments:
format: int32
type: integer
totalChangeSegments:
format: int32
type: integer
totalSocialNumbersAllSegments:
format: int32
type: integer
totalSocialNumbersBaseSegments:
format: int32
type: integer
totalSocialNumbersJ1Segments:
format: int32
type: integer
totalSocialNumbersJ2Segments:
format: int32
type: integer
totalDatesBirthAllSegments:
format: int32
type: integer
totalDatesBirthBaseSegments:
format: int32
type: integer
totalDatesBirthJ1Segments:
format: int32
type: integer
totalDatesBirthJ2Segments:
format: int32
type: integer
totalTelephoneNumbersAllSegments:
format: int32
type: integer
required:
- recordDescriptorWord
- recordIdentifier
DataRecord:
properties:
base:
$ref: '#/components/schemas/BaseSegment'
j1:
items:
$ref: '#/components/schemas/J1Segment'
type: array
j2:
items:
$ref: '#/components/schemas/J2Segment'
type: array
k1:
$ref: '#/components/schemas/K1Segment'
k2:
$ref: '#/components/schemas/K2Segment'
k3:
$ref: '#/components/schemas/K3Segment'
k4:
$ref: '#/components/schemas/K4Segment'
l1:
$ref: '#/components/schemas/L1Segment'
n1:
$ref: '#/components/schemas/N1Segment'
required:
- base
BaseSegment:
properties:
blockDescriptorWord:
format: int32
type: integer
recordDescriptorWord:
format: int32
type: integer
timeStamp:
format: date-time
type: string
identificationNumber:
type: string
cycleIdentifier:
type: string
consumerAccountNumber:
type: string
portfolioType:
enum:
- C
- I
- M
- O
- R
- L
type: string
accountType:
type: string
dateOpened:
format: date-time
type: string
creditLimit:
format: int32
type: integer
highestCredit:
format: int32
type: integer
termsDuration:
type: string
termsFrequency:
enum:
- D
- P
- W
- B
- E
- M
- L
- Q
- T
- S
- "Y"
type: string
scheduledMonthlyPaymentAmount:
format: int32
type: integer
actualPaymentAmount:
format: int32
type: integer
accountStatus:
enum:
- DF
- DA
- "11"
- "61"
- "62"
- "63"
- "64"
- "71"
- "78"
- "80"
- "82"
- "83"
- "84"
- "93"
- "96"
- "97"
- "5"
- "13"
- "65"
- "88"
- "89"
- "94"
- "95"
type: string
paymentRating:
enum:
- "0"
- "1"
- "2"
- "3"
- "4"
- "5"
- "6"
- G
- L
type: string
paymentHistoryProfile:
enum:
- "0"
- "1"
- "2"
- "3"
- "4"
- "5"
- "6"
- B
- D
- E
- G
- H
- J
- K
- L
type: string
specialComment:
type: string
complianceConditionCode:
type: string
currentBalance:
format: int32
type: integer
amountPastDue:
format: int32
type: integer
originalChargeOffAmount:
format: int32
type: integer
dateAccountInformation:
format: date-time
type: string
dateFirstDelinquency:
format: date-time
type: string
dateClosed:
format: date-time
type: string
dateLastPayment:
format: date-time
type: string
interestTypeIndicator:
type: string
surname:
type: string
firstName:
type: string
middleName:
type: string
generationCode:
enum:
- J
- "3"
- "6"
- "9"
- S
- "4"
- "7"
- "2"
- "5"
- "8"
type: string
socialSecurityNumber:
format: int32
type: integer
dateBirth:
format: date-time
type: string
telephoneNumber:
format: int64
type: integer
ecoaCode:
type: string
consumerInformationIndicator:
type: string
countryCode:
type: string
firstLineAddress:
type: string
secondLineAddress:
type: string
city:
type: string
state:
type: string
zipCode:
type: string
addressIndicator:
enum:
- C
- "Y"
- "N"
- M
- S
- B
- U
- D
- P
type: string
residenceCode:
enum:
- O
- R
type: string
required:
- accountStatus
- accountType
- consumerAccountNumber
- currentBalance
- dateAccountInformation
- dateBirth
- ecoaCode
- firstLineAddress
- firstName
- highestCredit
- identificationNumber
- paymentHistoryProfile
- recordDescriptorWord
- socialSecurityNumber
- state
- surname
- termsDuration
- zipCode
J1Segment:
properties:
segmentIdentifier:
enum:
- J1
type: string
surname:
type: string
firstName:
type: string
middleName:
type: string
generationCode:
enum:
- J
- S
- "2"
type: string
socialSecurityNumber:
format: int32
type: integer
dateBirth:
format: date-time
type: string
telephoneNumber:
format: int64
type: integer
ecoaCode:
type: string
consumerInformationIndicator:
type: string
required:
- dateBirth
- ecoaCode
- firstName
- segmentIdentifier
- socialSecurityNumber
- surname
J2Segment:
properties:
segmentIdentifier:
enum:
- J2
type: string
surname:
type: string
firstName:
type: string
middleName:
type: string
generationCode:
enum:
- J
- S
- "2"
type: string
socialSecurityNumber:
format: int32
type: integer
dateBirth:
format: date-time
type: string
telephoneNumber:
format: int64
type: integer
ecoaCode:
type: string
consumerInformationIndicator:
type: string
countryCode:
type: string
firstLineAddress:
type: string
secondLineAddress:
type: string
city:
type: string
state:
type: string
zipCode:
type: string
addressIndicator:
enum:
- C
- "Y"
- "N"
- M
- S
- B
- U
- D
- P
type: string
residenceCode:
enum:
- O
- R
type: string
required:
- city
- dateBirth
- ecoaCode
- firstLineAddress
- firstName
- segmentIdentifier
- socialSecurityNumber
- state
- surname
- zipCode
K1Segment:
properties:
segmentIdentifier:
enum:
- K1
type: string
originalCreditorName:
type: string
creditorClassification:
enum:
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
format: int32
type: integer
required:
- creditorClassification
- originalCreditorName
- segmentIdentifier
K2Segment:
properties:
segmentIdentifier:
enum:
- K2
type: string
purchasedIndicator:
enum:
- 1
- 2
- 9
format: int32
type: integer
purchasedName:
type: string
required:
- purchasedIndicator
- purchasedName
- segmentIdentifier
K3Segment:
properties:
segmentIdentifier:
enum:
- K3
type: string
agencyIdentifier:
enum:
- 0
- 1
- 2
format: int32
type: integer
accountNumber:
type: string
mortgageIdentificationNumber:
type: string
required:
- segmentIdentifier
K4Segment:
properties:
segmentIdentifier:
enum:
- K4
type: string
specializedPaymentIndicator:
enum:
- 1
- 2
format: int32
type: integer
deferredPaymentStartDate:
format: date-time
type: string
balloonPaymentDueDate:
format: date-time
type: string
balloonPaymentAmount:
format: int32
type: integer
required:
- segmentIdentifier
- specializedPaymentIndicator
L1Segment:
properties:
segmentIdentifier:
enum:
- L1
type: string
changeIndicator:
format: int32
type: integer
newConsumerAccountNumber:
type: string
balloonPaymentDueDate:
type: string
required:
- changeIndicator
- segmentIdentifier
N1Segment:
properties:
segmentIdentifier:
enum:
- N1
type: string
employerName:
type: string
firstLineEmployerAddress:
type: string
secondLineEmployerAddress:
type: string
employerCity:
type: string
employerState:
type: string
zipCode:
type: string
occupation:
type: string
required:
- employerName
- segmentIdentifier