Skip to content

Commit

Permalink
Use integer instead of long, and add format int64
Browse files Browse the repository at this point in the history
  • Loading branch information
choudharynitu authored Dec 7, 2023
1 parent 5a64624 commit 9178c4e
Showing 1 changed file with 24 additions and 12 deletions.
36 changes: 24 additions & 12 deletions openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -794,11 +794,13 @@ components:
example: 0
totalDebit:
description: Accumulated Batch debit totals within the file.
type: long
type: integer
format: int64
example: 100
totalCredit:
description: Accumulated Batch credit totals within the file.
type: long
type: integer
format: int64
example: 20
required:
- ID
Expand Down Expand Up @@ -937,11 +939,13 @@ components:
example: 0
totalDebit:
description: Contains accumulated Entry debit totals within the batch.
type: long
type: integer
format: int64
example: 100
totalCredit:
description: Contains accumulated Entry credit totals within the batch.
type: long
type: integer
format: int64
example: 100
companyIdentification:
description: |
Expand Down Expand Up @@ -1015,7 +1019,8 @@ components:
The receiver's bank account number you are crediting/debiting. It important to note that this is an alphanumeric field, so it's space padded, not zero padded
example: "181141847"
amount:
type: long
type: integer
format: int64
description: Number of cents you are debiting/crediting this account
example: 1235
identificationNumber:
Expand Down Expand Up @@ -1213,7 +1218,8 @@ components:
'RCK' = Re-presented Check Entry
example: TEL
foreignPaymentAmount:
type: long
type: integer
format: int64
description: For inbound IAT payments this field should contain the USD amount or may be blank.
example: 1021441
foreignTraceNumber:
Expand Down Expand Up @@ -1991,7 +1997,8 @@ components:
description: Number of Addenda Records
example: 1
amount:
type: long
type: integer
format: int64
description: Number of cents you are debiting/crediting this account
example: 1235
DFIAccountNumber:
Expand Down Expand Up @@ -2102,7 +2109,8 @@ components:
The receiver's bank account number you are crediting/debiting. It important to note that this is an alphanumeric field, so it's space padded, not zero padded
example: "181141847"
amount:
type: long
type: integer
format: int64
description: Number of cents you are debiting/crediting this account
example: 1235
adviceRoutingNumber:
Expand Down Expand Up @@ -2174,11 +2182,13 @@ components:
example: 0
totalDebit:
description: Contains accumulated Entry debit totals within the batch.
type: long
type: integer
format: int64
example: 100
totalCredit:
description: Contains accumulated Entry credit totals within the batch.
type: long
type: integer
format: int64
example: 100
achOperatorData:
description: Alphanumeric code used to identify an ACH Operator
Expand Down Expand Up @@ -2228,11 +2238,13 @@ components:
example: 0
totalDebit:
description: Accumulated Batch debit totals within the file.
type: long
type: integer
format: int64
example: 100
totalCredit:
description: Accumulated Batch credit totals within the file.
type: long
type: integer
format: int64
example: 20
required:
- ID
Expand Down

0 comments on commit 9178c4e

Please sign in to comment.