@mojaloop/api-snippets 16.0.1 → 16.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +14 -0
- package/docs/sdk-scheme-adapter-outbound-v2_0_0-openapi3-snippets.yaml +119 -67
- package/lib/sdk-scheme-adapter/v2_0_0/outbound/json-schemas.json +63 -2
- package/lib/sdk-scheme-adapter/v2_0_0/outbound/openapi.d.ts +58 -2
- package/lib/sdk-scheme-adapter/v2_0_0/outbound/schemas.d.ts +55 -0
- package/lib/sdk-scheme-adapter/v2_0_0/outbound/schemas.js +2 -0
- package/lib/sdk-scheme-adapter/v2_0_0/outbound/schemas.js.map +1 -1
- package/lib/sdk-scheme-adapter/v2_0_0/outbound/types.d.ts +2 -0
- package/package.json +1 -1
- package/sdk-scheme-adapter/v2_0_0/components/schemas/bulkTransferRequest.yaml +4 -0
- package/sdk-scheme-adapter/v2_0_0/components/schemas/individualTransfer.yaml +6 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,4 +1,18 @@
|
|
|
1
1
|
# Changelog: [mojaloop/api-snippets](https://github.com/mojaloop/api-snippets)
|
|
2
|
+
### [16.0.3](https://github.com/mojaloop/api-snippets/compare/v16.0.2...v16.0.3) (2022-09-23)
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
### Bug Fixes
|
|
6
|
+
|
|
7
|
+
* updates to sdk-scheme-adapter individualTransfer ([#144](https://github.com/mojaloop/api-snippets/issues/144)) ([11285c4](https://github.com/mojaloop/api-snippets/commit/11285c4f9151219250873159171eefb2d9910efc))
|
|
8
|
+
|
|
9
|
+
### [16.0.2](https://github.com/mojaloop/api-snippets/compare/v16.0.1...v16.0.2) (2022-09-22)
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
### Bug Fixes
|
|
13
|
+
|
|
14
|
+
* added missing fields and required parameters to the SDK Scheme Adapter Outbound API ([#143](https://github.com/mojaloop/api-snippets/issues/143)) ([c2ddf0b](https://github.com/mojaloop/api-snippets/commit/c2ddf0b156f6cacfef6f367e94173fdf4f7a34db))
|
|
15
|
+
|
|
2
16
|
### [16.0.1](https://github.com/mojaloop/api-snippets/compare/v16.0.0...v16.0.1) (2022-09-22)
|
|
3
17
|
|
|
4
18
|
|
|
@@ -16,8 +16,8 @@ info:
|
|
|
16
16
|
**Note on terminology:** The term "Switch" is equal to the term "Hub", and
|
|
17
17
|
the term "FSP" is equal to the term "DFSP".
|
|
18
18
|
license:
|
|
19
|
-
name: Apache License Version 2.0, January 2004
|
|
20
|
-
url: https://github.com/mojaloop/documentation/blob/master/LICENSE.md
|
|
19
|
+
name: 'Apache License Version 2.0, January 2004'
|
|
20
|
+
url: 'https://github.com/mojaloop/documentation/blob/master/LICENSE.md'
|
|
21
21
|
version: 1.0.0
|
|
22
22
|
paths:
|
|
23
23
|
/:
|
|
@@ -206,7 +206,7 @@ paths:
|
|
|
206
206
|
displayName:
|
|
207
207
|
title: Name
|
|
208
208
|
type: string
|
|
209
|
-
pattern: ^(?!\s*$)[\w .,'-]{1,128}$
|
|
209
|
+
pattern: '^(?!\s*$)[\w .,''-]{1,128}$'
|
|
210
210
|
description: >-
|
|
211
211
|
The API data type Name is a JSON String, restricted by a
|
|
212
212
|
regular expression to avoid characters which are
|
|
@@ -265,7 +265,7 @@ paths:
|
|
|
265
265
|
merchantClassificationCode:
|
|
266
266
|
title: MerchantClassificationCode
|
|
267
267
|
type: string
|
|
268
|
-
pattern: ^[\d]{1,4}$
|
|
268
|
+
pattern: '^[\d]{1,4}$'
|
|
269
269
|
description: >-
|
|
270
270
|
A limited set of pre-defined numbers. This list would be
|
|
271
271
|
a limited set of numbers identifying a set of popular
|
|
@@ -500,7 +500,7 @@ paths:
|
|
|
500
500
|
amount:
|
|
501
501
|
title: Amount
|
|
502
502
|
type: string
|
|
503
|
-
pattern: ^([0]|([1-9][0-9]{0,17}))([.][0-9]{0,3}[1-9])?$
|
|
503
|
+
pattern: '^([0]|([1-9][0-9]{0,17}))([.][0-9]{0,3}[1-9])?$'
|
|
504
504
|
description: >-
|
|
505
505
|
The API data type Amount is a JSON String in a canonical
|
|
506
506
|
format that is restricted by a regular expression for
|
|
@@ -614,7 +614,7 @@ paths:
|
|
|
614
614
|
amount:
|
|
615
615
|
title: Amount
|
|
616
616
|
type: string
|
|
617
|
-
pattern: ^([0]|([1-9][0-9]{0,17}))([.][0-9]{0,3}[1-9])?$
|
|
617
|
+
pattern: '^([0]|([1-9][0-9]{0,17}))([.][0-9]{0,3}[1-9])?$'
|
|
618
618
|
description: >-
|
|
619
619
|
The API data type Amount is a JSON String in a canonical
|
|
620
620
|
format that is restricted by a regular expression for
|
|
@@ -676,7 +676,7 @@ paths:
|
|
|
676
676
|
body:
|
|
677
677
|
title: QuotesIDPutResponse
|
|
678
678
|
type: object
|
|
679
|
-
description: The object sent in the PUT /quotes/{ID} callback.
|
|
679
|
+
description: 'The object sent in the PUT /quotes/{ID} callback.'
|
|
680
680
|
properties: &ref_56
|
|
681
681
|
transferAmount:
|
|
682
682
|
title: Money
|
|
@@ -787,7 +787,7 @@ paths:
|
|
|
787
787
|
ilpPacket:
|
|
788
788
|
title: IlpPacket
|
|
789
789
|
type: string
|
|
790
|
-
pattern: ^[A-Za-z0-9-_]+[=]{0,2}$
|
|
790
|
+
pattern: '^[A-Za-z0-9-_]+[=]{0,2}$'
|
|
791
791
|
minLength: 1
|
|
792
792
|
maxLength: 32768
|
|
793
793
|
description: >-
|
|
@@ -798,7 +798,7 @@ paths:
|
|
|
798
798
|
condition:
|
|
799
799
|
title: IlpCondition
|
|
800
800
|
type: string
|
|
801
|
-
pattern: ^[A-Za-z0-9-_]{43}$
|
|
801
|
+
pattern: '^[A-Za-z0-9-_]{43}$'
|
|
802
802
|
maxLength: 48
|
|
803
803
|
description: >-
|
|
804
804
|
Condition that must be attached to the transfer by
|
|
@@ -846,12 +846,12 @@ paths:
|
|
|
846
846
|
body:
|
|
847
847
|
title: TransfersIDPutResponse
|
|
848
848
|
type: object
|
|
849
|
-
description: The object sent in the PUT /transfers/{ID} callback.
|
|
849
|
+
description: 'The object sent in the PUT /transfers/{ID} callback.'
|
|
850
850
|
properties: &ref_20
|
|
851
851
|
fulfilment:
|
|
852
852
|
title: IlpFulfilment
|
|
853
853
|
type: string
|
|
854
|
-
pattern: ^[A-Za-z0-9-_]{43}$
|
|
854
|
+
pattern: '^[A-Za-z0-9-_]{43}$'
|
|
855
855
|
maxLength: 48
|
|
856
856
|
description: >-
|
|
857
857
|
Fulfilment that must be attached to the transfer
|
|
@@ -940,7 +940,7 @@ paths:
|
|
|
940
940
|
errorCode:
|
|
941
941
|
title: ErrorCode
|
|
942
942
|
type: string
|
|
943
|
-
pattern: ^[1-9]\d{3}$
|
|
943
|
+
pattern: '^[1-9]\d{3}$'
|
|
944
944
|
description: >-
|
|
945
945
|
The API data type ErrorCode is a JSON String
|
|
946
946
|
of four characters, consisting of digits only.
|
|
@@ -979,7 +979,7 @@ paths:
|
|
|
979
979
|
previous party resolution has been performed.
|
|
980
980
|
type: boolean
|
|
981
981
|
'400':
|
|
982
|
-
description: Malformed or missing required body, headers or parameters
|
|
982
|
+
description: 'Malformed or missing required body, headers or parameters'
|
|
983
983
|
content: &ref_143
|
|
984
984
|
application/json:
|
|
985
985
|
schema:
|
|
@@ -1012,7 +1012,7 @@ paths:
|
|
|
1012
1012
|
application/json:
|
|
1013
1013
|
schema:
|
|
1014
1014
|
allOf: *ref_14
|
|
1015
|
-
/transfers/{transferId}:
|
|
1015
|
+
'/transfers/{transferId}':
|
|
1016
1016
|
put:
|
|
1017
1017
|
summary: >-
|
|
1018
1018
|
Continues a transfer that has paused at the quote stage in order to
|
|
@@ -1141,7 +1141,7 @@ paths:
|
|
|
1141
1141
|
body:
|
|
1142
1142
|
title: TransfersIDPutResponse
|
|
1143
1143
|
type: object
|
|
1144
|
-
description: The object sent in the PUT /transfers/{ID} callback.
|
|
1144
|
+
description: 'The object sent in the PUT /transfers/{ID} callback.'
|
|
1145
1145
|
properties: *ref_20
|
|
1146
1146
|
required: *ref_21
|
|
1147
1147
|
headers:
|
|
@@ -1414,7 +1414,7 @@ paths:
|
|
|
1414
1414
|
merchantClassificationCode:
|
|
1415
1415
|
title: MerchantClassificationCode
|
|
1416
1416
|
type: string
|
|
1417
|
-
pattern: ^[\d]{1,4}$
|
|
1417
|
+
pattern: '^[\d]{1,4}$'
|
|
1418
1418
|
description: >-
|
|
1419
1419
|
A limited set of pre-defined numbers. This list would be
|
|
1420
1420
|
a limited set of numbers identifying a set of popular
|
|
@@ -1532,7 +1532,7 @@ paths:
|
|
|
1532
1532
|
amount:
|
|
1533
1533
|
title: Amount
|
|
1534
1534
|
type: string
|
|
1535
|
-
pattern: ^([0]|([1-9][0-9]{0,17}))([.][0-9]{0,3}[1-9])?$
|
|
1535
|
+
pattern: '^([0]|([1-9][0-9]{0,17}))([.][0-9]{0,3}[1-9])?$'
|
|
1536
1536
|
description: >-
|
|
1537
1537
|
The API data type Amount is a JSON String in a
|
|
1538
1538
|
canonical format that is restricted by a regular
|
|
@@ -1591,7 +1591,7 @@ paths:
|
|
|
1591
1591
|
'202':
|
|
1592
1592
|
description: Bulk transfer accepted successfully
|
|
1593
1593
|
'400':
|
|
1594
|
-
description: Malformed or missing required body, headers or parameters
|
|
1594
|
+
description: 'Malformed or missing required body, headers or parameters'
|
|
1595
1595
|
content: &ref_41
|
|
1596
1596
|
application/json:
|
|
1597
1597
|
schema:
|
|
@@ -1730,7 +1730,7 @@ paths:
|
|
|
1730
1730
|
transfer by the Payee.
|
|
1731
1731
|
title: IlpFulfilment
|
|
1732
1732
|
type: string
|
|
1733
|
-
pattern: ^[A-Za-z0-9-_]{43}$
|
|
1733
|
+
pattern: '^[A-Za-z0-9-_]{43}$'
|
|
1734
1734
|
maxLength: 48
|
|
1735
1735
|
example: WLctttbu2HvTsa1XWvUoGRcQozHsqeu9Ahl2JW9Bsu8
|
|
1736
1736
|
extensionList:
|
|
@@ -1759,7 +1759,7 @@ paths:
|
|
|
1759
1759
|
schema:
|
|
1760
1760
|
type: object
|
|
1761
1761
|
properties: *ref_22
|
|
1762
|
-
/bulkTransactions/{bulkTransactionId}:
|
|
1762
|
+
'/bulkTransactions/{bulkTransactionId}':
|
|
1763
1763
|
put:
|
|
1764
1764
|
summary: Amends the bulk transaction request
|
|
1765
1765
|
description: >-
|
|
@@ -1889,7 +1889,7 @@ paths:
|
|
|
1889
1889
|
'202':
|
|
1890
1890
|
description: Bulk transaction information successfully amended
|
|
1891
1891
|
'400':
|
|
1892
|
-
description: Malformed or missing required body, headers or parameters
|
|
1892
|
+
description: 'Malformed or missing required body, headers or parameters'
|
|
1893
1893
|
content: &ref_144
|
|
1894
1894
|
application/json:
|
|
1895
1895
|
schema:
|
|
@@ -1987,7 +1987,9 @@ paths:
|
|
|
1987
1987
|
schema:
|
|
1988
1988
|
type: object
|
|
1989
1989
|
required: &ref_98
|
|
1990
|
+
- bulkTransferId
|
|
1990
1991
|
- homeTransactionId
|
|
1992
|
+
- bulkQuoteId
|
|
1991
1993
|
- from
|
|
1992
1994
|
- individualTransfers
|
|
1993
1995
|
properties: &ref_99
|
|
@@ -2010,6 +2012,20 @@ paths:
|
|
|
2010
2012
|
reasons. A UUID is always 36 characters long, 32 hexadecimal
|
|
2011
2013
|
symbols and 4 dashes (‘-‘).
|
|
2012
2014
|
example: b51ec534-ee48-4575-b6a9-ead2955b8069
|
|
2015
|
+
bulkQuoteId:
|
|
2016
|
+
title: CorrelationId
|
|
2017
|
+
type: string
|
|
2018
|
+
pattern: >-
|
|
2019
|
+
^[0-9a-f]{8}-[0-9a-f]{4}-[1-5][0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$
|
|
2020
|
+
description: >-
|
|
2021
|
+
Identifier that correlates all messages of the same
|
|
2022
|
+
sequence. The API data type UUID (Universally Unique
|
|
2023
|
+
Identifier) is a JSON String in canonical format, conforming
|
|
2024
|
+
to [RFC 4122](https://tools.ietf.org/html/rfc4122), that is
|
|
2025
|
+
restricted by a regular expression for interoperability
|
|
2026
|
+
reasons. A UUID is always 36 characters long, 32 hexadecimal
|
|
2027
|
+
symbols and 4 dashes (‘-‘).
|
|
2028
|
+
example: b51ec534-ee48-4575-b6a9-ead2955b8069
|
|
2013
2029
|
from:
|
|
2014
2030
|
type: object
|
|
2015
2031
|
required: *ref_0
|
|
@@ -2074,7 +2090,7 @@ paths:
|
|
|
2074
2090
|
amount:
|
|
2075
2091
|
title: Amount
|
|
2076
2092
|
type: string
|
|
2077
|
-
pattern: ^([0]|([1-9][0-9]{0,17}))([.][0-9]{0,3}[1-9])?$
|
|
2093
|
+
pattern: '^([0]|([1-9][0-9]{0,17}))([.][0-9]{0,3}[1-9])?$'
|
|
2078
2094
|
description: >-
|
|
2079
2095
|
The API data type Amount is a JSON String in a
|
|
2080
2096
|
canonical format that is restricted by a regular
|
|
@@ -2090,6 +2106,25 @@ paths:
|
|
|
2090
2106
|
type: string
|
|
2091
2107
|
enum: *ref_5
|
|
2092
2108
|
description: Type of transaction.
|
|
2109
|
+
ilpPacket:
|
|
2110
|
+
title: IlpPacket
|
|
2111
|
+
type: string
|
|
2112
|
+
pattern: '^[A-Za-z0-9-_]+[=]{0,2}$'
|
|
2113
|
+
minLength: 1
|
|
2114
|
+
maxLength: 32768
|
|
2115
|
+
description: >-
|
|
2116
|
+
Information for recipient (transport layer
|
|
2117
|
+
information).
|
|
2118
|
+
example: >-
|
|
2119
|
+
AYIBgQAAAAAAAASwNGxldmVsb25lLmRmc3AxLm1lci45T2RTOF81MDdqUUZERmZlakgyOVc4bXFmNEpLMHlGTFGCAUBQU0svMS4wCk5vbmNlOiB1SXlweUYzY3pYSXBFdzVVc05TYWh3CkVuY3J5cHRpb246IG5vbmUKUGF5bWVudC1JZDogMTMyMzZhM2ItOGZhOC00MTYzLTg0NDctNGMzZWQzZGE5OGE3CgpDb250ZW50LUxlbmd0aDogMTM1CkNvbnRlbnQtVHlwZTogYXBwbGljYXRpb24vanNvbgpTZW5kZXItSWRlbnRpZmllcjogOTI4MDYzOTEKCiJ7XCJmZWVcIjowLFwidHJhbnNmZXJDb2RlXCI6XCJpbnZvaWNlXCIsXCJkZWJpdE5hbWVcIjpcImFsaWNlIGNvb3BlclwiLFwiY3JlZGl0TmFtZVwiOlwibWVyIGNoYW50XCIsXCJkZWJpdElkZW50aWZpZXJcIjpcIjkyODA2MzkxXCJ9IgA
|
|
2120
|
+
condition:
|
|
2121
|
+
title: IlpCondition
|
|
2122
|
+
type: string
|
|
2123
|
+
pattern: '^[A-Za-z0-9-_]{43}$'
|
|
2124
|
+
maxLength: 48
|
|
2125
|
+
description: >-
|
|
2126
|
+
Condition that must be attached to the transfer by the
|
|
2127
|
+
Payer.
|
|
2093
2128
|
note:
|
|
2094
2129
|
title: Note
|
|
2095
2130
|
type: string
|
|
@@ -2111,6 +2146,8 @@ paths:
|
|
|
2111
2146
|
- amountType
|
|
2112
2147
|
- currency
|
|
2113
2148
|
- amount
|
|
2149
|
+
- ilpPacket
|
|
2150
|
+
- condition
|
|
2114
2151
|
extensions:
|
|
2115
2152
|
title: ExtensionList
|
|
2116
2153
|
type: object
|
|
@@ -2130,12 +2167,12 @@ paths:
|
|
|
2130
2167
|
required: *ref_39
|
|
2131
2168
|
properties: *ref_40
|
|
2132
2169
|
'400':
|
|
2133
|
-
description: Malformed or missing required body, headers or parameters
|
|
2170
|
+
description: 'Malformed or missing required body, headers or parameters'
|
|
2134
2171
|
content: *ref_41
|
|
2135
2172
|
'500':
|
|
2136
2173
|
description: Internal Server Error
|
|
2137
2174
|
content: *ref_42
|
|
2138
|
-
/bulkTransfers/{bulkTransferId}:
|
|
2175
|
+
'/bulkTransfers/{bulkTransferId}':
|
|
2139
2176
|
get:
|
|
2140
2177
|
summary: Retrieves information for a specific bulk transfer
|
|
2141
2178
|
description: >-
|
|
@@ -2212,7 +2249,7 @@ paths:
|
|
|
2212
2249
|
the Payee.
|
|
2213
2250
|
title: IlpFulfilment
|
|
2214
2251
|
type: string
|
|
2215
|
-
pattern: ^[A-Za-z0-9-_]{43}$
|
|
2252
|
+
pattern: '^[A-Za-z0-9-_]{43}$'
|
|
2216
2253
|
maxLength: 48
|
|
2217
2254
|
example: WLctttbu2HvTsa1XWvUoGRcQozHsqeu9Ahl2JW9Bsu8
|
|
2218
2255
|
extensionList:
|
|
@@ -2332,7 +2369,7 @@ paths:
|
|
|
2332
2369
|
amount:
|
|
2333
2370
|
title: Amount
|
|
2334
2371
|
type: string
|
|
2335
|
-
pattern: ^([0]|([1-9][0-9]{0,17}))([.][0-9]{0,3}[1-9])?$
|
|
2372
|
+
pattern: '^([0]|([1-9][0-9]{0,17}))([.][0-9]{0,3}[1-9])?$'
|
|
2336
2373
|
description: >-
|
|
2337
2374
|
The API data type Amount is a JSON String in a
|
|
2338
2375
|
canonical format that is restricted by a regular
|
|
@@ -2497,7 +2534,7 @@ paths:
|
|
|
2497
2534
|
ilpPacket:
|
|
2498
2535
|
title: IlpPacket
|
|
2499
2536
|
type: string
|
|
2500
|
-
pattern: ^[A-Za-z0-9-_]+[=]{0,2}$
|
|
2537
|
+
pattern: '^[A-Za-z0-9-_]+[=]{0,2}$'
|
|
2501
2538
|
minLength: 1
|
|
2502
2539
|
maxLength: 32768
|
|
2503
2540
|
description: >-
|
|
@@ -2508,7 +2545,7 @@ paths:
|
|
|
2508
2545
|
condition:
|
|
2509
2546
|
title: IlpCondition
|
|
2510
2547
|
type: string
|
|
2511
|
-
pattern: ^[A-Za-z0-9-_]{43}$
|
|
2548
|
+
pattern: '^[A-Za-z0-9-_]{43}$'
|
|
2512
2549
|
maxLength: 48
|
|
2513
2550
|
description: >-
|
|
2514
2551
|
Condition that must be attached to the transfer by
|
|
@@ -2536,7 +2573,7 @@ paths:
|
|
|
2536
2573
|
List of individualQuoteResults in a bulk transfer
|
|
2537
2574
|
response.
|
|
2538
2575
|
'400':
|
|
2539
|
-
description: Malformed or missing required body, headers or parameters
|
|
2576
|
+
description: 'Malformed or missing required body, headers or parameters'
|
|
2540
2577
|
content: &ref_147
|
|
2541
2578
|
application/json:
|
|
2542
2579
|
schema:
|
|
@@ -2563,7 +2600,7 @@ paths:
|
|
|
2563
2600
|
application/json:
|
|
2564
2601
|
schema:
|
|
2565
2602
|
allOf: *ref_49
|
|
2566
|
-
/bulkQuotes/{bulkQuoteId}:
|
|
2603
|
+
'/bulkQuotes/{bulkQuoteId}':
|
|
2567
2604
|
get:
|
|
2568
2605
|
summary: Retrieves information for a specific bulk quote
|
|
2569
2606
|
description: >-
|
|
@@ -2715,7 +2752,7 @@ paths:
|
|
|
2715
2752
|
amount:
|
|
2716
2753
|
title: Amount
|
|
2717
2754
|
type: string
|
|
2718
|
-
pattern: ^([0]|([1-9][0-9]{0,17}))([.][0-9]{0,3}[1-9])?$
|
|
2755
|
+
pattern: '^([0]|([1-9][0-9]{0,17}))([.][0-9]{0,3}[1-9])?$'
|
|
2719
2756
|
description: >-
|
|
2720
2757
|
The API data type Amount is a JSON String in a canonical
|
|
2721
2758
|
format that is restricted by a regular expression for
|
|
@@ -2770,7 +2807,7 @@ paths:
|
|
|
2770
2807
|
subScenario:
|
|
2771
2808
|
title: TransactionSubScenario
|
|
2772
2809
|
type: string
|
|
2773
|
-
pattern: ^[A-Z_]{1,32}$
|
|
2810
|
+
pattern: '^[A-Z_]{1,32}$'
|
|
2774
2811
|
description: >-
|
|
2775
2812
|
Possible sub-scenario, defined locally within the scheme
|
|
2776
2813
|
(UndefinedEnum Type).
|
|
@@ -2844,7 +2881,7 @@ paths:
|
|
|
2844
2881
|
balanceOfPayments:
|
|
2845
2882
|
title: BalanceOfPayments
|
|
2846
2883
|
type: string
|
|
2847
|
-
pattern: ^[1-9]\d{2}$
|
|
2884
|
+
pattern: '^[1-9]\d{2}$'
|
|
2848
2885
|
description: >-
|
|
2849
2886
|
(BopCode) The API data type
|
|
2850
2887
|
[BopCode](https://www.imf.org/external/np/sta/bopcode/)
|
|
@@ -2955,7 +2992,7 @@ paths:
|
|
|
2955
2992
|
amount:
|
|
2956
2993
|
title: Amount
|
|
2957
2994
|
type: string
|
|
2958
|
-
pattern: ^([0]|([1-9][0-9]{0,17}))([.][0-9]{0,3}[1-9])?$
|
|
2995
|
+
pattern: '^([0]|([1-9][0-9]{0,17}))([.][0-9]{0,3}[1-9])?$'
|
|
2959
2996
|
description: >-
|
|
2960
2997
|
The API data type Amount is a JSON String in a canonical
|
|
2961
2998
|
format that is restricted by a regular expression for
|
|
@@ -3140,7 +3177,7 @@ paths:
|
|
|
3140
3177
|
amount:
|
|
3141
3178
|
title: Amount
|
|
3142
3179
|
type: string
|
|
3143
|
-
pattern: ^([0]|([1-9][0-9]{0,17}))([.][0-9]{0,3}[1-9])?$
|
|
3180
|
+
pattern: '^([0]|([1-9][0-9]{0,17}))([.][0-9]{0,3}[1-9])?$'
|
|
3144
3181
|
description: >-
|
|
3145
3182
|
The API data type Amount is a JSON String in a canonical
|
|
3146
3183
|
format that is restricted by a regular expression for
|
|
@@ -3266,7 +3303,7 @@ paths:
|
|
|
3266
3303
|
amount:
|
|
3267
3304
|
title: Amount
|
|
3268
3305
|
type: string
|
|
3269
|
-
pattern: ^([0]|([1-9][0-9]{0,17}))([.][0-9]{0,3}[1-9])?$
|
|
3306
|
+
pattern: '^([0]|([1-9][0-9]{0,17}))([.][0-9]{0,3}[1-9])?$'
|
|
3270
3307
|
description: >-
|
|
3271
3308
|
The API data type Amount is a JSON String in a canonical
|
|
3272
3309
|
format that is restricted by a regular expression for
|
|
@@ -3310,7 +3347,7 @@ paths:
|
|
|
3310
3347
|
quoteResponse:
|
|
3311
3348
|
title: QuotesIDPutResponse
|
|
3312
3349
|
type: object
|
|
3313
|
-
description: The object sent in the PUT /quotes/{ID} callback.
|
|
3350
|
+
description: 'The object sent in the PUT /quotes/{ID} callback.'
|
|
3314
3351
|
properties: *ref_56
|
|
3315
3352
|
required: *ref_57
|
|
3316
3353
|
quoteResponseSource:
|
|
@@ -3323,7 +3360,7 @@ paths:
|
|
|
3323
3360
|
fulfil:
|
|
3324
3361
|
title: TransfersIDPutResponse
|
|
3325
3362
|
type: object
|
|
3326
|
-
description: The object sent in the PUT /transfers/{ID} callback.
|
|
3363
|
+
description: 'The object sent in the PUT /transfers/{ID} callback.'
|
|
3327
3364
|
properties: *ref_20
|
|
3328
3365
|
required: *ref_21
|
|
3329
3366
|
lastError:
|
|
@@ -3333,7 +3370,7 @@ paths:
|
|
|
3333
3370
|
type: object
|
|
3334
3371
|
properties: *ref_26
|
|
3335
3372
|
'400':
|
|
3336
|
-
description: Malformed or missing required body, headers or parameters
|
|
3373
|
+
description: 'Malformed or missing required body, headers or parameters'
|
|
3337
3374
|
content: &ref_152
|
|
3338
3375
|
application/json:
|
|
3339
3376
|
schema:
|
|
@@ -3344,7 +3381,7 @@ paths:
|
|
|
3344
3381
|
'504':
|
|
3345
3382
|
description: Timeout occurred processing the transfer
|
|
3346
3383
|
content: *ref_17
|
|
3347
|
-
/requestToPayTransfer/{requestToPayTransactionId}:
|
|
3384
|
+
'/requestToPayTransfer/{requestToPayTransactionId}':
|
|
3348
3385
|
put:
|
|
3349
3386
|
summary: >-
|
|
3350
3387
|
Continues a transfer that has paused at the otp stage in order to accept
|
|
@@ -3683,7 +3720,7 @@ paths:
|
|
|
3683
3720
|
application/json:
|
|
3684
3721
|
schema:
|
|
3685
3722
|
allOf: *ref_62
|
|
3686
|
-
/parties/{Type}/{ID}:
|
|
3723
|
+
'/parties/{Type}/{ID}':
|
|
3687
3724
|
parameters:
|
|
3688
3725
|
- name: Type
|
|
3689
3726
|
in: path
|
|
@@ -3717,7 +3754,7 @@ paths:
|
|
|
3717
3754
|
schema:
|
|
3718
3755
|
title: partiesByIdResponse
|
|
3719
3756
|
type: object
|
|
3720
|
-
description: GET /parties/{Type}/{ID} response object
|
|
3757
|
+
description: 'GET /parties/{Type}/{ID} response object'
|
|
3721
3758
|
properties: &ref_127
|
|
3722
3759
|
party:
|
|
3723
3760
|
properties:
|
|
@@ -3754,7 +3791,7 @@ paths:
|
|
|
3754
3791
|
description: Data model for the complex type ErrorInformation.
|
|
3755
3792
|
properties: *ref_63
|
|
3756
3793
|
required: *ref_64
|
|
3757
|
-
/parties/{Type}/{ID}/{SubId}:
|
|
3794
|
+
'/parties/{Type}/{ID}/{SubId}':
|
|
3758
3795
|
parameters:
|
|
3759
3796
|
- name: Type
|
|
3760
3797
|
in: path
|
|
@@ -3976,7 +4013,7 @@ paths:
|
|
|
3976
4013
|
quotes:
|
|
3977
4014
|
title: QuotesIDPutResponse
|
|
3978
4015
|
type: object
|
|
3979
|
-
description: The object sent in the PUT /quotes/{ID} callback.
|
|
4016
|
+
description: 'The object sent in the PUT /quotes/{ID} callback.'
|
|
3980
4017
|
properties:
|
|
3981
4018
|
body:
|
|
3982
4019
|
type: object
|
|
@@ -4024,7 +4061,7 @@ paths:
|
|
|
4024
4061
|
ilpPacket:
|
|
4025
4062
|
title: IlpPacket
|
|
4026
4063
|
type: string
|
|
4027
|
-
pattern: ^[A-Za-z0-9-_]+[=]{0,2}$
|
|
4064
|
+
pattern: '^[A-Za-z0-9-_]+[=]{0,2}$'
|
|
4028
4065
|
minLength: 1
|
|
4029
4066
|
maxLength: 32768
|
|
4030
4067
|
description: >-
|
|
@@ -4035,7 +4072,7 @@ paths:
|
|
|
4035
4072
|
condition:
|
|
4036
4073
|
title: IlpCondition
|
|
4037
4074
|
type: string
|
|
4038
|
-
pattern: ^[A-Za-z0-9-_]{43}$
|
|
4075
|
+
pattern: '^[A-Za-z0-9-_]{43}$'
|
|
4039
4076
|
maxLength: 48
|
|
4040
4077
|
description: >-
|
|
4041
4078
|
Condition that must be attached to the transfer by
|
|
@@ -4136,7 +4173,7 @@ paths:
|
|
|
4136
4173
|
ilpPacket:
|
|
4137
4174
|
title: IlpPacket
|
|
4138
4175
|
type: string
|
|
4139
|
-
pattern: ^[A-Za-z0-9-_]+[=]{0,2}$
|
|
4176
|
+
pattern: '^[A-Za-z0-9-_]+[=]{0,2}$'
|
|
4140
4177
|
minLength: 1
|
|
4141
4178
|
maxLength: 32768
|
|
4142
4179
|
description: Information for recipient (transport layer information).
|
|
@@ -4145,7 +4182,7 @@ paths:
|
|
|
4145
4182
|
condition:
|
|
4146
4183
|
title: IlpCondition
|
|
4147
4184
|
type: string
|
|
4148
|
-
pattern: ^[A-Za-z0-9-_]{43}$
|
|
4185
|
+
pattern: '^[A-Za-z0-9-_]{43}$'
|
|
4149
4186
|
maxLength: 48
|
|
4150
4187
|
description: >-
|
|
4151
4188
|
Condition that must be attached to the transfer by the
|
|
@@ -4202,7 +4239,7 @@ paths:
|
|
|
4202
4239
|
body:
|
|
4203
4240
|
title: TransfersIDPutResponse
|
|
4204
4241
|
type: object
|
|
4205
|
-
description: The object sent in the PUT /transfers/{ID} callback.
|
|
4242
|
+
description: 'The object sent in the PUT /transfers/{ID} callback.'
|
|
4206
4243
|
properties: *ref_20
|
|
4207
4244
|
required: *ref_21
|
|
4208
4245
|
headers:
|
|
@@ -4306,7 +4343,7 @@ components:
|
|
|
4306
4343
|
Name:
|
|
4307
4344
|
title: Name
|
|
4308
4345
|
type: string
|
|
4309
|
-
pattern: ^(?!\s*$)[\w .,'-]{1,128}$
|
|
4346
|
+
pattern: '^(?!\s*$)[\w .,''-]{1,128}$'
|
|
4310
4347
|
description: >-
|
|
4311
4348
|
The API data type Name is a JSON String, restricted by a regular
|
|
4312
4349
|
expression to avoid characters which are generally not used in a name.
|
|
@@ -4362,7 +4399,7 @@ components:
|
|
|
4362
4399
|
MerchantClassificationCode:
|
|
4363
4400
|
title: MerchantClassificationCode
|
|
4364
4401
|
type: string
|
|
4365
|
-
pattern: ^[\d]{1,4}$
|
|
4402
|
+
pattern: '^[\d]{1,4}$'
|
|
4366
4403
|
description: >-
|
|
4367
4404
|
A limited set of pre-defined numbers. This list would be a limited set
|
|
4368
4405
|
of numbers identifying a set of popular merchant types like School Fees,
|
|
@@ -4427,7 +4464,7 @@ components:
|
|
|
4427
4464
|
Amount:
|
|
4428
4465
|
title: Amount
|
|
4429
4466
|
type: string
|
|
4430
|
-
pattern: ^([0]|([1-9][0-9]{0,17}))([.][0-9]{0,3}[1-9])?$
|
|
4467
|
+
pattern: '^([0]|([1-9][0-9]{0,17}))([.][0-9]{0,3}[1-9])?$'
|
|
4431
4468
|
description: >-
|
|
4432
4469
|
The API data type Amount is a JSON String in a canonical format that is
|
|
4433
4470
|
restricted by a regular expression for interoperability reasons. This
|
|
@@ -4518,7 +4555,7 @@ components:
|
|
|
4518
4555
|
IlpPacket:
|
|
4519
4556
|
title: IlpPacket
|
|
4520
4557
|
type: string
|
|
4521
|
-
pattern: ^[A-Za-z0-9-_]+[=]{0,2}$
|
|
4558
|
+
pattern: '^[A-Za-z0-9-_]+[=]{0,2}$'
|
|
4522
4559
|
minLength: 1
|
|
4523
4560
|
maxLength: 32768
|
|
4524
4561
|
description: Information for recipient (transport layer information).
|
|
@@ -4527,7 +4564,7 @@ components:
|
|
|
4527
4564
|
IlpCondition:
|
|
4528
4565
|
title: IlpCondition
|
|
4529
4566
|
type: string
|
|
4530
|
-
pattern: ^[A-Za-z0-9-_]{43}$
|
|
4567
|
+
pattern: '^[A-Za-z0-9-_]{43}$'
|
|
4531
4568
|
maxLength: 48
|
|
4532
4569
|
description: Condition that must be attached to the transfer by the Payer.
|
|
4533
4570
|
ExtensionList:
|
|
@@ -4541,13 +4578,13 @@ components:
|
|
|
4541
4578
|
QuotesIDPutResponse:
|
|
4542
4579
|
title: QuotesIDPutResponse
|
|
4543
4580
|
type: object
|
|
4544
|
-
description: The object sent in the PUT /quotes/{ID} callback.
|
|
4581
|
+
description: 'The object sent in the PUT /quotes/{ID} callback.'
|
|
4545
4582
|
properties: *ref_56
|
|
4546
4583
|
required: *ref_57
|
|
4547
4584
|
IlpFulfilment:
|
|
4548
4585
|
title: IlpFulfilment
|
|
4549
4586
|
type: string
|
|
4550
|
-
pattern: ^[A-Za-z0-9-_]{43}$
|
|
4587
|
+
pattern: '^[A-Za-z0-9-_]{43}$'
|
|
4551
4588
|
maxLength: 48
|
|
4552
4589
|
description: Fulfilment that must be attached to the transfer by the Payee.
|
|
4553
4590
|
example: WLctttbu2HvTsa1XWvUoGRcQozHsqeu9Ahl2JW9Bsu8
|
|
@@ -4570,13 +4607,13 @@ components:
|
|
|
4570
4607
|
TransfersIDPutResponse:
|
|
4571
4608
|
title: TransfersIDPutResponse
|
|
4572
4609
|
type: object
|
|
4573
|
-
description: The object sent in the PUT /transfers/{ID} callback.
|
|
4610
|
+
description: 'The object sent in the PUT /transfers/{ID} callback.'
|
|
4574
4611
|
properties: *ref_20
|
|
4575
4612
|
required: *ref_21
|
|
4576
4613
|
ErrorCode:
|
|
4577
4614
|
title: ErrorCode
|
|
4578
4615
|
type: string
|
|
4579
|
-
pattern: ^[1-9]\d{3}$
|
|
4616
|
+
pattern: '^[1-9]\d{3}$'
|
|
4580
4617
|
description: >-
|
|
4581
4618
|
The API data type ErrorCode is a JSON String of four characters,
|
|
4582
4619
|
consisting of digits only. Negative numbers are not allowed. A leading
|
|
@@ -4732,6 +4769,21 @@ components:
|
|
|
4732
4769
|
properties: *ref_46
|
|
4733
4770
|
bulkTransactionAcceptQuoteErrorResponse:
|
|
4734
4771
|
allOf: *ref_95
|
|
4772
|
+
ilpPacket:
|
|
4773
|
+
title: IlpPacket
|
|
4774
|
+
type: string
|
|
4775
|
+
pattern: '^[A-Za-z0-9-_]+[=]{0,2}$'
|
|
4776
|
+
minLength: 1
|
|
4777
|
+
maxLength: 32768
|
|
4778
|
+
description: Information for recipient (transport layer information).
|
|
4779
|
+
example: >-
|
|
4780
|
+
AYIBgQAAAAAAAASwNGxldmVsb25lLmRmc3AxLm1lci45T2RTOF81MDdqUUZERmZlakgyOVc4bXFmNEpLMHlGTFGCAUBQU0svMS4wCk5vbmNlOiB1SXlweUYzY3pYSXBFdzVVc05TYWh3CkVuY3J5cHRpb246IG5vbmUKUGF5bWVudC1JZDogMTMyMzZhM2ItOGZhOC00MTYzLTg0NDctNGMzZWQzZGE5OGE3CgpDb250ZW50LUxlbmd0aDogMTM1CkNvbnRlbnQtVHlwZTogYXBwbGljYXRpb24vanNvbgpTZW5kZXItSWRlbnRpZmllcjogOTI4MDYzOTEKCiJ7XCJmZWVcIjowLFwidHJhbnNmZXJDb2RlXCI6XCJpbnZvaWNlXCIsXCJkZWJpdE5hbWVcIjpcImFsaWNlIGNvb3BlclwiLFwiY3JlZGl0TmFtZVwiOlwibWVyIGNoYW50XCIsXCJkZWJpdElkZW50aWZpZXJcIjpcIjkyODA2MzkxXCJ9IgA
|
|
4781
|
+
ilpCondition:
|
|
4782
|
+
title: IlpCondition
|
|
4783
|
+
type: string
|
|
4784
|
+
pattern: '^[A-Za-z0-9-_]{43}$'
|
|
4785
|
+
maxLength: 48
|
|
4786
|
+
description: Condition that must be attached to the transfer by the Payer.
|
|
4735
4787
|
individualTransfer:
|
|
4736
4788
|
title: IndividualTransfer
|
|
4737
4789
|
type: object
|
|
@@ -4810,7 +4862,7 @@ components:
|
|
|
4810
4862
|
TransactionSubScenario:
|
|
4811
4863
|
title: TransactionSubScenario
|
|
4812
4864
|
type: string
|
|
4813
|
-
pattern: ^[A-Z_]{1,32}$
|
|
4865
|
+
pattern: '^[A-Z_]{1,32}$'
|
|
4814
4866
|
description: >-
|
|
4815
4867
|
Possible sub-scenario, defined locally within the scheme (UndefinedEnum
|
|
4816
4868
|
Type).
|
|
@@ -4847,7 +4899,7 @@ components:
|
|
|
4847
4899
|
BalanceOfPayments:
|
|
4848
4900
|
title: BalanceOfPayments
|
|
4849
4901
|
type: string
|
|
4850
|
-
pattern: ^[1-9]\d{2}$
|
|
4902
|
+
pattern: '^[1-9]\d{2}$'
|
|
4851
4903
|
description: >-
|
|
4852
4904
|
(BopCode) The API data type
|
|
4853
4905
|
[BopCode](https://www.imf.org/external/np/sta/bopcode/) is a JSON String
|
|
@@ -4922,7 +4974,7 @@ components:
|
|
|
4922
4974
|
partiesByIdResponse:
|
|
4923
4975
|
title: partiesByIdResponse
|
|
4924
4976
|
type: object
|
|
4925
|
-
description: GET /parties/{Type}/{ID} response object
|
|
4977
|
+
description: 'GET /parties/{Type}/{ID} response object'
|
|
4926
4978
|
properties: *ref_127
|
|
4927
4979
|
required: *ref_128
|
|
4928
4980
|
QuotesPostRequest:
|
|
@@ -4966,7 +5018,7 @@ components:
|
|
|
4966
5018
|
description: Transfer completed successfully
|
|
4967
5019
|
content: *ref_15
|
|
4968
5020
|
transferBadRequest:
|
|
4969
|
-
description: Malformed or missing required body, headers or parameters
|
|
5021
|
+
description: 'Malformed or missing required body, headers or parameters'
|
|
4970
5022
|
content: *ref_143
|
|
4971
5023
|
transferServerError:
|
|
4972
5024
|
description: An error occurred processing the transfer
|
|
@@ -4977,13 +5029,13 @@ components:
|
|
|
4977
5029
|
bulkTransactionAccepted:
|
|
4978
5030
|
description: Bulk transfer accepted successfully
|
|
4979
5031
|
bulkTransferBadRequest:
|
|
4980
|
-
description: Malformed or missing required body, headers or parameters
|
|
5032
|
+
description: 'Malformed or missing required body, headers or parameters'
|
|
4981
5033
|
content: *ref_41
|
|
4982
5034
|
errorResponse:
|
|
4983
5035
|
description: Internal Server Error
|
|
4984
5036
|
content: *ref_42
|
|
4985
5037
|
bulkTransactionPutBadRequest:
|
|
4986
|
-
description: Malformed or missing required body, headers or parameters
|
|
5038
|
+
description: 'Malformed or missing required body, headers or parameters'
|
|
4987
5039
|
content: *ref_144
|
|
4988
5040
|
bulkTransferSuccess:
|
|
4989
5041
|
description: Bulk transfer completed successfully
|
|
@@ -4992,7 +5044,7 @@ components:
|
|
|
4992
5044
|
description: Bulk quote completed successfully
|
|
4993
5045
|
content: *ref_146
|
|
4994
5046
|
bulkQuoteBadRequest:
|
|
4995
|
-
description: Malformed or missing required body, headers or parameters
|
|
5047
|
+
description: 'Malformed or missing required body, headers or parameters'
|
|
4996
5048
|
content: *ref_147
|
|
4997
5049
|
bulkQuoteServerError:
|
|
4998
5050
|
description: An error occurred processing the bulk quote
|
|
@@ -5007,7 +5059,7 @@ components:
|
|
|
5007
5059
|
description: Transfer completed successfully
|
|
5008
5060
|
content: *ref_151
|
|
5009
5061
|
requestToPayTransferBadRequest:
|
|
5010
|
-
description: Malformed or missing required body, headers or parameters
|
|
5062
|
+
description: 'Malformed or missing required body, headers or parameters'
|
|
5011
5063
|
content: *ref_152
|
|
5012
5064
|
accountsCreationCompleted:
|
|
5013
5065
|
description: Accounts creation completed
|
|
@@ -5082,7 +5134,7 @@ components:
|
|
|
5082
5134
|
in: path
|
|
5083
5135
|
required: true
|
|
5084
5136
|
schema: *ref_65
|
|
5085
|
-
description: The type of the party identifier. For example, `MSISDN`, `PERSONAL_ID`.
|
|
5137
|
+
description: 'The type of the party identifier. For example, `MSISDN`, `PERSONAL_ID`.'
|
|
5086
5138
|
ID:
|
|
5087
5139
|
name: ID
|
|
5088
5140
|
in: path
|
|
@@ -9820,6 +9820,22 @@
|
|
|
9820
9820
|
}
|
|
9821
9821
|
]
|
|
9822
9822
|
},
|
|
9823
|
+
"ilpPacket": {
|
|
9824
|
+
"title": "IlpPacket",
|
|
9825
|
+
"type": "string",
|
|
9826
|
+
"pattern": "^[A-Za-z0-9-_]+[=]{0,2}$",
|
|
9827
|
+
"minLength": 1,
|
|
9828
|
+
"maxLength": 32768,
|
|
9829
|
+
"description": "Information for recipient (transport layer information).",
|
|
9830
|
+
"example": "AYIBgQAAAAAAAASwNGxldmVsb25lLmRmc3AxLm1lci45T2RTOF81MDdqUUZERmZlakgyOVc4bXFmNEpLMHlGTFGCAUBQU0svMS4wCk5vbmNlOiB1SXlweUYzY3pYSXBFdzVVc05TYWh3CkVuY3J5cHRpb246IG5vbmUKUGF5bWVudC1JZDogMTMyMzZhM2ItOGZhOC00MTYzLTg0NDctNGMzZWQzZGE5OGE3CgpDb250ZW50LUxlbmd0aDogMTM1CkNvbnRlbnQtVHlwZTogYXBwbGljYXRpb24vanNvbgpTZW5kZXItSWRlbnRpZmllcjogOTI4MDYzOTEKCiJ7XCJmZWVcIjowLFwidHJhbnNmZXJDb2RlXCI6XCJpbnZvaWNlXCIsXCJkZWJpdE5hbWVcIjpcImFsaWNlIGNvb3BlclwiLFwiY3JlZGl0TmFtZVwiOlwibWVyIGNoYW50XCIsXCJkZWJpdElkZW50aWZpZXJcIjpcIjkyODA2MzkxXCJ9IgA"
|
|
9831
|
+
},
|
|
9832
|
+
"ilpCondition": {
|
|
9833
|
+
"title": "IlpCondition",
|
|
9834
|
+
"type": "string",
|
|
9835
|
+
"pattern": "^[A-Za-z0-9-_]{43}$",
|
|
9836
|
+
"maxLength": 48,
|
|
9837
|
+
"description": "Condition that must be attached to the transfer by the Payer."
|
|
9838
|
+
},
|
|
9823
9839
|
"individualTransfer": {
|
|
9824
9840
|
"title": "IndividualTransfer",
|
|
9825
9841
|
"type": "object",
|
|
@@ -10164,6 +10180,22 @@
|
|
|
10164
10180
|
],
|
|
10165
10181
|
"description": "Type of transaction."
|
|
10166
10182
|
},
|
|
10183
|
+
"ilpPacket": {
|
|
10184
|
+
"title": "IlpPacket",
|
|
10185
|
+
"type": "string",
|
|
10186
|
+
"pattern": "^[A-Za-z0-9-_]+[=]{0,2}$",
|
|
10187
|
+
"minLength": 1,
|
|
10188
|
+
"maxLength": 32768,
|
|
10189
|
+
"description": "Information for recipient (transport layer information).",
|
|
10190
|
+
"example": "AYIBgQAAAAAAAASwNGxldmVsb25lLmRmc3AxLm1lci45T2RTOF81MDdqUUZERmZlakgyOVc4bXFmNEpLMHlGTFGCAUBQU0svMS4wCk5vbmNlOiB1SXlweUYzY3pYSXBFdzVVc05TYWh3CkVuY3J5cHRpb246IG5vbmUKUGF5bWVudC1JZDogMTMyMzZhM2ItOGZhOC00MTYzLTg0NDctNGMzZWQzZGE5OGE3CgpDb250ZW50LUxlbmd0aDogMTM1CkNvbnRlbnQtVHlwZTogYXBwbGljYXRpb24vanNvbgpTZW5kZXItSWRlbnRpZmllcjogOTI4MDYzOTEKCiJ7XCJmZWVcIjowLFwidHJhbnNmZXJDb2RlXCI6XCJpbnZvaWNlXCIsXCJkZWJpdE5hbWVcIjpcImFsaWNlIGNvb3BlclwiLFwiY3JlZGl0TmFtZVwiOlwibWVyIGNoYW50XCIsXCJkZWJpdElkZW50aWZpZXJcIjpcIjkyODA2MzkxXCJ9IgA"
|
|
10191
|
+
},
|
|
10192
|
+
"condition": {
|
|
10193
|
+
"title": "IlpCondition",
|
|
10194
|
+
"type": "string",
|
|
10195
|
+
"pattern": "^[A-Za-z0-9-_]{43}$",
|
|
10196
|
+
"maxLength": 48,
|
|
10197
|
+
"description": "Condition that must be attached to the transfer by the Payer."
|
|
10198
|
+
},
|
|
10167
10199
|
"note": {
|
|
10168
10200
|
"title": "Note",
|
|
10169
10201
|
"type": "string",
|
|
@@ -10219,13 +10251,17 @@
|
|
|
10219
10251
|
"to",
|
|
10220
10252
|
"amountType",
|
|
10221
10253
|
"currency",
|
|
10222
|
-
"amount"
|
|
10254
|
+
"amount",
|
|
10255
|
+
"ilpPacket",
|
|
10256
|
+
"condition"
|
|
10223
10257
|
]
|
|
10224
10258
|
},
|
|
10225
10259
|
"bulkTransferRequest": {
|
|
10226
10260
|
"type": "object",
|
|
10227
10261
|
"required": [
|
|
10262
|
+
"bulkTransferId",
|
|
10228
10263
|
"homeTransactionId",
|
|
10264
|
+
"bulkQuoteId",
|
|
10229
10265
|
"from",
|
|
10230
10266
|
"individualTransfers"
|
|
10231
10267
|
],
|
|
@@ -10241,6 +10277,13 @@
|
|
|
10241
10277
|
"description": "Identifier that correlates all messages of the same sequence. The API data type UUID (Universally Unique Identifier) is a JSON String in canonical format, conforming to [RFC 4122](https://tools.ietf.org/html/rfc4122), that is restricted by a regular expression for interoperability reasons. A UUID is always 36 characters long, 32 hexadecimal symbols and 4 dashes (‘-‘).",
|
|
10242
10278
|
"example": "b51ec534-ee48-4575-b6a9-ead2955b8069"
|
|
10243
10279
|
},
|
|
10280
|
+
"bulkQuoteId": {
|
|
10281
|
+
"title": "CorrelationId",
|
|
10282
|
+
"type": "string",
|
|
10283
|
+
"pattern": "^[0-9a-f]{8}-[0-9a-f]{4}-[1-5][0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$",
|
|
10284
|
+
"description": "Identifier that correlates all messages of the same sequence. The API data type UUID (Universally Unique Identifier) is a JSON String in canonical format, conforming to [RFC 4122](https://tools.ietf.org/html/rfc4122), that is restricted by a regular expression for interoperability reasons. A UUID is always 36 characters long, 32 hexadecimal symbols and 4 dashes (‘-‘).",
|
|
10285
|
+
"example": "b51ec534-ee48-4575-b6a9-ead2955b8069"
|
|
10286
|
+
},
|
|
10244
10287
|
"from": {
|
|
10245
10288
|
"type": "object",
|
|
10246
10289
|
"required": [
|
|
@@ -10724,6 +10767,22 @@
|
|
|
10724
10767
|
],
|
|
10725
10768
|
"description": "Type of transaction."
|
|
10726
10769
|
},
|
|
10770
|
+
"ilpPacket": {
|
|
10771
|
+
"title": "IlpPacket",
|
|
10772
|
+
"type": "string",
|
|
10773
|
+
"pattern": "^[A-Za-z0-9-_]+[=]{0,2}$",
|
|
10774
|
+
"minLength": 1,
|
|
10775
|
+
"maxLength": 32768,
|
|
10776
|
+
"description": "Information for recipient (transport layer information).",
|
|
10777
|
+
"example": "AYIBgQAAAAAAAASwNGxldmVsb25lLmRmc3AxLm1lci45T2RTOF81MDdqUUZERmZlakgyOVc4bXFmNEpLMHlGTFGCAUBQU0svMS4wCk5vbmNlOiB1SXlweUYzY3pYSXBFdzVVc05TYWh3CkVuY3J5cHRpb246IG5vbmUKUGF5bWVudC1JZDogMTMyMzZhM2ItOGZhOC00MTYzLTg0NDctNGMzZWQzZGE5OGE3CgpDb250ZW50LUxlbmd0aDogMTM1CkNvbnRlbnQtVHlwZTogYXBwbGljYXRpb24vanNvbgpTZW5kZXItSWRlbnRpZmllcjogOTI4MDYzOTEKCiJ7XCJmZWVcIjowLFwidHJhbnNmZXJDb2RlXCI6XCJpbnZvaWNlXCIsXCJkZWJpdE5hbWVcIjpcImFsaWNlIGNvb3BlclwiLFwiY3JlZGl0TmFtZVwiOlwibWVyIGNoYW50XCIsXCJkZWJpdElkZW50aWZpZXJcIjpcIjkyODA2MzkxXCJ9IgA"
|
|
10778
|
+
},
|
|
10779
|
+
"condition": {
|
|
10780
|
+
"title": "IlpCondition",
|
|
10781
|
+
"type": "string",
|
|
10782
|
+
"pattern": "^[A-Za-z0-9-_]{43}$",
|
|
10783
|
+
"maxLength": 48,
|
|
10784
|
+
"description": "Condition that must be attached to the transfer by the Payer."
|
|
10785
|
+
},
|
|
10727
10786
|
"note": {
|
|
10728
10787
|
"title": "Note",
|
|
10729
10788
|
"type": "string",
|
|
@@ -10779,7 +10838,9 @@
|
|
|
10779
10838
|
"to",
|
|
10780
10839
|
"amountType",
|
|
10781
10840
|
"currency",
|
|
10782
|
-
"amount"
|
|
10841
|
+
"amount",
|
|
10842
|
+
"ilpPacket",
|
|
10843
|
+
"condition"
|
|
10783
10844
|
]
|
|
10784
10845
|
}
|
|
10785
10846
|
},
|
|
@@ -4943,7 +4943,13 @@ export interface paths {
|
|
|
4943
4943
|
* @description Identifier that correlates all messages of the same sequence. The API data type UUID (Universally Unique Identifier) is a JSON String in canonical format, conforming to [RFC 4122](https://tools.ietf.org/html/rfc4122), that is restricted by a regular expression for interoperability reasons. A UUID is always 36 characters long, 32 hexadecimal symbols and 4 dashes (‘-‘).
|
|
4944
4944
|
* @example b51ec534-ee48-4575-b6a9-ead2955b8069
|
|
4945
4945
|
*/
|
|
4946
|
-
bulkTransferId
|
|
4946
|
+
bulkTransferId: string;
|
|
4947
|
+
/**
|
|
4948
|
+
* CorrelationId
|
|
4949
|
+
* @description Identifier that correlates all messages of the same sequence. The API data type UUID (Universally Unique Identifier) is a JSON String in canonical format, conforming to [RFC 4122](https://tools.ietf.org/html/rfc4122), that is restricted by a regular expression for interoperability reasons. A UUID is always 36 characters long, 32 hexadecimal symbols and 4 dashes (‘-‘).
|
|
4950
|
+
* @example b51ec534-ee48-4575-b6a9-ead2955b8069
|
|
4951
|
+
*/
|
|
4952
|
+
bulkQuoteId: string;
|
|
4947
4953
|
from: {
|
|
4948
4954
|
/**
|
|
4949
4955
|
* TransactionInitiatorType
|
|
@@ -5165,6 +5171,17 @@ export interface paths {
|
|
|
5165
5171
|
* @enum {string}
|
|
5166
5172
|
*/
|
|
5167
5173
|
transactionType?: "TRANSFER";
|
|
5174
|
+
/**
|
|
5175
|
+
* IlpPacket
|
|
5176
|
+
* @description Information for recipient (transport layer information).
|
|
5177
|
+
* @example AYIBgQAAAAAAAASwNGxldmVsb25lLmRmc3AxLm1lci45T2RTOF81MDdqUUZERmZlakgyOVc4bXFmNEpLMHlGTFGCAUBQU0svMS4wCk5vbmNlOiB1SXlweUYzY3pYSXBFdzVVc05TYWh3CkVuY3J5cHRpb246IG5vbmUKUGF5bWVudC1JZDogMTMyMzZhM2ItOGZhOC00MTYzLTg0NDctNGMzZWQzZGE5OGE3CgpDb250ZW50LUxlbmd0aDogMTM1CkNvbnRlbnQtVHlwZTogYXBwbGljYXRpb24vanNvbgpTZW5kZXItSWRlbnRpZmllcjogOTI4MDYzOTEKCiJ7XCJmZWVcIjowLFwidHJhbnNmZXJDb2RlXCI6XCJpbnZvaWNlXCIsXCJkZWJpdE5hbWVcIjpcImFsaWNlIGNvb3BlclwiLFwiY3JlZGl0TmFtZVwiOlwibWVyIGNoYW50XCIsXCJkZWJpdElkZW50aWZpZXJcIjpcIjkyODA2MzkxXCJ9IgA
|
|
5178
|
+
*/
|
|
5179
|
+
ilpPacket: string;
|
|
5180
|
+
/**
|
|
5181
|
+
* IlpCondition
|
|
5182
|
+
* @description Condition that must be attached to the transfer by the Payer.
|
|
5183
|
+
*/
|
|
5184
|
+
condition: string;
|
|
5168
5185
|
/**
|
|
5169
5186
|
* Note
|
|
5170
5187
|
* @description Memo assigned to transaction.
|
|
@@ -15238,6 +15255,17 @@ export interface components {
|
|
|
15238
15255
|
} & {
|
|
15239
15256
|
bulkTansferState: unknown;
|
|
15240
15257
|
});
|
|
15258
|
+
/**
|
|
15259
|
+
* IlpPacket
|
|
15260
|
+
* @description Information for recipient (transport layer information).
|
|
15261
|
+
* @example AYIBgQAAAAAAAASwNGxldmVsb25lLmRmc3AxLm1lci45T2RTOF81MDdqUUZERmZlakgyOVc4bXFmNEpLMHlGTFGCAUBQU0svMS4wCk5vbmNlOiB1SXlweUYzY3pYSXBFdzVVc05TYWh3CkVuY3J5cHRpb246IG5vbmUKUGF5bWVudC1JZDogMTMyMzZhM2ItOGZhOC00MTYzLTg0NDctNGMzZWQzZGE5OGE3CgpDb250ZW50LUxlbmd0aDogMTM1CkNvbnRlbnQtVHlwZTogYXBwbGljYXRpb24vanNvbgpTZW5kZXItSWRlbnRpZmllcjogOTI4MDYzOTEKCiJ7XCJmZWVcIjowLFwidHJhbnNmZXJDb2RlXCI6XCJpbnZvaWNlXCIsXCJkZWJpdE5hbWVcIjpcImFsaWNlIGNvb3BlclwiLFwiY3JlZGl0TmFtZVwiOlwibWVyIGNoYW50XCIsXCJkZWJpdElkZW50aWZpZXJcIjpcIjkyODA2MzkxXCJ9IgA
|
|
15262
|
+
*/
|
|
15263
|
+
ilpPacket: string;
|
|
15264
|
+
/**
|
|
15265
|
+
* IlpCondition
|
|
15266
|
+
* @description Condition that must be attached to the transfer by the Payer.
|
|
15267
|
+
*/
|
|
15268
|
+
ilpCondition: string;
|
|
15241
15269
|
/**
|
|
15242
15270
|
* IndividualTransfer
|
|
15243
15271
|
* @description Data model for the complex type 'individualTransfer'.
|
|
@@ -15369,6 +15397,17 @@ export interface components {
|
|
|
15369
15397
|
* @enum {string}
|
|
15370
15398
|
*/
|
|
15371
15399
|
transactionType?: "TRANSFER";
|
|
15400
|
+
/**
|
|
15401
|
+
* IlpPacket
|
|
15402
|
+
* @description Information for recipient (transport layer information).
|
|
15403
|
+
* @example AYIBgQAAAAAAAASwNGxldmVsb25lLmRmc3AxLm1lci45T2RTOF81MDdqUUZERmZlakgyOVc4bXFmNEpLMHlGTFGCAUBQU0svMS4wCk5vbmNlOiB1SXlweUYzY3pYSXBFdzVVc05TYWh3CkVuY3J5cHRpb246IG5vbmUKUGF5bWVudC1JZDogMTMyMzZhM2ItOGZhOC00MTYzLTg0NDctNGMzZWQzZGE5OGE3CgpDb250ZW50LUxlbmd0aDogMTM1CkNvbnRlbnQtVHlwZTogYXBwbGljYXRpb24vanNvbgpTZW5kZXItSWRlbnRpZmllcjogOTI4MDYzOTEKCiJ7XCJmZWVcIjowLFwidHJhbnNmZXJDb2RlXCI6XCJpbnZvaWNlXCIsXCJkZWJpdE5hbWVcIjpcImFsaWNlIGNvb3BlclwiLFwiY3JlZGl0TmFtZVwiOlwibWVyIGNoYW50XCIsXCJkZWJpdElkZW50aWZpZXJcIjpcIjkyODA2MzkxXCJ9IgA
|
|
15404
|
+
*/
|
|
15405
|
+
ilpPacket: string;
|
|
15406
|
+
/**
|
|
15407
|
+
* IlpCondition
|
|
15408
|
+
* @description Condition that must be attached to the transfer by the Payer.
|
|
15409
|
+
*/
|
|
15410
|
+
condition: string;
|
|
15372
15411
|
/**
|
|
15373
15412
|
* Note
|
|
15374
15413
|
* @description Memo assigned to transaction.
|
|
@@ -15403,7 +15442,13 @@ export interface components {
|
|
|
15403
15442
|
* @description Identifier that correlates all messages of the same sequence. The API data type UUID (Universally Unique Identifier) is a JSON String in canonical format, conforming to [RFC 4122](https://tools.ietf.org/html/rfc4122), that is restricted by a regular expression for interoperability reasons. A UUID is always 36 characters long, 32 hexadecimal symbols and 4 dashes (‘-‘).
|
|
15404
15443
|
* @example b51ec534-ee48-4575-b6a9-ead2955b8069
|
|
15405
15444
|
*/
|
|
15406
|
-
bulkTransferId
|
|
15445
|
+
bulkTransferId: string;
|
|
15446
|
+
/**
|
|
15447
|
+
* CorrelationId
|
|
15448
|
+
* @description Identifier that correlates all messages of the same sequence. The API data type UUID (Universally Unique Identifier) is a JSON String in canonical format, conforming to [RFC 4122](https://tools.ietf.org/html/rfc4122), that is restricted by a regular expression for interoperability reasons. A UUID is always 36 characters long, 32 hexadecimal symbols and 4 dashes (‘-‘).
|
|
15449
|
+
* @example b51ec534-ee48-4575-b6a9-ead2955b8069
|
|
15450
|
+
*/
|
|
15451
|
+
bulkQuoteId: string;
|
|
15407
15452
|
from: {
|
|
15408
15453
|
/**
|
|
15409
15454
|
* TransactionInitiatorType
|
|
@@ -15625,6 +15670,17 @@ export interface components {
|
|
|
15625
15670
|
* @enum {string}
|
|
15626
15671
|
*/
|
|
15627
15672
|
transactionType?: "TRANSFER";
|
|
15673
|
+
/**
|
|
15674
|
+
* IlpPacket
|
|
15675
|
+
* @description Information for recipient (transport layer information).
|
|
15676
|
+
* @example AYIBgQAAAAAAAASwNGxldmVsb25lLmRmc3AxLm1lci45T2RTOF81MDdqUUZERmZlakgyOVc4bXFmNEpLMHlGTFGCAUBQU0svMS4wCk5vbmNlOiB1SXlweUYzY3pYSXBFdzVVc05TYWh3CkVuY3J5cHRpb246IG5vbmUKUGF5bWVudC1JZDogMTMyMzZhM2ItOGZhOC00MTYzLTg0NDctNGMzZWQzZGE5OGE3CgpDb250ZW50LUxlbmd0aDogMTM1CkNvbnRlbnQtVHlwZTogYXBwbGljYXRpb24vanNvbgpTZW5kZXItSWRlbnRpZmllcjogOTI4MDYzOTEKCiJ7XCJmZWVcIjowLFwidHJhbnNmZXJDb2RlXCI6XCJpbnZvaWNlXCIsXCJkZWJpdE5hbWVcIjpcImFsaWNlIGNvb3BlclwiLFwiY3JlZGl0TmFtZVwiOlwibWVyIGNoYW50XCIsXCJkZWJpdElkZW50aWZpZXJcIjpcIjkyODA2MzkxXCJ9IgA
|
|
15677
|
+
*/
|
|
15678
|
+
ilpPacket: string;
|
|
15679
|
+
/**
|
|
15680
|
+
* IlpCondition
|
|
15681
|
+
* @description Condition that must be attached to the transfer by the Payer.
|
|
15682
|
+
*/
|
|
15683
|
+
condition: string;
|
|
15628
15684
|
/**
|
|
15629
15685
|
* Note
|
|
15630
15686
|
* @description Memo assigned to transaction.
|
|
@@ -5219,6 +5219,22 @@ export declare namespace Schemas {
|
|
|
5219
5219
|
};
|
|
5220
5220
|
})[];
|
|
5221
5221
|
};
|
|
5222
|
+
const ilpPacket: {
|
|
5223
|
+
title: string;
|
|
5224
|
+
type: string;
|
|
5225
|
+
pattern: string;
|
|
5226
|
+
minLength: number;
|
|
5227
|
+
maxLength: number;
|
|
5228
|
+
description: string;
|
|
5229
|
+
example: string;
|
|
5230
|
+
};
|
|
5231
|
+
const ilpCondition: {
|
|
5232
|
+
title: string;
|
|
5233
|
+
type: string;
|
|
5234
|
+
pattern: string;
|
|
5235
|
+
maxLength: number;
|
|
5236
|
+
description: string;
|
|
5237
|
+
};
|
|
5222
5238
|
const individualTransfer: {
|
|
5223
5239
|
title: string;
|
|
5224
5240
|
type: string;
|
|
@@ -5373,6 +5389,22 @@ export declare namespace Schemas {
|
|
|
5373
5389
|
enum: string[];
|
|
5374
5390
|
description: string;
|
|
5375
5391
|
};
|
|
5392
|
+
ilpPacket: {
|
|
5393
|
+
title: string;
|
|
5394
|
+
type: string;
|
|
5395
|
+
pattern: string;
|
|
5396
|
+
minLength: number;
|
|
5397
|
+
maxLength: number;
|
|
5398
|
+
description: string;
|
|
5399
|
+
example: string;
|
|
5400
|
+
};
|
|
5401
|
+
condition: {
|
|
5402
|
+
title: string;
|
|
5403
|
+
type: string;
|
|
5404
|
+
pattern: string;
|
|
5405
|
+
maxLength: number;
|
|
5406
|
+
description: string;
|
|
5407
|
+
};
|
|
5376
5408
|
note: {
|
|
5377
5409
|
title: string;
|
|
5378
5410
|
type: string;
|
|
@@ -5435,6 +5467,13 @@ export declare namespace Schemas {
|
|
|
5435
5467
|
description: string;
|
|
5436
5468
|
example: string;
|
|
5437
5469
|
};
|
|
5470
|
+
bulkQuoteId: {
|
|
5471
|
+
title: string;
|
|
5472
|
+
type: string;
|
|
5473
|
+
pattern: string;
|
|
5474
|
+
description: string;
|
|
5475
|
+
example: string;
|
|
5476
|
+
};
|
|
5438
5477
|
from: {
|
|
5439
5478
|
type: string;
|
|
5440
5479
|
required: string[];
|
|
@@ -5708,6 +5747,22 @@ export declare namespace Schemas {
|
|
|
5708
5747
|
enum: string[];
|
|
5709
5748
|
description: string;
|
|
5710
5749
|
};
|
|
5750
|
+
ilpPacket: {
|
|
5751
|
+
title: string;
|
|
5752
|
+
type: string;
|
|
5753
|
+
pattern: string;
|
|
5754
|
+
minLength: number;
|
|
5755
|
+
maxLength: number;
|
|
5756
|
+
description: string;
|
|
5757
|
+
example: string;
|
|
5758
|
+
};
|
|
5759
|
+
condition: {
|
|
5760
|
+
title: string;
|
|
5761
|
+
type: string;
|
|
5762
|
+
pattern: string;
|
|
5763
|
+
maxLength: number;
|
|
5764
|
+
description: string;
|
|
5765
|
+
};
|
|
5711
5766
|
note: {
|
|
5712
5767
|
title: string;
|
|
5713
5768
|
type: string;
|
|
@@ -76,6 +76,8 @@ var Schemas;
|
|
|
76
76
|
Schemas.bulkTransactionAcceptPartyErrorResponse = json_schemas_json_1.default.bulkTransactionAcceptPartyErrorResponse;
|
|
77
77
|
Schemas.quoteError = json_schemas_json_1.default.quoteError;
|
|
78
78
|
Schemas.bulkTransactionAcceptQuoteErrorResponse = json_schemas_json_1.default.bulkTransactionAcceptQuoteErrorResponse;
|
|
79
|
+
Schemas.ilpPacket = json_schemas_json_1.default.ilpPacket;
|
|
80
|
+
Schemas.ilpCondition = json_schemas_json_1.default.ilpCondition;
|
|
79
81
|
Schemas.individualTransfer = json_schemas_json_1.default.individualTransfer;
|
|
80
82
|
Schemas.bulkTransferRequest = json_schemas_json_1.default.bulkTransferRequest;
|
|
81
83
|
Schemas.individualTransferFulfilment = json_schemas_json_1.default.individualTransferFulfilment;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"schemas.js","sourceRoot":"","sources":["../../../../src/sdk-scheme-adapter/v2_0_0/outbound/schemas.ts"],"names":[],"mappings":";AAAA,oDAAoD;;;;AAEpD,kEAAkE;AAElE,oFAA6C;AAE7C,IAAiB,OAAO,
|
|
1
|
+
{"version":3,"file":"schemas.js","sourceRoot":"","sources":["../../../../src/sdk-scheme-adapter/v2_0_0/outbound/schemas.ts"],"names":[],"mappings":"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"}
|
|
@@ -70,6 +70,8 @@ export declare namespace Types {
|
|
|
70
70
|
type bulkTransactionAcceptPartyErrorResponse = components['schemas']['bulkTransactionAcceptPartyErrorResponse'];
|
|
71
71
|
type quoteError = components['schemas']['quoteError'];
|
|
72
72
|
type bulkTransactionAcceptQuoteErrorResponse = components['schemas']['bulkTransactionAcceptQuoteErrorResponse'];
|
|
73
|
+
type ilpPacket = components['schemas']['ilpPacket'];
|
|
74
|
+
type ilpCondition = components['schemas']['ilpCondition'];
|
|
73
75
|
type individualTransfer = components['schemas']['individualTransfer'];
|
|
74
76
|
type bulkTransferRequest = components['schemas']['bulkTransferRequest'];
|
|
75
77
|
type individualTransferFulfilment = components['schemas']['individualTransferFulfilment'];
|
package/package.json
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
type: object
|
|
2
2
|
required:
|
|
3
|
+
- bulkTransferId
|
|
3
4
|
- homeTransactionId
|
|
5
|
+
- bulkQuoteId
|
|
4
6
|
- from
|
|
5
7
|
- individualTransfers
|
|
6
8
|
properties:
|
|
@@ -11,6 +13,8 @@ properties:
|
|
|
11
13
|
between the Switch and DFSP backend systems.
|
|
12
14
|
bulkTransferId:
|
|
13
15
|
$ref: ./CorrelationId.yaml
|
|
16
|
+
bulkQuoteId:
|
|
17
|
+
$ref: ./CorrelationId.yaml
|
|
14
18
|
from:
|
|
15
19
|
$ref: ./transferParty.yaml
|
|
16
20
|
individualTransfers:
|
|
@@ -14,6 +14,10 @@ properties:
|
|
|
14
14
|
$ref: ./Amount.yaml
|
|
15
15
|
transactionType:
|
|
16
16
|
$ref: ./transferTransactionType.yaml
|
|
17
|
+
ilpPacket:
|
|
18
|
+
$ref: ./ilpPacket.yaml
|
|
19
|
+
condition:
|
|
20
|
+
$ref: ./ilpCondition.yaml
|
|
17
21
|
note:
|
|
18
22
|
$ref: ./Note.yaml
|
|
19
23
|
extensions:
|
|
@@ -24,3 +28,5 @@ required:
|
|
|
24
28
|
- amountType
|
|
25
29
|
- currency
|
|
26
30
|
- amount
|
|
31
|
+
- ilpPacket
|
|
32
|
+
- condition
|