@mojaloop/api-snippets 17.2.0-snapshot.2 → 17.2.0
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 +7 -0
- package/docs/sdk-scheme-adapter-outbound-v2_0_0-openapi3-snippets.yaml +105 -2
- package/lib/sdk-scheme-adapter/v2_0_0/outbound/json-schemas.json +1233 -905
- package/lib/sdk-scheme-adapter/v2_0_0/outbound/openapi.d.ts +57 -2
- package/lib/sdk-scheme-adapter/v2_0_0/outbound/schemas.d.ts +457 -160
- package/lib/sdk-scheme-adapter/v2_0_0/outbound/schemas.js +4 -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 +4 -0
- package/package.json +9 -9
- package/sdk-scheme-adapter/v2_0_0/components/schemas/AuthenticationInfo.yaml +11 -0
- package/sdk-scheme-adapter/v2_0_0/components/schemas/AuthenticationValue.yaml +44 -0
- package/sdk-scheme-adapter/v2_0_0/components/schemas/AuthorizationIDPutResponse.yaml +10 -0
- package/sdk-scheme-adapter/v2_0_0/components/schemas/AuthorizationResponseType.yaml +12 -0
- package/sdk-scheme-adapter/v2_0_0/components/schemas/requestToPayTransferResponse.yaml +25 -2
@@ -21206,6 +21206,214 @@
|
|
21206
21206
|
}
|
21207
21207
|
}
|
21208
21208
|
},
|
21209
|
+
"AuthenticationValue": {
|
21210
|
+
"title": "AuthenticationValue",
|
21211
|
+
"anyOf": [
|
21212
|
+
{
|
21213
|
+
"title": "OtpValue",
|
21214
|
+
"type": "string",
|
21215
|
+
"pattern": "^\\d{3,10}$",
|
21216
|
+
"description": "The API data type OtpValue is a JSON String of 3 to 10 characters, consisting of digits only. Negative numbers are not allowed. One or more leading zeros are allowed."
|
21217
|
+
},
|
21218
|
+
{
|
21219
|
+
"title": "QRCODE",
|
21220
|
+
"type": "string",
|
21221
|
+
"minLength": 1,
|
21222
|
+
"maxLength": 64,
|
21223
|
+
"description": "QR code used as a One Time Password."
|
21224
|
+
},
|
21225
|
+
{
|
21226
|
+
"title": "U2FPinValue",
|
21227
|
+
"type": "object",
|
21228
|
+
"description": "U2F challenge-response, where payer FSP verifies if the response provided by end-user device matches the previously registered key.\n",
|
21229
|
+
"properties": {
|
21230
|
+
"pinValue": {
|
21231
|
+
"type": "string",
|
21232
|
+
"pattern": "^\\S{1,64}$",
|
21233
|
+
"minLength": 1,
|
21234
|
+
"maxLength": 64,
|
21235
|
+
"description": "U2F challenge-response, where payer FSP verifies if the response provided by end-user device matches the previously registered key.\n"
|
21236
|
+
},
|
21237
|
+
"counter": {
|
21238
|
+
"title": "Integer",
|
21239
|
+
"type": "string",
|
21240
|
+
"pattern": "^[1-9]\\d*$",
|
21241
|
+
"description": "Sequential counter used for cloning detection. Present only for U2F authentication."
|
21242
|
+
}
|
21243
|
+
},
|
21244
|
+
"required": [
|
21245
|
+
"pinValue",
|
21246
|
+
"counter"
|
21247
|
+
]
|
21248
|
+
}
|
21249
|
+
],
|
21250
|
+
"pattern": "^\\d{3,10}$|^\\S{1,64}$",
|
21251
|
+
"description": "Contains the authentication value. The format depends on the authentication type used in the AuthenticationInfo complex type."
|
21252
|
+
},
|
21253
|
+
"AuthenticationInfo": {
|
21254
|
+
"title": "AuthenticationInfo",
|
21255
|
+
"type": "object",
|
21256
|
+
"description": "Data model for the complex type AuthenticationInfo.",
|
21257
|
+
"properties": {
|
21258
|
+
"authentication": {
|
21259
|
+
"title": "AuthenticationType",
|
21260
|
+
"type": "string",
|
21261
|
+
"enum": [
|
21262
|
+
"OTP",
|
21263
|
+
"QRCODE",
|
21264
|
+
"U2F"
|
21265
|
+
],
|
21266
|
+
"description": "Below are the allowed values for the enumeration AuthenticationType.\n- OTP - One-time password generated by the Payer FSP.\n- QRCODE - QR code used as One Time Password.\n- U2F - U2F is a new addition isolated to Thirdparty stream.",
|
21267
|
+
"example": "OTP"
|
21268
|
+
},
|
21269
|
+
"authenticationValue": {
|
21270
|
+
"title": "AuthenticationValue",
|
21271
|
+
"anyOf": [
|
21272
|
+
{
|
21273
|
+
"title": "OtpValue",
|
21274
|
+
"type": "string",
|
21275
|
+
"pattern": "^\\d{3,10}$",
|
21276
|
+
"description": "The API data type OtpValue is a JSON String of 3 to 10 characters, consisting of digits only. Negative numbers are not allowed. One or more leading zeros are allowed."
|
21277
|
+
},
|
21278
|
+
{
|
21279
|
+
"title": "QRCODE",
|
21280
|
+
"type": "string",
|
21281
|
+
"minLength": 1,
|
21282
|
+
"maxLength": 64,
|
21283
|
+
"description": "QR code used as a One Time Password."
|
21284
|
+
},
|
21285
|
+
{
|
21286
|
+
"title": "U2FPinValue",
|
21287
|
+
"type": "object",
|
21288
|
+
"description": "U2F challenge-response, where payer FSP verifies if the response provided by end-user device matches the previously registered key.\n",
|
21289
|
+
"properties": {
|
21290
|
+
"pinValue": {
|
21291
|
+
"type": "string",
|
21292
|
+
"pattern": "^\\S{1,64}$",
|
21293
|
+
"minLength": 1,
|
21294
|
+
"maxLength": 64,
|
21295
|
+
"description": "U2F challenge-response, where payer FSP verifies if the response provided by end-user device matches the previously registered key.\n"
|
21296
|
+
},
|
21297
|
+
"counter": {
|
21298
|
+
"title": "Integer",
|
21299
|
+
"type": "string",
|
21300
|
+
"pattern": "^[1-9]\\d*$",
|
21301
|
+
"description": "Sequential counter used for cloning detection. Present only for U2F authentication."
|
21302
|
+
}
|
21303
|
+
},
|
21304
|
+
"required": [
|
21305
|
+
"pinValue",
|
21306
|
+
"counter"
|
21307
|
+
]
|
21308
|
+
}
|
21309
|
+
],
|
21310
|
+
"pattern": "^\\d{3,10}$|^\\S{1,64}$",
|
21311
|
+
"description": "Contains the authentication value. The format depends on the authentication type used in the AuthenticationInfo complex type."
|
21312
|
+
}
|
21313
|
+
},
|
21314
|
+
"required": [
|
21315
|
+
"authentication",
|
21316
|
+
"authenticationValue"
|
21317
|
+
]
|
21318
|
+
},
|
21319
|
+
"AuthorizationResponseType": {
|
21320
|
+
"title": "AuthorizationResponseType",
|
21321
|
+
"type": "string",
|
21322
|
+
"enum": [
|
21323
|
+
"ENTERED",
|
21324
|
+
"REJECTED",
|
21325
|
+
"RESEND"
|
21326
|
+
],
|
21327
|
+
"description": "Below are the allowed values for the enumeration.\n- ENTERED - Consumer entered the authentication value.\n- REJECTED - Consumer rejected the transaction.\n- RESEND - Consumer requested to resend the authentication value.",
|
21328
|
+
"example": "ENTERED"
|
21329
|
+
},
|
21330
|
+
"AuthorizationIDPutResponse": {
|
21331
|
+
"title": "AuthorizationIDPutResponse",
|
21332
|
+
"type": "object",
|
21333
|
+
"description": "The object sent in the PUT /authorizations/{ID} callback.",
|
21334
|
+
"properties": {
|
21335
|
+
"authenticationInfo": {
|
21336
|
+
"title": "AuthenticationInfo",
|
21337
|
+
"type": "object",
|
21338
|
+
"description": "Data model for the complex type AuthenticationInfo.",
|
21339
|
+
"properties": {
|
21340
|
+
"authentication": {
|
21341
|
+
"title": "AuthenticationType",
|
21342
|
+
"type": "string",
|
21343
|
+
"enum": [
|
21344
|
+
"OTP",
|
21345
|
+
"QRCODE",
|
21346
|
+
"U2F"
|
21347
|
+
],
|
21348
|
+
"description": "Below are the allowed values for the enumeration AuthenticationType.\n- OTP - One-time password generated by the Payer FSP.\n- QRCODE - QR code used as One Time Password.\n- U2F - U2F is a new addition isolated to Thirdparty stream.",
|
21349
|
+
"example": "OTP"
|
21350
|
+
},
|
21351
|
+
"authenticationValue": {
|
21352
|
+
"title": "AuthenticationValue",
|
21353
|
+
"anyOf": [
|
21354
|
+
{
|
21355
|
+
"title": "OtpValue",
|
21356
|
+
"type": "string",
|
21357
|
+
"pattern": "^\\d{3,10}$",
|
21358
|
+
"description": "The API data type OtpValue is a JSON String of 3 to 10 characters, consisting of digits only. Negative numbers are not allowed. One or more leading zeros are allowed."
|
21359
|
+
},
|
21360
|
+
{
|
21361
|
+
"title": "QRCODE",
|
21362
|
+
"type": "string",
|
21363
|
+
"minLength": 1,
|
21364
|
+
"maxLength": 64,
|
21365
|
+
"description": "QR code used as a One Time Password."
|
21366
|
+
},
|
21367
|
+
{
|
21368
|
+
"title": "U2FPinValue",
|
21369
|
+
"type": "object",
|
21370
|
+
"description": "U2F challenge-response, where payer FSP verifies if the response provided by end-user device matches the previously registered key.\n",
|
21371
|
+
"properties": {
|
21372
|
+
"pinValue": {
|
21373
|
+
"type": "string",
|
21374
|
+
"pattern": "^\\S{1,64}$",
|
21375
|
+
"minLength": 1,
|
21376
|
+
"maxLength": 64,
|
21377
|
+
"description": "U2F challenge-response, where payer FSP verifies if the response provided by end-user device matches the previously registered key.\n"
|
21378
|
+
},
|
21379
|
+
"counter": {
|
21380
|
+
"title": "Integer",
|
21381
|
+
"type": "string",
|
21382
|
+
"pattern": "^[1-9]\\d*$",
|
21383
|
+
"description": "Sequential counter used for cloning detection. Present only for U2F authentication."
|
21384
|
+
}
|
21385
|
+
},
|
21386
|
+
"required": [
|
21387
|
+
"pinValue",
|
21388
|
+
"counter"
|
21389
|
+
]
|
21390
|
+
}
|
21391
|
+
],
|
21392
|
+
"pattern": "^\\d{3,10}$|^\\S{1,64}$",
|
21393
|
+
"description": "Contains the authentication value. The format depends on the authentication type used in the AuthenticationInfo complex type."
|
21394
|
+
}
|
21395
|
+
},
|
21396
|
+
"required": [
|
21397
|
+
"authentication",
|
21398
|
+
"authenticationValue"
|
21399
|
+
]
|
21400
|
+
},
|
21401
|
+
"responseType": {
|
21402
|
+
"title": "AuthorizationResponseType",
|
21403
|
+
"type": "string",
|
21404
|
+
"enum": [
|
21405
|
+
"ENTERED",
|
21406
|
+
"REJECTED",
|
21407
|
+
"RESEND"
|
21408
|
+
],
|
21409
|
+
"description": "Below are the allowed values for the enumeration.\n- ENTERED - Consumer entered the authentication value.\n- REJECTED - Consumer rejected the transaction.\n- RESEND - Consumer requested to resend the authentication value.",
|
21410
|
+
"example": "ENTERED"
|
21411
|
+
}
|
21412
|
+
},
|
21413
|
+
"required": [
|
21414
|
+
"responseType"
|
21415
|
+
]
|
21416
|
+
},
|
21209
21417
|
"requestToPayTransferResponse": {
|
21210
21418
|
"type": "object",
|
21211
21419
|
"required": [
|
@@ -21727,952 +21935,1072 @@
|
|
21727
21935
|
"example": "b51ec534-ee48-4575-b6a9-ead2955b8069"
|
21728
21936
|
},
|
21729
21937
|
"quoteResponse": {
|
21730
|
-
"title": "QuotesIDPutResponse",
|
21731
21938
|
"type": "object",
|
21732
|
-
"
|
21939
|
+
"required": [
|
21940
|
+
"body"
|
21941
|
+
],
|
21733
21942
|
"properties": {
|
21734
|
-
"
|
21735
|
-
"title": "
|
21943
|
+
"body": {
|
21944
|
+
"title": "QuotesIDPutResponse",
|
21736
21945
|
"type": "object",
|
21737
|
-
"description": "
|
21946
|
+
"description": "The object sent in the PUT /quotes/{ID} callback.",
|
21738
21947
|
"properties": {
|
21739
|
-
"
|
21740
|
-
"title": "
|
21741
|
-
"
|
21742
|
-
"
|
21743
|
-
"
|
21744
|
-
|
21745
|
-
|
21746
|
-
|
21747
|
-
|
21748
|
-
|
21749
|
-
|
21750
|
-
|
21751
|
-
|
21752
|
-
|
21753
|
-
|
21754
|
-
|
21755
|
-
|
21756
|
-
|
21757
|
-
|
21758
|
-
|
21759
|
-
|
21760
|
-
|
21761
|
-
|
21762
|
-
|
21763
|
-
|
21764
|
-
|
21765
|
-
|
21766
|
-
|
21767
|
-
|
21768
|
-
|
21769
|
-
|
21770
|
-
|
21771
|
-
|
21772
|
-
|
21773
|
-
|
21774
|
-
|
21775
|
-
|
21776
|
-
|
21777
|
-
|
21778
|
-
|
21779
|
-
|
21780
|
-
|
21781
|
-
|
21782
|
-
|
21783
|
-
|
21784
|
-
|
21785
|
-
|
21786
|
-
|
21787
|
-
|
21788
|
-
|
21789
|
-
|
21790
|
-
|
21791
|
-
|
21792
|
-
|
21793
|
-
|
21794
|
-
|
21795
|
-
|
21796
|
-
|
21797
|
-
|
21798
|
-
|
21799
|
-
|
21800
|
-
|
21801
|
-
|
21802
|
-
|
21803
|
-
|
21804
|
-
|
21805
|
-
|
21806
|
-
|
21807
|
-
|
21808
|
-
|
21809
|
-
|
21810
|
-
|
21811
|
-
|
21812
|
-
|
21813
|
-
|
21814
|
-
|
21815
|
-
|
21816
|
-
|
21817
|
-
|
21818
|
-
|
21819
|
-
|
21820
|
-
|
21821
|
-
|
21822
|
-
|
21823
|
-
|
21824
|
-
|
21825
|
-
|
21826
|
-
|
21827
|
-
|
21828
|
-
|
21829
|
-
|
21830
|
-
|
21831
|
-
|
21832
|
-
|
21833
|
-
|
21834
|
-
|
21835
|
-
|
21836
|
-
|
21837
|
-
|
21838
|
-
|
21839
|
-
|
21840
|
-
|
21841
|
-
|
21842
|
-
|
21843
|
-
|
21844
|
-
|
21845
|
-
|
21846
|
-
|
21847
|
-
|
21848
|
-
|
21849
|
-
|
21850
|
-
|
21851
|
-
|
21852
|
-
|
21853
|
-
|
21854
|
-
|
21855
|
-
|
21856
|
-
|
21857
|
-
|
21858
|
-
|
21859
|
-
|
21860
|
-
|
21861
|
-
|
21862
|
-
|
21863
|
-
|
21864
|
-
|
21865
|
-
|
21866
|
-
|
21867
|
-
|
21868
|
-
|
21869
|
-
|
21870
|
-
|
21871
|
-
|
21872
|
-
|
21873
|
-
|
21874
|
-
|
21875
|
-
|
21876
|
-
|
21877
|
-
|
21878
|
-
|
21879
|
-
|
21880
|
-
|
21881
|
-
|
21882
|
-
|
21883
|
-
|
21884
|
-
|
21885
|
-
|
21886
|
-
|
21887
|
-
|
21888
|
-
|
21889
|
-
|
21890
|
-
|
21891
|
-
|
21892
|
-
|
21893
|
-
|
21894
|
-
|
21895
|
-
|
21896
|
-
|
21897
|
-
|
21898
|
-
|
21899
|
-
|
21900
|
-
|
21901
|
-
|
21902
|
-
|
21903
|
-
|
21904
|
-
|
21905
|
-
|
21906
|
-
|
21907
|
-
|
21908
|
-
|
21909
|
-
|
21948
|
+
"transferAmount": {
|
21949
|
+
"title": "Money",
|
21950
|
+
"type": "object",
|
21951
|
+
"description": "Data model for the complex type Money.",
|
21952
|
+
"properties": {
|
21953
|
+
"currency": {
|
21954
|
+
"title": "Currency",
|
21955
|
+
"description": "The currency codes defined in [ISO 4217](https://www.iso.org/iso-4217-currency-codes.html) as three-letter alphabetic codes are used as the standard naming representation for currencies.",
|
21956
|
+
"type": "string",
|
21957
|
+
"minLength": 3,
|
21958
|
+
"maxLength": 3,
|
21959
|
+
"enum": [
|
21960
|
+
"AED",
|
21961
|
+
"AFN",
|
21962
|
+
"ALL",
|
21963
|
+
"AMD",
|
21964
|
+
"ANG",
|
21965
|
+
"AOA",
|
21966
|
+
"ARS",
|
21967
|
+
"AUD",
|
21968
|
+
"AWG",
|
21969
|
+
"AZN",
|
21970
|
+
"BAM",
|
21971
|
+
"BBD",
|
21972
|
+
"BDT",
|
21973
|
+
"BGN",
|
21974
|
+
"BHD",
|
21975
|
+
"BIF",
|
21976
|
+
"BMD",
|
21977
|
+
"BND",
|
21978
|
+
"BOB",
|
21979
|
+
"BRL",
|
21980
|
+
"BSD",
|
21981
|
+
"BTN",
|
21982
|
+
"BWP",
|
21983
|
+
"BYN",
|
21984
|
+
"BZD",
|
21985
|
+
"CAD",
|
21986
|
+
"CDF",
|
21987
|
+
"CHF",
|
21988
|
+
"CLP",
|
21989
|
+
"CNY",
|
21990
|
+
"COP",
|
21991
|
+
"CRC",
|
21992
|
+
"CUC",
|
21993
|
+
"CUP",
|
21994
|
+
"CVE",
|
21995
|
+
"CZK",
|
21996
|
+
"DJF",
|
21997
|
+
"DKK",
|
21998
|
+
"DOP",
|
21999
|
+
"DZD",
|
22000
|
+
"EGP",
|
22001
|
+
"ERN",
|
22002
|
+
"ETB",
|
22003
|
+
"EUR",
|
22004
|
+
"FJD",
|
22005
|
+
"FKP",
|
22006
|
+
"GBP",
|
22007
|
+
"GEL",
|
22008
|
+
"GGP",
|
22009
|
+
"GHS",
|
22010
|
+
"GIP",
|
22011
|
+
"GMD",
|
22012
|
+
"GNF",
|
22013
|
+
"GTQ",
|
22014
|
+
"GYD",
|
22015
|
+
"HKD",
|
22016
|
+
"HNL",
|
22017
|
+
"HRK",
|
22018
|
+
"HTG",
|
22019
|
+
"HUF",
|
22020
|
+
"IDR",
|
22021
|
+
"ILS",
|
22022
|
+
"IMP",
|
22023
|
+
"INR",
|
22024
|
+
"IQD",
|
22025
|
+
"IRR",
|
22026
|
+
"ISK",
|
22027
|
+
"JEP",
|
22028
|
+
"JMD",
|
22029
|
+
"JOD",
|
22030
|
+
"JPY",
|
22031
|
+
"KES",
|
22032
|
+
"KGS",
|
22033
|
+
"KHR",
|
22034
|
+
"KMF",
|
22035
|
+
"KPW",
|
22036
|
+
"KRW",
|
22037
|
+
"KWD",
|
22038
|
+
"KYD",
|
22039
|
+
"KZT",
|
22040
|
+
"LAK",
|
22041
|
+
"LBP",
|
22042
|
+
"LKR",
|
22043
|
+
"LRD",
|
22044
|
+
"LSL",
|
22045
|
+
"LYD",
|
22046
|
+
"MAD",
|
22047
|
+
"MDL",
|
22048
|
+
"MGA",
|
22049
|
+
"MKD",
|
22050
|
+
"MMK",
|
22051
|
+
"MNT",
|
22052
|
+
"MOP",
|
22053
|
+
"MRO",
|
22054
|
+
"MUR",
|
22055
|
+
"MVR",
|
22056
|
+
"MWK",
|
22057
|
+
"MXN",
|
22058
|
+
"MYR",
|
22059
|
+
"MZN",
|
22060
|
+
"NAD",
|
22061
|
+
"NGN",
|
22062
|
+
"NIO",
|
22063
|
+
"NOK",
|
22064
|
+
"NPR",
|
22065
|
+
"NZD",
|
22066
|
+
"OMR",
|
22067
|
+
"PAB",
|
22068
|
+
"PEN",
|
22069
|
+
"PGK",
|
22070
|
+
"PHP",
|
22071
|
+
"PKR",
|
22072
|
+
"PLN",
|
22073
|
+
"PYG",
|
22074
|
+
"QAR",
|
22075
|
+
"RON",
|
22076
|
+
"RSD",
|
22077
|
+
"RUB",
|
22078
|
+
"RWF",
|
22079
|
+
"SAR",
|
22080
|
+
"SBD",
|
22081
|
+
"SCR",
|
22082
|
+
"SDG",
|
22083
|
+
"SEK",
|
22084
|
+
"SGD",
|
22085
|
+
"SHP",
|
22086
|
+
"SLL",
|
22087
|
+
"SOS",
|
22088
|
+
"SPL",
|
22089
|
+
"SRD",
|
22090
|
+
"STD",
|
22091
|
+
"SVC",
|
22092
|
+
"SYP",
|
22093
|
+
"SZL",
|
22094
|
+
"THB",
|
22095
|
+
"TJS",
|
22096
|
+
"TMT",
|
22097
|
+
"TND",
|
22098
|
+
"TOP",
|
22099
|
+
"TRY",
|
22100
|
+
"TTD",
|
22101
|
+
"TVD",
|
22102
|
+
"TWD",
|
22103
|
+
"TZS",
|
22104
|
+
"UAH",
|
22105
|
+
"UGX",
|
22106
|
+
"USD",
|
22107
|
+
"UYU",
|
22108
|
+
"UZS",
|
22109
|
+
"VEF",
|
22110
|
+
"VND",
|
22111
|
+
"VUV",
|
22112
|
+
"WST",
|
22113
|
+
"XAF",
|
22114
|
+
"XCD",
|
22115
|
+
"XDR",
|
22116
|
+
"XOF",
|
22117
|
+
"XPF",
|
22118
|
+
"XTS",
|
22119
|
+
"XXX",
|
22120
|
+
"YER",
|
22121
|
+
"ZAR",
|
22122
|
+
"ZMW",
|
22123
|
+
"ZWD"
|
22124
|
+
]
|
22125
|
+
},
|
22126
|
+
"amount": {
|
22127
|
+
"title": "Amount",
|
22128
|
+
"type": "string",
|
22129
|
+
"pattern": "^([0]|([1-9][0-9]{0,17}))([.][0-9]{0,3}[1-9])?$",
|
22130
|
+
"description": "The API data type Amount is a JSON String in a canonical format that is restricted by a regular expression for interoperability reasons. This pattern does not allow any trailing zeroes at all, but allows an amount without a minor currency unit. It also only allows four digits in the minor currency unit; a negative value is not allowed. Using more than 18 digits in the major currency unit is not allowed.",
|
22131
|
+
"example": "123.45"
|
22132
|
+
}
|
22133
|
+
},
|
22134
|
+
"required": [
|
22135
|
+
"currency",
|
22136
|
+
"amount"
|
21910
22137
|
]
|
21911
22138
|
},
|
21912
|
-
"
|
21913
|
-
"title": "
|
21914
|
-
"type": "
|
21915
|
-
"
|
21916
|
-
"
|
21917
|
-
|
21918
|
-
|
21919
|
-
|
21920
|
-
|
21921
|
-
|
21922
|
-
|
21923
|
-
|
21924
|
-
|
21925
|
-
|
21926
|
-
|
21927
|
-
|
21928
|
-
|
21929
|
-
|
21930
|
-
|
21931
|
-
|
21932
|
-
|
21933
|
-
|
21934
|
-
|
21935
|
-
|
21936
|
-
|
21937
|
-
|
21938
|
-
|
21939
|
-
|
21940
|
-
|
21941
|
-
|
21942
|
-
|
21943
|
-
|
21944
|
-
|
21945
|
-
|
21946
|
-
|
21947
|
-
|
21948
|
-
|
21949
|
-
|
21950
|
-
|
21951
|
-
|
21952
|
-
|
21953
|
-
|
21954
|
-
|
21955
|
-
|
21956
|
-
|
21957
|
-
|
21958
|
-
|
21959
|
-
|
21960
|
-
|
21961
|
-
|
21962
|
-
|
21963
|
-
|
21964
|
-
|
21965
|
-
|
21966
|
-
|
21967
|
-
|
21968
|
-
|
21969
|
-
|
21970
|
-
|
21971
|
-
|
21972
|
-
|
21973
|
-
|
21974
|
-
|
21975
|
-
|
21976
|
-
|
21977
|
-
|
21978
|
-
|
21979
|
-
|
21980
|
-
|
21981
|
-
|
21982
|
-
|
21983
|
-
|
21984
|
-
|
21985
|
-
|
21986
|
-
|
21987
|
-
|
21988
|
-
|
21989
|
-
|
21990
|
-
|
21991
|
-
|
21992
|
-
|
21993
|
-
|
21994
|
-
|
21995
|
-
|
21996
|
-
|
21997
|
-
|
21998
|
-
|
21999
|
-
|
22000
|
-
|
22001
|
-
|
22002
|
-
|
22003
|
-
|
22004
|
-
|
22005
|
-
|
22006
|
-
|
22007
|
-
|
22008
|
-
|
22009
|
-
|
22010
|
-
|
22011
|
-
|
22012
|
-
|
22013
|
-
|
22014
|
-
|
22015
|
-
|
22016
|
-
|
22017
|
-
|
22018
|
-
|
22019
|
-
|
22020
|
-
|
22021
|
-
|
22022
|
-
|
22023
|
-
|
22024
|
-
|
22025
|
-
|
22026
|
-
|
22027
|
-
|
22028
|
-
|
22029
|
-
|
22030
|
-
|
22031
|
-
|
22032
|
-
|
22033
|
-
|
22034
|
-
|
22035
|
-
|
22036
|
-
|
22037
|
-
|
22038
|
-
|
22039
|
-
|
22040
|
-
|
22041
|
-
|
22042
|
-
|
22043
|
-
|
22044
|
-
|
22045
|
-
|
22046
|
-
|
22047
|
-
|
22048
|
-
|
22049
|
-
|
22050
|
-
|
22051
|
-
|
22052
|
-
|
22053
|
-
|
22054
|
-
|
22055
|
-
|
22056
|
-
|
22057
|
-
|
22058
|
-
|
22059
|
-
|
22060
|
-
|
22061
|
-
|
22062
|
-
|
22063
|
-
|
22064
|
-
|
22065
|
-
|
22066
|
-
|
22067
|
-
|
22068
|
-
|
22069
|
-
|
22070
|
-
|
22071
|
-
|
22072
|
-
|
22073
|
-
|
22074
|
-
|
22075
|
-
|
22076
|
-
|
22077
|
-
|
22078
|
-
|
22079
|
-
|
22080
|
-
|
22081
|
-
|
22082
|
-
|
22083
|
-
|
22084
|
-
|
22085
|
-
|
22086
|
-
|
22087
|
-
|
22088
|
-
|
22089
|
-
|
22090
|
-
"
|
22091
|
-
|
22092
|
-
|
22093
|
-
|
22094
|
-
|
22095
|
-
|
22096
|
-
|
22097
|
-
|
22098
|
-
|
22099
|
-
"
|
22100
|
-
"
|
22101
|
-
]
|
22102
|
-
},
|
22103
|
-
"
|
22104
|
-
"title": "
|
22105
|
-
"type": "
|
22106
|
-
"
|
22107
|
-
"
|
22108
|
-
|
22109
|
-
|
22110
|
-
|
22111
|
-
|
22112
|
-
|
22113
|
-
|
22114
|
-
|
22115
|
-
|
22116
|
-
|
22117
|
-
|
22118
|
-
|
22119
|
-
|
22120
|
-
|
22121
|
-
|
22122
|
-
|
22123
|
-
|
22124
|
-
|
22125
|
-
|
22126
|
-
|
22127
|
-
|
22128
|
-
|
22129
|
-
|
22130
|
-
|
22131
|
-
|
22132
|
-
|
22133
|
-
|
22134
|
-
|
22135
|
-
|
22136
|
-
|
22137
|
-
|
22138
|
-
|
22139
|
-
|
22140
|
-
|
22141
|
-
|
22142
|
-
|
22143
|
-
|
22144
|
-
|
22145
|
-
|
22146
|
-
|
22147
|
-
|
22148
|
-
|
22149
|
-
|
22150
|
-
|
22151
|
-
|
22152
|
-
|
22153
|
-
|
22154
|
-
|
22155
|
-
|
22156
|
-
|
22157
|
-
|
22158
|
-
|
22159
|
-
|
22160
|
-
|
22161
|
-
|
22162
|
-
|
22163
|
-
|
22164
|
-
|
22165
|
-
|
22166
|
-
|
22167
|
-
|
22168
|
-
|
22169
|
-
|
22170
|
-
|
22171
|
-
|
22172
|
-
|
22173
|
-
|
22174
|
-
|
22175
|
-
|
22176
|
-
|
22177
|
-
|
22178
|
-
|
22179
|
-
|
22180
|
-
|
22181
|
-
|
22182
|
-
|
22183
|
-
|
22184
|
-
|
22185
|
-
|
22186
|
-
|
22187
|
-
|
22188
|
-
|
22189
|
-
|
22190
|
-
|
22191
|
-
|
22192
|
-
|
22193
|
-
|
22194
|
-
|
22195
|
-
|
22196
|
-
|
22197
|
-
|
22198
|
-
|
22199
|
-
|
22200
|
-
|
22201
|
-
|
22202
|
-
|
22203
|
-
|
22204
|
-
|
22205
|
-
|
22206
|
-
|
22207
|
-
|
22208
|
-
|
22209
|
-
|
22210
|
-
|
22211
|
-
|
22212
|
-
|
22213
|
-
|
22214
|
-
|
22215
|
-
|
22216
|
-
|
22217
|
-
|
22218
|
-
|
22219
|
-
|
22220
|
-
|
22221
|
-
|
22222
|
-
|
22223
|
-
|
22224
|
-
|
22225
|
-
|
22226
|
-
|
22227
|
-
|
22228
|
-
|
22229
|
-
|
22230
|
-
|
22231
|
-
|
22232
|
-
|
22233
|
-
|
22234
|
-
|
22235
|
-
|
22236
|
-
|
22237
|
-
|
22238
|
-
|
22239
|
-
|
22240
|
-
|
22241
|
-
|
22242
|
-
|
22243
|
-
|
22244
|
-
|
22245
|
-
|
22246
|
-
|
22247
|
-
|
22248
|
-
|
22249
|
-
|
22250
|
-
|
22251
|
-
|
22252
|
-
|
22253
|
-
|
22254
|
-
|
22255
|
-
|
22256
|
-
|
22257
|
-
|
22258
|
-
|
22259
|
-
|
22260
|
-
|
22261
|
-
|
22262
|
-
|
22263
|
-
|
22264
|
-
|
22265
|
-
|
22266
|
-
|
22267
|
-
|
22268
|
-
|
22269
|
-
|
22270
|
-
|
22271
|
-
|
22272
|
-
|
22273
|
-
|
22274
|
-
|
22275
|
-
|
22276
|
-
|
22277
|
-
|
22278
|
-
|
22279
|
-
|
22280
|
-
|
22281
|
-
"
|
22282
|
-
|
22283
|
-
|
22284
|
-
|
22285
|
-
|
22286
|
-
|
22287
|
-
|
22288
|
-
|
22289
|
-
|
22290
|
-
"
|
22291
|
-
"
|
22139
|
+
"payeeReceiveAmount": {
|
22140
|
+
"title": "Money",
|
22141
|
+
"type": "object",
|
22142
|
+
"description": "Data model for the complex type Money.",
|
22143
|
+
"properties": {
|
22144
|
+
"currency": {
|
22145
|
+
"title": "Currency",
|
22146
|
+
"description": "The currency codes defined in [ISO 4217](https://www.iso.org/iso-4217-currency-codes.html) as three-letter alphabetic codes are used as the standard naming representation for currencies.",
|
22147
|
+
"type": "string",
|
22148
|
+
"minLength": 3,
|
22149
|
+
"maxLength": 3,
|
22150
|
+
"enum": [
|
22151
|
+
"AED",
|
22152
|
+
"AFN",
|
22153
|
+
"ALL",
|
22154
|
+
"AMD",
|
22155
|
+
"ANG",
|
22156
|
+
"AOA",
|
22157
|
+
"ARS",
|
22158
|
+
"AUD",
|
22159
|
+
"AWG",
|
22160
|
+
"AZN",
|
22161
|
+
"BAM",
|
22162
|
+
"BBD",
|
22163
|
+
"BDT",
|
22164
|
+
"BGN",
|
22165
|
+
"BHD",
|
22166
|
+
"BIF",
|
22167
|
+
"BMD",
|
22168
|
+
"BND",
|
22169
|
+
"BOB",
|
22170
|
+
"BRL",
|
22171
|
+
"BSD",
|
22172
|
+
"BTN",
|
22173
|
+
"BWP",
|
22174
|
+
"BYN",
|
22175
|
+
"BZD",
|
22176
|
+
"CAD",
|
22177
|
+
"CDF",
|
22178
|
+
"CHF",
|
22179
|
+
"CLP",
|
22180
|
+
"CNY",
|
22181
|
+
"COP",
|
22182
|
+
"CRC",
|
22183
|
+
"CUC",
|
22184
|
+
"CUP",
|
22185
|
+
"CVE",
|
22186
|
+
"CZK",
|
22187
|
+
"DJF",
|
22188
|
+
"DKK",
|
22189
|
+
"DOP",
|
22190
|
+
"DZD",
|
22191
|
+
"EGP",
|
22192
|
+
"ERN",
|
22193
|
+
"ETB",
|
22194
|
+
"EUR",
|
22195
|
+
"FJD",
|
22196
|
+
"FKP",
|
22197
|
+
"GBP",
|
22198
|
+
"GEL",
|
22199
|
+
"GGP",
|
22200
|
+
"GHS",
|
22201
|
+
"GIP",
|
22202
|
+
"GMD",
|
22203
|
+
"GNF",
|
22204
|
+
"GTQ",
|
22205
|
+
"GYD",
|
22206
|
+
"HKD",
|
22207
|
+
"HNL",
|
22208
|
+
"HRK",
|
22209
|
+
"HTG",
|
22210
|
+
"HUF",
|
22211
|
+
"IDR",
|
22212
|
+
"ILS",
|
22213
|
+
"IMP",
|
22214
|
+
"INR",
|
22215
|
+
"IQD",
|
22216
|
+
"IRR",
|
22217
|
+
"ISK",
|
22218
|
+
"JEP",
|
22219
|
+
"JMD",
|
22220
|
+
"JOD",
|
22221
|
+
"JPY",
|
22222
|
+
"KES",
|
22223
|
+
"KGS",
|
22224
|
+
"KHR",
|
22225
|
+
"KMF",
|
22226
|
+
"KPW",
|
22227
|
+
"KRW",
|
22228
|
+
"KWD",
|
22229
|
+
"KYD",
|
22230
|
+
"KZT",
|
22231
|
+
"LAK",
|
22232
|
+
"LBP",
|
22233
|
+
"LKR",
|
22234
|
+
"LRD",
|
22235
|
+
"LSL",
|
22236
|
+
"LYD",
|
22237
|
+
"MAD",
|
22238
|
+
"MDL",
|
22239
|
+
"MGA",
|
22240
|
+
"MKD",
|
22241
|
+
"MMK",
|
22242
|
+
"MNT",
|
22243
|
+
"MOP",
|
22244
|
+
"MRO",
|
22245
|
+
"MUR",
|
22246
|
+
"MVR",
|
22247
|
+
"MWK",
|
22248
|
+
"MXN",
|
22249
|
+
"MYR",
|
22250
|
+
"MZN",
|
22251
|
+
"NAD",
|
22252
|
+
"NGN",
|
22253
|
+
"NIO",
|
22254
|
+
"NOK",
|
22255
|
+
"NPR",
|
22256
|
+
"NZD",
|
22257
|
+
"OMR",
|
22258
|
+
"PAB",
|
22259
|
+
"PEN",
|
22260
|
+
"PGK",
|
22261
|
+
"PHP",
|
22262
|
+
"PKR",
|
22263
|
+
"PLN",
|
22264
|
+
"PYG",
|
22265
|
+
"QAR",
|
22266
|
+
"RON",
|
22267
|
+
"RSD",
|
22268
|
+
"RUB",
|
22269
|
+
"RWF",
|
22270
|
+
"SAR",
|
22271
|
+
"SBD",
|
22272
|
+
"SCR",
|
22273
|
+
"SDG",
|
22274
|
+
"SEK",
|
22275
|
+
"SGD",
|
22276
|
+
"SHP",
|
22277
|
+
"SLL",
|
22278
|
+
"SOS",
|
22279
|
+
"SPL",
|
22280
|
+
"SRD",
|
22281
|
+
"STD",
|
22282
|
+
"SVC",
|
22283
|
+
"SYP",
|
22284
|
+
"SZL",
|
22285
|
+
"THB",
|
22286
|
+
"TJS",
|
22287
|
+
"TMT",
|
22288
|
+
"TND",
|
22289
|
+
"TOP",
|
22290
|
+
"TRY",
|
22291
|
+
"TTD",
|
22292
|
+
"TVD",
|
22293
|
+
"TWD",
|
22294
|
+
"TZS",
|
22295
|
+
"UAH",
|
22296
|
+
"UGX",
|
22297
|
+
"USD",
|
22298
|
+
"UYU",
|
22299
|
+
"UZS",
|
22300
|
+
"VEF",
|
22301
|
+
"VND",
|
22302
|
+
"VUV",
|
22303
|
+
"WST",
|
22304
|
+
"XAF",
|
22305
|
+
"XCD",
|
22306
|
+
"XDR",
|
22307
|
+
"XOF",
|
22308
|
+
"XPF",
|
22309
|
+
"XTS",
|
22310
|
+
"XXX",
|
22311
|
+
"YER",
|
22312
|
+
"ZAR",
|
22313
|
+
"ZMW",
|
22314
|
+
"ZWD"
|
22315
|
+
]
|
22316
|
+
},
|
22317
|
+
"amount": {
|
22318
|
+
"title": "Amount",
|
22319
|
+
"type": "string",
|
22320
|
+
"pattern": "^([0]|([1-9][0-9]{0,17}))([.][0-9]{0,3}[1-9])?$",
|
22321
|
+
"description": "The API data type Amount is a JSON String in a canonical format that is restricted by a regular expression for interoperability reasons. This pattern does not allow any trailing zeroes at all, but allows an amount without a minor currency unit. It also only allows four digits in the minor currency unit; a negative value is not allowed. Using more than 18 digits in the major currency unit is not allowed.",
|
22322
|
+
"example": "123.45"
|
22323
|
+
}
|
22324
|
+
},
|
22325
|
+
"required": [
|
22326
|
+
"currency",
|
22327
|
+
"amount"
|
22328
|
+
]
|
22329
|
+
},
|
22330
|
+
"payeeFspFee": {
|
22331
|
+
"title": "Money",
|
22332
|
+
"type": "object",
|
22333
|
+
"description": "Data model for the complex type Money.",
|
22334
|
+
"properties": {
|
22335
|
+
"currency": {
|
22336
|
+
"title": "Currency",
|
22337
|
+
"description": "The currency codes defined in [ISO 4217](https://www.iso.org/iso-4217-currency-codes.html) as three-letter alphabetic codes are used as the standard naming representation for currencies.",
|
22338
|
+
"type": "string",
|
22339
|
+
"minLength": 3,
|
22340
|
+
"maxLength": 3,
|
22341
|
+
"enum": [
|
22342
|
+
"AED",
|
22343
|
+
"AFN",
|
22344
|
+
"ALL",
|
22345
|
+
"AMD",
|
22346
|
+
"ANG",
|
22347
|
+
"AOA",
|
22348
|
+
"ARS",
|
22349
|
+
"AUD",
|
22350
|
+
"AWG",
|
22351
|
+
"AZN",
|
22352
|
+
"BAM",
|
22353
|
+
"BBD",
|
22354
|
+
"BDT",
|
22355
|
+
"BGN",
|
22356
|
+
"BHD",
|
22357
|
+
"BIF",
|
22358
|
+
"BMD",
|
22359
|
+
"BND",
|
22360
|
+
"BOB",
|
22361
|
+
"BRL",
|
22362
|
+
"BSD",
|
22363
|
+
"BTN",
|
22364
|
+
"BWP",
|
22365
|
+
"BYN",
|
22366
|
+
"BZD",
|
22367
|
+
"CAD",
|
22368
|
+
"CDF",
|
22369
|
+
"CHF",
|
22370
|
+
"CLP",
|
22371
|
+
"CNY",
|
22372
|
+
"COP",
|
22373
|
+
"CRC",
|
22374
|
+
"CUC",
|
22375
|
+
"CUP",
|
22376
|
+
"CVE",
|
22377
|
+
"CZK",
|
22378
|
+
"DJF",
|
22379
|
+
"DKK",
|
22380
|
+
"DOP",
|
22381
|
+
"DZD",
|
22382
|
+
"EGP",
|
22383
|
+
"ERN",
|
22384
|
+
"ETB",
|
22385
|
+
"EUR",
|
22386
|
+
"FJD",
|
22387
|
+
"FKP",
|
22388
|
+
"GBP",
|
22389
|
+
"GEL",
|
22390
|
+
"GGP",
|
22391
|
+
"GHS",
|
22392
|
+
"GIP",
|
22393
|
+
"GMD",
|
22394
|
+
"GNF",
|
22395
|
+
"GTQ",
|
22396
|
+
"GYD",
|
22397
|
+
"HKD",
|
22398
|
+
"HNL",
|
22399
|
+
"HRK",
|
22400
|
+
"HTG",
|
22401
|
+
"HUF",
|
22402
|
+
"IDR",
|
22403
|
+
"ILS",
|
22404
|
+
"IMP",
|
22405
|
+
"INR",
|
22406
|
+
"IQD",
|
22407
|
+
"IRR",
|
22408
|
+
"ISK",
|
22409
|
+
"JEP",
|
22410
|
+
"JMD",
|
22411
|
+
"JOD",
|
22412
|
+
"JPY",
|
22413
|
+
"KES",
|
22414
|
+
"KGS",
|
22415
|
+
"KHR",
|
22416
|
+
"KMF",
|
22417
|
+
"KPW",
|
22418
|
+
"KRW",
|
22419
|
+
"KWD",
|
22420
|
+
"KYD",
|
22421
|
+
"KZT",
|
22422
|
+
"LAK",
|
22423
|
+
"LBP",
|
22424
|
+
"LKR",
|
22425
|
+
"LRD",
|
22426
|
+
"LSL",
|
22427
|
+
"LYD",
|
22428
|
+
"MAD",
|
22429
|
+
"MDL",
|
22430
|
+
"MGA",
|
22431
|
+
"MKD",
|
22432
|
+
"MMK",
|
22433
|
+
"MNT",
|
22434
|
+
"MOP",
|
22435
|
+
"MRO",
|
22436
|
+
"MUR",
|
22437
|
+
"MVR",
|
22438
|
+
"MWK",
|
22439
|
+
"MXN",
|
22440
|
+
"MYR",
|
22441
|
+
"MZN",
|
22442
|
+
"NAD",
|
22443
|
+
"NGN",
|
22444
|
+
"NIO",
|
22445
|
+
"NOK",
|
22446
|
+
"NPR",
|
22447
|
+
"NZD",
|
22448
|
+
"OMR",
|
22449
|
+
"PAB",
|
22450
|
+
"PEN",
|
22451
|
+
"PGK",
|
22452
|
+
"PHP",
|
22453
|
+
"PKR",
|
22454
|
+
"PLN",
|
22455
|
+
"PYG",
|
22456
|
+
"QAR",
|
22457
|
+
"RON",
|
22458
|
+
"RSD",
|
22459
|
+
"RUB",
|
22460
|
+
"RWF",
|
22461
|
+
"SAR",
|
22462
|
+
"SBD",
|
22463
|
+
"SCR",
|
22464
|
+
"SDG",
|
22465
|
+
"SEK",
|
22466
|
+
"SGD",
|
22467
|
+
"SHP",
|
22468
|
+
"SLL",
|
22469
|
+
"SOS",
|
22470
|
+
"SPL",
|
22471
|
+
"SRD",
|
22472
|
+
"STD",
|
22473
|
+
"SVC",
|
22474
|
+
"SYP",
|
22475
|
+
"SZL",
|
22476
|
+
"THB",
|
22477
|
+
"TJS",
|
22478
|
+
"TMT",
|
22479
|
+
"TND",
|
22480
|
+
"TOP",
|
22481
|
+
"TRY",
|
22482
|
+
"TTD",
|
22483
|
+
"TVD",
|
22484
|
+
"TWD",
|
22485
|
+
"TZS",
|
22486
|
+
"UAH",
|
22487
|
+
"UGX",
|
22488
|
+
"USD",
|
22489
|
+
"UYU",
|
22490
|
+
"UZS",
|
22491
|
+
"VEF",
|
22492
|
+
"VND",
|
22493
|
+
"VUV",
|
22494
|
+
"WST",
|
22495
|
+
"XAF",
|
22496
|
+
"XCD",
|
22497
|
+
"XDR",
|
22498
|
+
"XOF",
|
22499
|
+
"XPF",
|
22500
|
+
"XTS",
|
22501
|
+
"XXX",
|
22502
|
+
"YER",
|
22503
|
+
"ZAR",
|
22504
|
+
"ZMW",
|
22505
|
+
"ZWD"
|
22506
|
+
]
|
22507
|
+
},
|
22508
|
+
"amount": {
|
22509
|
+
"title": "Amount",
|
22510
|
+
"type": "string",
|
22511
|
+
"pattern": "^([0]|([1-9][0-9]{0,17}))([.][0-9]{0,3}[1-9])?$",
|
22512
|
+
"description": "The API data type Amount is a JSON String in a canonical format that is restricted by a regular expression for interoperability reasons. This pattern does not allow any trailing zeroes at all, but allows an amount without a minor currency unit. It also only allows four digits in the minor currency unit; a negative value is not allowed. Using more than 18 digits in the major currency unit is not allowed.",
|
22513
|
+
"example": "123.45"
|
22514
|
+
}
|
22515
|
+
},
|
22516
|
+
"required": [
|
22517
|
+
"currency",
|
22518
|
+
"amount"
|
22292
22519
|
]
|
22293
22520
|
},
|
22294
|
-
"
|
22295
|
-
"title": "
|
22296
|
-
"type": "
|
22297
|
-
"
|
22298
|
-
"
|
22299
|
-
|
22300
|
-
|
22301
|
-
|
22302
|
-
|
22303
|
-
|
22304
|
-
|
22305
|
-
|
22306
|
-
|
22307
|
-
|
22308
|
-
|
22309
|
-
|
22310
|
-
|
22311
|
-
|
22312
|
-
|
22313
|
-
|
22314
|
-
|
22315
|
-
|
22316
|
-
|
22317
|
-
|
22318
|
-
|
22319
|
-
|
22320
|
-
|
22321
|
-
|
22322
|
-
|
22323
|
-
|
22324
|
-
|
22325
|
-
|
22326
|
-
|
22327
|
-
|
22328
|
-
|
22329
|
-
|
22330
|
-
|
22331
|
-
|
22332
|
-
|
22333
|
-
|
22334
|
-
|
22335
|
-
|
22336
|
-
|
22337
|
-
|
22338
|
-
|
22339
|
-
|
22340
|
-
|
22341
|
-
|
22342
|
-
|
22343
|
-
|
22344
|
-
|
22345
|
-
|
22346
|
-
|
22347
|
-
|
22348
|
-
|
22349
|
-
|
22350
|
-
|
22351
|
-
|
22352
|
-
|
22353
|
-
|
22354
|
-
|
22355
|
-
|
22356
|
-
|
22357
|
-
|
22358
|
-
|
22359
|
-
|
22360
|
-
|
22361
|
-
|
22362
|
-
|
22363
|
-
|
22364
|
-
|
22365
|
-
|
22366
|
-
|
22367
|
-
|
22368
|
-
|
22369
|
-
|
22370
|
-
|
22371
|
-
|
22372
|
-
|
22373
|
-
|
22374
|
-
|
22375
|
-
|
22376
|
-
|
22377
|
-
|
22378
|
-
|
22379
|
-
|
22380
|
-
|
22381
|
-
|
22382
|
-
|
22383
|
-
|
22384
|
-
|
22385
|
-
|
22386
|
-
|
22387
|
-
|
22388
|
-
|
22389
|
-
|
22390
|
-
|
22391
|
-
|
22392
|
-
|
22393
|
-
|
22394
|
-
|
22395
|
-
|
22396
|
-
|
22397
|
-
|
22398
|
-
|
22399
|
-
|
22400
|
-
|
22401
|
-
|
22402
|
-
|
22403
|
-
|
22404
|
-
|
22405
|
-
|
22406
|
-
|
22407
|
-
|
22408
|
-
|
22409
|
-
|
22410
|
-
|
22411
|
-
|
22412
|
-
|
22413
|
-
|
22414
|
-
|
22415
|
-
|
22416
|
-
|
22417
|
-
|
22418
|
-
|
22419
|
-
|
22420
|
-
|
22421
|
-
|
22422
|
-
|
22423
|
-
|
22424
|
-
|
22425
|
-
|
22426
|
-
|
22427
|
-
|
22428
|
-
|
22429
|
-
|
22430
|
-
|
22431
|
-
|
22432
|
-
|
22433
|
-
|
22434
|
-
|
22435
|
-
|
22436
|
-
|
22437
|
-
|
22438
|
-
|
22439
|
-
|
22440
|
-
|
22441
|
-
|
22442
|
-
|
22443
|
-
|
22444
|
-
|
22445
|
-
|
22446
|
-
|
22447
|
-
|
22448
|
-
|
22449
|
-
|
22450
|
-
|
22451
|
-
|
22452
|
-
|
22453
|
-
|
22454
|
-
|
22455
|
-
|
22456
|
-
|
22457
|
-
|
22458
|
-
|
22459
|
-
|
22460
|
-
|
22461
|
-
|
22462
|
-
|
22463
|
-
|
22464
|
-
|
22465
|
-
|
22466
|
-
|
22467
|
-
|
22468
|
-
|
22469
|
-
|
22470
|
-
|
22471
|
-
|
22472
|
-
"
|
22473
|
-
|
22474
|
-
|
22475
|
-
|
22476
|
-
|
22477
|
-
|
22478
|
-
|
22479
|
-
|
22480
|
-
|
22481
|
-
"
|
22482
|
-
"
|
22521
|
+
"payeeFspCommission": {
|
22522
|
+
"title": "Money",
|
22523
|
+
"type": "object",
|
22524
|
+
"description": "Data model for the complex type Money.",
|
22525
|
+
"properties": {
|
22526
|
+
"currency": {
|
22527
|
+
"title": "Currency",
|
22528
|
+
"description": "The currency codes defined in [ISO 4217](https://www.iso.org/iso-4217-currency-codes.html) as three-letter alphabetic codes are used as the standard naming representation for currencies.",
|
22529
|
+
"type": "string",
|
22530
|
+
"minLength": 3,
|
22531
|
+
"maxLength": 3,
|
22532
|
+
"enum": [
|
22533
|
+
"AED",
|
22534
|
+
"AFN",
|
22535
|
+
"ALL",
|
22536
|
+
"AMD",
|
22537
|
+
"ANG",
|
22538
|
+
"AOA",
|
22539
|
+
"ARS",
|
22540
|
+
"AUD",
|
22541
|
+
"AWG",
|
22542
|
+
"AZN",
|
22543
|
+
"BAM",
|
22544
|
+
"BBD",
|
22545
|
+
"BDT",
|
22546
|
+
"BGN",
|
22547
|
+
"BHD",
|
22548
|
+
"BIF",
|
22549
|
+
"BMD",
|
22550
|
+
"BND",
|
22551
|
+
"BOB",
|
22552
|
+
"BRL",
|
22553
|
+
"BSD",
|
22554
|
+
"BTN",
|
22555
|
+
"BWP",
|
22556
|
+
"BYN",
|
22557
|
+
"BZD",
|
22558
|
+
"CAD",
|
22559
|
+
"CDF",
|
22560
|
+
"CHF",
|
22561
|
+
"CLP",
|
22562
|
+
"CNY",
|
22563
|
+
"COP",
|
22564
|
+
"CRC",
|
22565
|
+
"CUC",
|
22566
|
+
"CUP",
|
22567
|
+
"CVE",
|
22568
|
+
"CZK",
|
22569
|
+
"DJF",
|
22570
|
+
"DKK",
|
22571
|
+
"DOP",
|
22572
|
+
"DZD",
|
22573
|
+
"EGP",
|
22574
|
+
"ERN",
|
22575
|
+
"ETB",
|
22576
|
+
"EUR",
|
22577
|
+
"FJD",
|
22578
|
+
"FKP",
|
22579
|
+
"GBP",
|
22580
|
+
"GEL",
|
22581
|
+
"GGP",
|
22582
|
+
"GHS",
|
22583
|
+
"GIP",
|
22584
|
+
"GMD",
|
22585
|
+
"GNF",
|
22586
|
+
"GTQ",
|
22587
|
+
"GYD",
|
22588
|
+
"HKD",
|
22589
|
+
"HNL",
|
22590
|
+
"HRK",
|
22591
|
+
"HTG",
|
22592
|
+
"HUF",
|
22593
|
+
"IDR",
|
22594
|
+
"ILS",
|
22595
|
+
"IMP",
|
22596
|
+
"INR",
|
22597
|
+
"IQD",
|
22598
|
+
"IRR",
|
22599
|
+
"ISK",
|
22600
|
+
"JEP",
|
22601
|
+
"JMD",
|
22602
|
+
"JOD",
|
22603
|
+
"JPY",
|
22604
|
+
"KES",
|
22605
|
+
"KGS",
|
22606
|
+
"KHR",
|
22607
|
+
"KMF",
|
22608
|
+
"KPW",
|
22609
|
+
"KRW",
|
22610
|
+
"KWD",
|
22611
|
+
"KYD",
|
22612
|
+
"KZT",
|
22613
|
+
"LAK",
|
22614
|
+
"LBP",
|
22615
|
+
"LKR",
|
22616
|
+
"LRD",
|
22617
|
+
"LSL",
|
22618
|
+
"LYD",
|
22619
|
+
"MAD",
|
22620
|
+
"MDL",
|
22621
|
+
"MGA",
|
22622
|
+
"MKD",
|
22623
|
+
"MMK",
|
22624
|
+
"MNT",
|
22625
|
+
"MOP",
|
22626
|
+
"MRO",
|
22627
|
+
"MUR",
|
22628
|
+
"MVR",
|
22629
|
+
"MWK",
|
22630
|
+
"MXN",
|
22631
|
+
"MYR",
|
22632
|
+
"MZN",
|
22633
|
+
"NAD",
|
22634
|
+
"NGN",
|
22635
|
+
"NIO",
|
22636
|
+
"NOK",
|
22637
|
+
"NPR",
|
22638
|
+
"NZD",
|
22639
|
+
"OMR",
|
22640
|
+
"PAB",
|
22641
|
+
"PEN",
|
22642
|
+
"PGK",
|
22643
|
+
"PHP",
|
22644
|
+
"PKR",
|
22645
|
+
"PLN",
|
22646
|
+
"PYG",
|
22647
|
+
"QAR",
|
22648
|
+
"RON",
|
22649
|
+
"RSD",
|
22650
|
+
"RUB",
|
22651
|
+
"RWF",
|
22652
|
+
"SAR",
|
22653
|
+
"SBD",
|
22654
|
+
"SCR",
|
22655
|
+
"SDG",
|
22656
|
+
"SEK",
|
22657
|
+
"SGD",
|
22658
|
+
"SHP",
|
22659
|
+
"SLL",
|
22660
|
+
"SOS",
|
22661
|
+
"SPL",
|
22662
|
+
"SRD",
|
22663
|
+
"STD",
|
22664
|
+
"SVC",
|
22665
|
+
"SYP",
|
22666
|
+
"SZL",
|
22667
|
+
"THB",
|
22668
|
+
"TJS",
|
22669
|
+
"TMT",
|
22670
|
+
"TND",
|
22671
|
+
"TOP",
|
22672
|
+
"TRY",
|
22673
|
+
"TTD",
|
22674
|
+
"TVD",
|
22675
|
+
"TWD",
|
22676
|
+
"TZS",
|
22677
|
+
"UAH",
|
22678
|
+
"UGX",
|
22679
|
+
"USD",
|
22680
|
+
"UYU",
|
22681
|
+
"UZS",
|
22682
|
+
"VEF",
|
22683
|
+
"VND",
|
22684
|
+
"VUV",
|
22685
|
+
"WST",
|
22686
|
+
"XAF",
|
22687
|
+
"XCD",
|
22688
|
+
"XDR",
|
22689
|
+
"XOF",
|
22690
|
+
"XPF",
|
22691
|
+
"XTS",
|
22692
|
+
"XXX",
|
22693
|
+
"YER",
|
22694
|
+
"ZAR",
|
22695
|
+
"ZMW",
|
22696
|
+
"ZWD"
|
22697
|
+
]
|
22698
|
+
},
|
22699
|
+
"amount": {
|
22700
|
+
"title": "Amount",
|
22701
|
+
"type": "string",
|
22702
|
+
"pattern": "^([0]|([1-9][0-9]{0,17}))([.][0-9]{0,3}[1-9])?$",
|
22703
|
+
"description": "The API data type Amount is a JSON String in a canonical format that is restricted by a regular expression for interoperability reasons. This pattern does not allow any trailing zeroes at all, but allows an amount without a minor currency unit. It also only allows four digits in the minor currency unit; a negative value is not allowed. Using more than 18 digits in the major currency unit is not allowed.",
|
22704
|
+
"example": "123.45"
|
22705
|
+
}
|
22706
|
+
},
|
22707
|
+
"required": [
|
22708
|
+
"currency",
|
22709
|
+
"amount"
|
22483
22710
|
]
|
22484
22711
|
},
|
22485
|
-
"
|
22486
|
-
"title": "
|
22712
|
+
"expiration": {
|
22713
|
+
"title": "DateTime",
|
22487
22714
|
"type": "string",
|
22488
|
-
"pattern": "^([0]|([1-9][0-9]
|
22489
|
-
"description": "The API data type
|
22490
|
-
"example": "
|
22491
|
-
}
|
22492
|
-
|
22493
|
-
|
22494
|
-
|
22495
|
-
|
22496
|
-
|
22497
|
-
|
22498
|
-
|
22499
|
-
|
22500
|
-
|
22501
|
-
|
22502
|
-
|
22503
|
-
|
22504
|
-
|
22505
|
-
|
22506
|
-
|
22507
|
-
|
22508
|
-
|
22509
|
-
|
22510
|
-
|
22511
|
-
|
22715
|
+
"pattern": "^(?:[1-9]\\d{3}-(?:(?:0[1-9]|1[0-2])-(?:0[1-9]|1\\d|2[0-8])|(?:0[13-9]|1[0-2])-(?:29|30)|(?:0[13578]|1[02])-31)|(?:[1-9]\\d(?:0[48]|[2468][048]|[13579][26])|(?:[2468][048]|[13579][26])00)-02-29)T(?:[01]\\d|2[0-3]):[0-5]\\d:[0-5]\\d(?:(\\.\\d{3}))(?:Z|[+-][01]\\d:[0-5]\\d)$",
|
22716
|
+
"description": "The API data type DateTime is a JSON String in a lexical format that is restricted by a regular expression for interoperability reasons. The format is according to [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html), expressed in a combined date, time and time zone format. A more readable version of the format is yyyy-MM-ddTHH:mm:ss.SSS[-HH:MM]. Examples are \"2016-05-24T08:38:08.699-04:00\", \"2016-05-24T08:38:08.699Z\" (where Z indicates Zulu time zone, same as UTC).",
|
22717
|
+
"example": "2016-05-24T08:38:08.699-04:00"
|
22718
|
+
},
|
22719
|
+
"geoCode": {
|
22720
|
+
"title": "GeoCode",
|
22721
|
+
"type": "object",
|
22722
|
+
"description": "Data model for the complex type GeoCode. Indicates the geographic location from where the transaction was initiated.",
|
22723
|
+
"properties": {
|
22724
|
+
"latitude": {
|
22725
|
+
"title": "Latitude",
|
22726
|
+
"type": "string",
|
22727
|
+
"pattern": "^(\\+|-)?(?:90(?:(?:\\.0{1,6})?)|(?:[0-9]|[1-8][0-9])(?:(?:\\.[0-9]{1,6})?))$",
|
22728
|
+
"description": "The API data type Latitude is a JSON String in a lexical format that is restricted by a regular expression for interoperability reasons.",
|
22729
|
+
"example": "+45.4215"
|
22730
|
+
},
|
22731
|
+
"longitude": {
|
22732
|
+
"title": "Longitude",
|
22733
|
+
"type": "string",
|
22734
|
+
"pattern": "^(\\+|-)?(?:180(?:(?:\\.0{1,6})?)|(?:[0-9]|[1-9][0-9]|1[0-7][0-9])(?:(?:\\.[0-9]{1,6})?))$",
|
22735
|
+
"description": "The API data type Longitude is a JSON String in a lexical format that is restricted by a regular expression for interoperability reasons.",
|
22736
|
+
"example": "+75.6972"
|
22737
|
+
}
|
22738
|
+
},
|
22739
|
+
"required": [
|
22740
|
+
"latitude",
|
22741
|
+
"longitude"
|
22742
|
+
]
|
22743
|
+
},
|
22744
|
+
"ilpPacket": {
|
22745
|
+
"title": "IlpPacket",
|
22512
22746
|
"type": "string",
|
22513
|
-
"pattern": "^
|
22514
|
-
"
|
22515
|
-
"
|
22747
|
+
"pattern": "^[A-Za-z0-9-_]+[=]{0,2}$",
|
22748
|
+
"minLength": 1,
|
22749
|
+
"maxLength": 32768,
|
22750
|
+
"description": "Information for recipient (transport layer information).",
|
22751
|
+
"example": "AYIBgQAAAAAAAASwNGxldmVsb25lLmRmc3AxLm1lci45T2RTOF81MDdqUUZERmZlakgyOVc4bXFmNEpLMHlGTFGCAUBQU0svMS4wCk5vbmNlOiB1SXlweUYzY3pYSXBFdzVVc05TYWh3CkVuY3J5cHRpb246IG5vbmUKUGF5bWVudC1JZDogMTMyMzZhM2ItOGZhOC00MTYzLTg0NDctNGMzZWQzZGE5OGE3CgpDb250ZW50LUxlbmd0aDogMTM1CkNvbnRlbnQtVHlwZTogYXBwbGljYXRpb24vanNvbgpTZW5kZXItSWRlbnRpZmllcjogOTI4MDYzOTEKCiJ7XCJmZWVcIjowLFwidHJhbnNmZXJDb2RlXCI6XCJpbnZvaWNlXCIsXCJkZWJpdE5hbWVcIjpcImFsaWNlIGNvb3BlclwiLFwiY3JlZGl0TmFtZVwiOlwibWVyIGNoYW50XCIsXCJkZWJpdElkZW50aWZpZXJcIjpcIjkyODA2MzkxXCJ9IgA"
|
22516
22752
|
},
|
22517
|
-
"
|
22518
|
-
"title": "
|
22753
|
+
"condition": {
|
22754
|
+
"title": "IlpCondition",
|
22519
22755
|
"type": "string",
|
22520
|
-
"pattern": "^
|
22521
|
-
"
|
22522
|
-
"
|
22756
|
+
"pattern": "^[A-Za-z0-9-_]{43}$",
|
22757
|
+
"maxLength": 48,
|
22758
|
+
"description": "Condition that must be attached to the transfer by the Payer."
|
22759
|
+
},
|
22760
|
+
"extensionList": {
|
22761
|
+
"title": "ExtensionList",
|
22762
|
+
"type": "object",
|
22763
|
+
"description": "Data model for the complex type ExtensionList. An optional list of extensions, specific to deployment.",
|
22764
|
+
"properties": {
|
22765
|
+
"extension": {
|
22766
|
+
"type": "array",
|
22767
|
+
"items": {
|
22768
|
+
"title": "Extension",
|
22769
|
+
"type": "object",
|
22770
|
+
"description": "Data model for the complex type Extension.",
|
22771
|
+
"properties": {
|
22772
|
+
"key": {
|
22773
|
+
"title": "ExtensionKey",
|
22774
|
+
"type": "string",
|
22775
|
+
"minLength": 1,
|
22776
|
+
"maxLength": 32,
|
22777
|
+
"description": "Extension key."
|
22778
|
+
},
|
22779
|
+
"value": {
|
22780
|
+
"title": "ExtensionValue",
|
22781
|
+
"type": "string",
|
22782
|
+
"minLength": 1,
|
22783
|
+
"maxLength": 128,
|
22784
|
+
"description": "Extension value."
|
22785
|
+
}
|
22786
|
+
},
|
22787
|
+
"required": [
|
22788
|
+
"key",
|
22789
|
+
"value"
|
22790
|
+
]
|
22791
|
+
},
|
22792
|
+
"minItems": 1,
|
22793
|
+
"maxItems": 16,
|
22794
|
+
"description": "Number of Extension elements."
|
22795
|
+
}
|
22796
|
+
},
|
22797
|
+
"required": [
|
22798
|
+
"extension"
|
22799
|
+
]
|
22523
22800
|
}
|
22524
22801
|
},
|
22525
22802
|
"required": [
|
22526
|
-
"
|
22527
|
-
"
|
22803
|
+
"transferAmount",
|
22804
|
+
"expiration",
|
22805
|
+
"ilpPacket",
|
22806
|
+
"condition"
|
22528
22807
|
]
|
22529
22808
|
},
|
22530
|
-
"
|
22531
|
-
"
|
22532
|
-
|
22533
|
-
|
22534
|
-
|
22535
|
-
|
22536
|
-
|
22537
|
-
|
22538
|
-
|
22539
|
-
|
22540
|
-
|
22541
|
-
|
22542
|
-
|
22543
|
-
|
22544
|
-
|
22545
|
-
|
22546
|
-
|
22547
|
-
"title": "ExtensionList",
|
22809
|
+
"headers": {
|
22810
|
+
"type": "object"
|
22811
|
+
}
|
22812
|
+
}
|
22813
|
+
},
|
22814
|
+
"quoteResponseSource": {
|
22815
|
+
"type": "string",
|
22816
|
+
"description": "FSPID of the entity that supplied the quote response. This may not be the same as the FSPID of the entity which owns the end user account in the case of a FOREX transfer. i.e. it may be a FOREX gateway.\n"
|
22817
|
+
},
|
22818
|
+
"authorizationResponse": {
|
22819
|
+
"type": "object",
|
22820
|
+
"required": [
|
22821
|
+
"body"
|
22822
|
+
],
|
22823
|
+
"properties": {
|
22824
|
+
"body": {
|
22825
|
+
"title": "AuthorizationIDPutResponse",
|
22548
22826
|
"type": "object",
|
22549
|
-
"description": "
|
22827
|
+
"description": "The object sent in the PUT /authorizations/{ID} callback.",
|
22550
22828
|
"properties": {
|
22551
|
-
"
|
22552
|
-
"
|
22553
|
-
"
|
22554
|
-
|
22555
|
-
|
22556
|
-
"
|
22557
|
-
|
22558
|
-
"
|
22559
|
-
|
22560
|
-
"
|
22561
|
-
"
|
22562
|
-
"
|
22563
|
-
|
22564
|
-
|
22565
|
-
"
|
22566
|
-
"title": "ExtensionValue",
|
22567
|
-
"type": "string",
|
22568
|
-
"minLength": 1,
|
22569
|
-
"maxLength": 128,
|
22570
|
-
"description": "Extension value."
|
22571
|
-
}
|
22829
|
+
"authenticationInfo": {
|
22830
|
+
"title": "AuthenticationInfo",
|
22831
|
+
"type": "object",
|
22832
|
+
"description": "Data model for the complex type AuthenticationInfo.",
|
22833
|
+
"properties": {
|
22834
|
+
"authentication": {
|
22835
|
+
"title": "AuthenticationType",
|
22836
|
+
"type": "string",
|
22837
|
+
"enum": [
|
22838
|
+
"OTP",
|
22839
|
+
"QRCODE",
|
22840
|
+
"U2F"
|
22841
|
+
],
|
22842
|
+
"description": "Below are the allowed values for the enumeration AuthenticationType.\n- OTP - One-time password generated by the Payer FSP.\n- QRCODE - QR code used as One Time Password.\n- U2F - U2F is a new addition isolated to Thirdparty stream.",
|
22843
|
+
"example": "OTP"
|
22572
22844
|
},
|
22573
|
-
"
|
22574
|
-
"
|
22575
|
-
"
|
22576
|
-
|
22845
|
+
"authenticationValue": {
|
22846
|
+
"title": "AuthenticationValue",
|
22847
|
+
"anyOf": [
|
22848
|
+
{
|
22849
|
+
"title": "OtpValue",
|
22850
|
+
"type": "string",
|
22851
|
+
"pattern": "^\\d{3,10}$",
|
22852
|
+
"description": "The API data type OtpValue is a JSON String of 3 to 10 characters, consisting of digits only. Negative numbers are not allowed. One or more leading zeros are allowed."
|
22853
|
+
},
|
22854
|
+
{
|
22855
|
+
"title": "QRCODE",
|
22856
|
+
"type": "string",
|
22857
|
+
"minLength": 1,
|
22858
|
+
"maxLength": 64,
|
22859
|
+
"description": "QR code used as a One Time Password."
|
22860
|
+
},
|
22861
|
+
{
|
22862
|
+
"title": "U2FPinValue",
|
22863
|
+
"type": "object",
|
22864
|
+
"description": "U2F challenge-response, where payer FSP verifies if the response provided by end-user device matches the previously registered key.\n",
|
22865
|
+
"properties": {
|
22866
|
+
"pinValue": {
|
22867
|
+
"type": "string",
|
22868
|
+
"pattern": "^\\S{1,64}$",
|
22869
|
+
"minLength": 1,
|
22870
|
+
"maxLength": 64,
|
22871
|
+
"description": "U2F challenge-response, where payer FSP verifies if the response provided by end-user device matches the previously registered key.\n"
|
22872
|
+
},
|
22873
|
+
"counter": {
|
22874
|
+
"title": "Integer",
|
22875
|
+
"type": "string",
|
22876
|
+
"pattern": "^[1-9]\\d*$",
|
22877
|
+
"description": "Sequential counter used for cloning detection. Present only for U2F authentication."
|
22878
|
+
}
|
22879
|
+
},
|
22880
|
+
"required": [
|
22881
|
+
"pinValue",
|
22882
|
+
"counter"
|
22883
|
+
]
|
22884
|
+
}
|
22885
|
+
],
|
22886
|
+
"pattern": "^\\d{3,10}$|^\\S{1,64}$",
|
22887
|
+
"description": "Contains the authentication value. The format depends on the authentication type used in the AuthenticationInfo complex type."
|
22888
|
+
}
|
22577
22889
|
},
|
22578
|
-
"
|
22579
|
-
|
22580
|
-
|
22890
|
+
"required": [
|
22891
|
+
"authentication",
|
22892
|
+
"authenticationValue"
|
22893
|
+
]
|
22894
|
+
},
|
22895
|
+
"responseType": {
|
22896
|
+
"title": "AuthorizationResponseType",
|
22897
|
+
"type": "string",
|
22898
|
+
"enum": [
|
22899
|
+
"ENTERED",
|
22900
|
+
"REJECTED",
|
22901
|
+
"RESEND"
|
22902
|
+
],
|
22903
|
+
"description": "Below are the allowed values for the enumeration.\n- ENTERED - Consumer entered the authentication value.\n- REJECTED - Consumer rejected the transaction.\n- RESEND - Consumer requested to resend the authentication value.",
|
22904
|
+
"example": "ENTERED"
|
22581
22905
|
}
|
22582
22906
|
},
|
22583
22907
|
"required": [
|
22584
|
-
"
|
22908
|
+
"responseType"
|
22585
22909
|
]
|
22910
|
+
},
|
22911
|
+
"headers": {
|
22912
|
+
"type": "object"
|
22586
22913
|
}
|
22587
|
-
}
|
22588
|
-
"required": [
|
22589
|
-
"transferAmount",
|
22590
|
-
"expiration",
|
22591
|
-
"ilpPacket",
|
22592
|
-
"condition"
|
22593
|
-
]
|
22594
|
-
},
|
22595
|
-
"quoteResponseSource": {
|
22596
|
-
"type": "string",
|
22597
|
-
"description": "FSPID of the entity that supplied the quote response. This may not be the same as the FSPID of the entity which owns the end user account in the case of a FOREX transfer. i.e. it may be a FOREX gateway.\n"
|
22914
|
+
}
|
22598
22915
|
},
|
22599
22916
|
"fulfil": {
|
22600
|
-
"title": "TransfersIDPutResponse",
|
22601
22917
|
"type": "object",
|
22602
|
-
"
|
22918
|
+
"required": [
|
22919
|
+
"body"
|
22920
|
+
],
|
22603
22921
|
"properties": {
|
22604
|
-
"
|
22605
|
-
"title": "
|
22606
|
-
"type": "string",
|
22607
|
-
"pattern": "^[A-Za-z0-9-_]{43}$",
|
22608
|
-
"maxLength": 48,
|
22609
|
-
"description": "Fulfilment that must be attached to the transfer by the Payee.",
|
22610
|
-
"example": "WLctttbu2HvTsa1XWvUoGRcQozHsqeu9Ahl2JW9Bsu8"
|
22611
|
-
},
|
22612
|
-
"completedTimestamp": {
|
22613
|
-
"title": "DateTime",
|
22614
|
-
"type": "string",
|
22615
|
-
"pattern": "^(?:[1-9]\\d{3}-(?:(?:0[1-9]|1[0-2])-(?:0[1-9]|1\\d|2[0-8])|(?:0[13-9]|1[0-2])-(?:29|30)|(?:0[13578]|1[02])-31)|(?:[1-9]\\d(?:0[48]|[2468][048]|[13579][26])|(?:[2468][048]|[13579][26])00)-02-29)T(?:[01]\\d|2[0-3]):[0-5]\\d:[0-5]\\d(?:(\\.\\d{3}))(?:Z|[+-][01]\\d:[0-5]\\d)$",
|
22616
|
-
"description": "The API data type DateTime is a JSON String in a lexical format that is restricted by a regular expression for interoperability reasons. The format is according to [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html), expressed in a combined date, time and time zone format. A more readable version of the format is yyyy-MM-ddTHH:mm:ss.SSS[-HH:MM]. Examples are \"2016-05-24T08:38:08.699-04:00\", \"2016-05-24T08:38:08.699Z\" (where Z indicates Zulu time zone, same as UTC).",
|
22617
|
-
"example": "2016-05-24T08:38:08.699-04:00"
|
22618
|
-
},
|
22619
|
-
"transferState": {
|
22620
|
-
"title": "TransferState",
|
22621
|
-
"type": "string",
|
22622
|
-
"enum": [
|
22623
|
-
"RECEIVED",
|
22624
|
-
"RESERVED",
|
22625
|
-
"COMMITTED",
|
22626
|
-
"ABORTED"
|
22627
|
-
],
|
22628
|
-
"description": "Below are the allowed values for the enumeration.\n- RECEIVED - Next ledger has received the transfer.\n- RESERVED - Next ledger has reserved the transfer.\n- COMMITTED - Next ledger has successfully performed the transfer.\n- ABORTED - Next ledger has aborted the transfer due to a rejection or failure to perform the transfer.",
|
22629
|
-
"example": "RESERVED"
|
22630
|
-
},
|
22631
|
-
"extensionList": {
|
22632
|
-
"title": "ExtensionList",
|
22922
|
+
"body": {
|
22923
|
+
"title": "TransfersIDPutResponse",
|
22633
22924
|
"type": "object",
|
22634
|
-
"description": "
|
22925
|
+
"description": "The object sent in the PUT /transfers/{ID} callback.",
|
22635
22926
|
"properties": {
|
22636
|
-
"
|
22637
|
-
"
|
22638
|
-
"
|
22639
|
-
|
22640
|
-
|
22641
|
-
|
22642
|
-
|
22643
|
-
|
22644
|
-
|
22645
|
-
|
22646
|
-
|
22647
|
-
|
22648
|
-
|
22927
|
+
"fulfilment": {
|
22928
|
+
"title": "IlpFulfilment",
|
22929
|
+
"type": "string",
|
22930
|
+
"pattern": "^[A-Za-z0-9-_]{43}$",
|
22931
|
+
"maxLength": 48,
|
22932
|
+
"description": "Fulfilment that must be attached to the transfer by the Payee.",
|
22933
|
+
"example": "WLctttbu2HvTsa1XWvUoGRcQozHsqeu9Ahl2JW9Bsu8"
|
22934
|
+
},
|
22935
|
+
"completedTimestamp": {
|
22936
|
+
"title": "DateTime",
|
22937
|
+
"type": "string",
|
22938
|
+
"pattern": "^(?:[1-9]\\d{3}-(?:(?:0[1-9]|1[0-2])-(?:0[1-9]|1\\d|2[0-8])|(?:0[13-9]|1[0-2])-(?:29|30)|(?:0[13578]|1[02])-31)|(?:[1-9]\\d(?:0[48]|[2468][048]|[13579][26])|(?:[2468][048]|[13579][26])00)-02-29)T(?:[01]\\d|2[0-3]):[0-5]\\d:[0-5]\\d(?:(\\.\\d{3}))(?:Z|[+-][01]\\d:[0-5]\\d)$",
|
22939
|
+
"description": "The API data type DateTime is a JSON String in a lexical format that is restricted by a regular expression for interoperability reasons. The format is according to [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html), expressed in a combined date, time and time zone format. A more readable version of the format is yyyy-MM-ddTHH:mm:ss.SSS[-HH:MM]. Examples are \"2016-05-24T08:38:08.699-04:00\", \"2016-05-24T08:38:08.699Z\" (where Z indicates Zulu time zone, same as UTC).",
|
22940
|
+
"example": "2016-05-24T08:38:08.699-04:00"
|
22941
|
+
},
|
22942
|
+
"transferState": {
|
22943
|
+
"title": "TransferState",
|
22944
|
+
"type": "string",
|
22945
|
+
"enum": [
|
22946
|
+
"RECEIVED",
|
22947
|
+
"RESERVED",
|
22948
|
+
"COMMITTED",
|
22949
|
+
"ABORTED"
|
22950
|
+
],
|
22951
|
+
"description": "Below are the allowed values for the enumeration.\n- RECEIVED - Next ledger has received the transfer.\n- RESERVED - Next ledger has reserved the transfer.\n- COMMITTED - Next ledger has successfully performed the transfer.\n- ABORTED - Next ledger has aborted the transfer due to a rejection or failure to perform the transfer.",
|
22952
|
+
"example": "RESERVED"
|
22953
|
+
},
|
22954
|
+
"extensionList": {
|
22955
|
+
"title": "ExtensionList",
|
22956
|
+
"type": "object",
|
22957
|
+
"description": "Data model for the complex type ExtensionList. An optional list of extensions, specific to deployment.",
|
22958
|
+
"properties": {
|
22959
|
+
"extension": {
|
22960
|
+
"type": "array",
|
22961
|
+
"items": {
|
22962
|
+
"title": "Extension",
|
22963
|
+
"type": "object",
|
22964
|
+
"description": "Data model for the complex type Extension.",
|
22965
|
+
"properties": {
|
22966
|
+
"key": {
|
22967
|
+
"title": "ExtensionKey",
|
22968
|
+
"type": "string",
|
22969
|
+
"minLength": 1,
|
22970
|
+
"maxLength": 32,
|
22971
|
+
"description": "Extension key."
|
22972
|
+
},
|
22973
|
+
"value": {
|
22974
|
+
"title": "ExtensionValue",
|
22975
|
+
"type": "string",
|
22976
|
+
"minLength": 1,
|
22977
|
+
"maxLength": 128,
|
22978
|
+
"description": "Extension value."
|
22979
|
+
}
|
22980
|
+
},
|
22981
|
+
"required": [
|
22982
|
+
"key",
|
22983
|
+
"value"
|
22984
|
+
]
|
22649
22985
|
},
|
22650
|
-
"
|
22651
|
-
|
22652
|
-
|
22653
|
-
|
22654
|
-
"maxLength": 128,
|
22655
|
-
"description": "Extension value."
|
22656
|
-
}
|
22657
|
-
},
|
22658
|
-
"required": [
|
22659
|
-
"key",
|
22660
|
-
"value"
|
22661
|
-
]
|
22986
|
+
"minItems": 1,
|
22987
|
+
"maxItems": 16,
|
22988
|
+
"description": "Number of Extension elements."
|
22989
|
+
}
|
22662
22990
|
},
|
22663
|
-
"
|
22664
|
-
|
22665
|
-
|
22991
|
+
"required": [
|
22992
|
+
"extension"
|
22993
|
+
]
|
22666
22994
|
}
|
22667
22995
|
},
|
22668
22996
|
"required": [
|
22669
|
-
"
|
22997
|
+
"transferState"
|
22670
22998
|
]
|
22999
|
+
},
|
23000
|
+
"headers": {
|
23001
|
+
"type": "object"
|
22671
23002
|
}
|
22672
|
-
}
|
22673
|
-
"required": [
|
22674
|
-
"transferState"
|
22675
|
-
]
|
23003
|
+
}
|
22676
23004
|
},
|
22677
23005
|
"lastError": {
|
22678
23006
|
"type": "object",
|