@mojaloop/api-snippets 17.7.2 → 17.7.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 +7 -0
- package/docs/fspiop-rest-v2.0-ISO20022-openapi3-snippets.yaml +554 -10
- package/fspiop/v2_0_ISO20022/openapi3/components/schemas/ActiveCurrencyCode.yaml +169 -1
- package/fspiop/v2_0_ISO20022/openapi3/components/schemas/ActiveOrHistoricCurrencyCode.yaml +169 -1
- package/fspiop/v2_0_ISO20022/openapi3/components/schemas/AmountTypeEnum.yaml +9 -0
- package/fspiop/v2_0_ISO20022/openapi3/components/schemas/CreditTransferTransaction68_Put_FX_Quotes_ID.yaml +136 -0
- package/fspiop/v2_0_ISO20022/openapi3/components/schemas/Exact32HexBinaryText.yaml +5 -2
- package/fspiop/v2_0_ISO20022/openapi3/components/schemas/ExternalPaymentTransactionStatus1Code.yaml +7 -0
- package/fspiop/v2_0_ISO20022/openapi3/components/schemas/FxResponse_FICreditTransferConfirmation.yaml +2 -2
- package/fspiop/v2_0_ISO20022/openapi3/components/schemas/InstructionForCreditorAgent3.yaml +1 -1
- package/fspiop/v2_0_ISO20022/openapi3/components/schemas/InstructionForCreditorAgent3_Put_FX_Quotes_ID.yaml +25 -0
- package/fspiop/v2_0_ISO20022/openapi3/components/schemas/PaymentIdentification13.yaml +9 -3
- package/fspiop/v2_0_ISO20022/openapi3/components/schemas/ULIDIdentifier.yaml +4 -0
- package/lib/fspiop/v2_0_ISO20022/json-schemas.json +32924 -1781
- package/lib/fspiop/v2_0_ISO20022/openapi.d.ts +116 -9
- package/lib/fspiop/v2_0_ISO20022/schemas.d.ts +10296 -448
- package/lib/fspiop/v2_0_ISO20022/schemas.js +4 -0
- package/lib/fspiop/v2_0_ISO20022/schemas.js.map +1 -1
- package/lib/fspiop/v2_0_ISO20022/types.d.ts +4 -0
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
@@ -1,4 +1,11 @@
|
|
1
1
|
# Changelog: [mojaloop/api-snippets](https://github.com/mojaloop/api-snippets)
|
2
|
+
### [17.7.3](https://github.com/mojaloop/api-snippets/compare/v17.7.2...v17.7.3) (2024-10-29)
|
3
|
+
|
4
|
+
|
5
|
+
### Maintenance
|
6
|
+
|
7
|
+
* add stricter validation for GP testing ([#183](https://github.com/mojaloop/api-snippets/issues/183)) ([3ba043f](https://github.com/mojaloop/api-snippets/commit/3ba043f025302d1b0c40b0f3664bc5d11f66f56e))
|
8
|
+
|
2
9
|
### [17.7.2](https://github.com/mojaloop/api-snippets/compare/v17.7.1...v17.7.2) (2024-10-14)
|
3
10
|
|
4
11
|
|
@@ -1439,13 +1439,182 @@ components:
|
|
1439
1439
|
ActiveCurrencyCode:
|
1440
1440
|
title: ActiveCurrencyCode
|
1441
1441
|
type: string
|
1442
|
-
pattern: ^[A-Z]{3,3}$
|
1443
1442
|
description: >-
|
1444
1443
|
A code allocated to a currency by a Maintenance Agency under an
|
1445
1444
|
international identification scheme as described in the latest edition
|
1446
1445
|
of the international standard ISO 4217 "Codes for the representation of
|
1447
1446
|
currencies and funds".
|
1447
|
+
|
1448
|
+
NOTE: This has been modified away from the original ISO20022 pattern to
|
1449
|
+
enums.
|
1448
1450
|
example: USD
|
1451
|
+
minLength: 3
|
1452
|
+
maxLength: 3
|
1453
|
+
enum:
|
1454
|
+
- AED
|
1455
|
+
- AFN
|
1456
|
+
- ALL
|
1457
|
+
- AMD
|
1458
|
+
- ANG
|
1459
|
+
- AOA
|
1460
|
+
- ARS
|
1461
|
+
- AUD
|
1462
|
+
- AWG
|
1463
|
+
- AZN
|
1464
|
+
- BAM
|
1465
|
+
- BBD
|
1466
|
+
- BDT
|
1467
|
+
- BGN
|
1468
|
+
- BHD
|
1469
|
+
- BIF
|
1470
|
+
- BMD
|
1471
|
+
- BND
|
1472
|
+
- BOB
|
1473
|
+
- BRL
|
1474
|
+
- BSD
|
1475
|
+
- BTN
|
1476
|
+
- BWP
|
1477
|
+
- BYN
|
1478
|
+
- BZD
|
1479
|
+
- CAD
|
1480
|
+
- CDF
|
1481
|
+
- CHF
|
1482
|
+
- CLP
|
1483
|
+
- CNY
|
1484
|
+
- COP
|
1485
|
+
- CRC
|
1486
|
+
- CUC
|
1487
|
+
- CUP
|
1488
|
+
- CVE
|
1489
|
+
- CZK
|
1490
|
+
- DJF
|
1491
|
+
- DKK
|
1492
|
+
- DOP
|
1493
|
+
- DZD
|
1494
|
+
- EGP
|
1495
|
+
- ERN
|
1496
|
+
- ETB
|
1497
|
+
- EUR
|
1498
|
+
- FJD
|
1499
|
+
- FKP
|
1500
|
+
- GBP
|
1501
|
+
- GEL
|
1502
|
+
- GGP
|
1503
|
+
- GHS
|
1504
|
+
- GIP
|
1505
|
+
- GMD
|
1506
|
+
- GNF
|
1507
|
+
- GTQ
|
1508
|
+
- GYD
|
1509
|
+
- HKD
|
1510
|
+
- HNL
|
1511
|
+
- HRK
|
1512
|
+
- HTG
|
1513
|
+
- HUF
|
1514
|
+
- IDR
|
1515
|
+
- ILS
|
1516
|
+
- IMP
|
1517
|
+
- INR
|
1518
|
+
- IQD
|
1519
|
+
- IRR
|
1520
|
+
- ISK
|
1521
|
+
- JEP
|
1522
|
+
- JMD
|
1523
|
+
- JOD
|
1524
|
+
- JPY
|
1525
|
+
- KES
|
1526
|
+
- KGS
|
1527
|
+
- KHR
|
1528
|
+
- KMF
|
1529
|
+
- KPW
|
1530
|
+
- KRW
|
1531
|
+
- KWD
|
1532
|
+
- KYD
|
1533
|
+
- KZT
|
1534
|
+
- LAK
|
1535
|
+
- LBP
|
1536
|
+
- LKR
|
1537
|
+
- LRD
|
1538
|
+
- LSL
|
1539
|
+
- LYD
|
1540
|
+
- MAD
|
1541
|
+
- MDL
|
1542
|
+
- MGA
|
1543
|
+
- MKD
|
1544
|
+
- MMK
|
1545
|
+
- MNT
|
1546
|
+
- MOP
|
1547
|
+
- MRO
|
1548
|
+
- MUR
|
1549
|
+
- MVR
|
1550
|
+
- MWK
|
1551
|
+
- MXN
|
1552
|
+
- MYR
|
1553
|
+
- MZN
|
1554
|
+
- NAD
|
1555
|
+
- NGN
|
1556
|
+
- NIO
|
1557
|
+
- NOK
|
1558
|
+
- NPR
|
1559
|
+
- NZD
|
1560
|
+
- OMR
|
1561
|
+
- PAB
|
1562
|
+
- PEN
|
1563
|
+
- PGK
|
1564
|
+
- PHP
|
1565
|
+
- PKR
|
1566
|
+
- PLN
|
1567
|
+
- PYG
|
1568
|
+
- QAR
|
1569
|
+
- RON
|
1570
|
+
- RSD
|
1571
|
+
- RUB
|
1572
|
+
- RWF
|
1573
|
+
- SAR
|
1574
|
+
- SBD
|
1575
|
+
- SCR
|
1576
|
+
- SDG
|
1577
|
+
- SEK
|
1578
|
+
- SGD
|
1579
|
+
- SHP
|
1580
|
+
- SLL
|
1581
|
+
- SOS
|
1582
|
+
- SPL
|
1583
|
+
- SRD
|
1584
|
+
- STD
|
1585
|
+
- SVC
|
1586
|
+
- SYP
|
1587
|
+
- SZL
|
1588
|
+
- THB
|
1589
|
+
- TJS
|
1590
|
+
- TMT
|
1591
|
+
- TND
|
1592
|
+
- TOP
|
1593
|
+
- TRY
|
1594
|
+
- TTD
|
1595
|
+
- TVD
|
1596
|
+
- TWD
|
1597
|
+
- TZS
|
1598
|
+
- UAH
|
1599
|
+
- UGX
|
1600
|
+
- USD
|
1601
|
+
- UYU
|
1602
|
+
- UZS
|
1603
|
+
- VEF
|
1604
|
+
- VND
|
1605
|
+
- VUV
|
1606
|
+
- WST
|
1607
|
+
- XAF
|
1608
|
+
- XCD
|
1609
|
+
- XDR
|
1610
|
+
- XOF
|
1611
|
+
- XPF
|
1612
|
+
- XTS
|
1613
|
+
- XXX
|
1614
|
+
- YER
|
1615
|
+
- ZAR
|
1616
|
+
- ZMW
|
1617
|
+
- ZWD
|
1449
1618
|
ActiveOrHistoricCurrencyAndAmount:
|
1450
1619
|
title: ActiveOrHistoricCurrencyAndAmount
|
1451
1620
|
type: object
|
@@ -1487,8 +1656,177 @@ components:
|
|
1487
1656
|
international identification scheme, as described in the latest edition
|
1488
1657
|
of the international standard ISO 4217 "Codes for the representation of
|
1489
1658
|
currencies and funds".
|
1490
|
-
|
1659
|
+
|
1660
|
+
NOTE: This has been modified away from the original ISO20022 pattern to
|
1661
|
+
enums.
|
1491
1662
|
example: USD
|
1663
|
+
minLength: 3
|
1664
|
+
maxLength: 3
|
1665
|
+
enum:
|
1666
|
+
- AED
|
1667
|
+
- AFN
|
1668
|
+
- ALL
|
1669
|
+
- AMD
|
1670
|
+
- ANG
|
1671
|
+
- AOA
|
1672
|
+
- ARS
|
1673
|
+
- AUD
|
1674
|
+
- AWG
|
1675
|
+
- AZN
|
1676
|
+
- BAM
|
1677
|
+
- BBD
|
1678
|
+
- BDT
|
1679
|
+
- BGN
|
1680
|
+
- BHD
|
1681
|
+
- BIF
|
1682
|
+
- BMD
|
1683
|
+
- BND
|
1684
|
+
- BOB
|
1685
|
+
- BRL
|
1686
|
+
- BSD
|
1687
|
+
- BTN
|
1688
|
+
- BWP
|
1689
|
+
- BYN
|
1690
|
+
- BZD
|
1691
|
+
- CAD
|
1692
|
+
- CDF
|
1693
|
+
- CHF
|
1694
|
+
- CLP
|
1695
|
+
- CNY
|
1696
|
+
- COP
|
1697
|
+
- CRC
|
1698
|
+
- CUC
|
1699
|
+
- CUP
|
1700
|
+
- CVE
|
1701
|
+
- CZK
|
1702
|
+
- DJF
|
1703
|
+
- DKK
|
1704
|
+
- DOP
|
1705
|
+
- DZD
|
1706
|
+
- EGP
|
1707
|
+
- ERN
|
1708
|
+
- ETB
|
1709
|
+
- EUR
|
1710
|
+
- FJD
|
1711
|
+
- FKP
|
1712
|
+
- GBP
|
1713
|
+
- GEL
|
1714
|
+
- GGP
|
1715
|
+
- GHS
|
1716
|
+
- GIP
|
1717
|
+
- GMD
|
1718
|
+
- GNF
|
1719
|
+
- GTQ
|
1720
|
+
- GYD
|
1721
|
+
- HKD
|
1722
|
+
- HNL
|
1723
|
+
- HRK
|
1724
|
+
- HTG
|
1725
|
+
- HUF
|
1726
|
+
- IDR
|
1727
|
+
- ILS
|
1728
|
+
- IMP
|
1729
|
+
- INR
|
1730
|
+
- IQD
|
1731
|
+
- IRR
|
1732
|
+
- ISK
|
1733
|
+
- JEP
|
1734
|
+
- JMD
|
1735
|
+
- JOD
|
1736
|
+
- JPY
|
1737
|
+
- KES
|
1738
|
+
- KGS
|
1739
|
+
- KHR
|
1740
|
+
- KMF
|
1741
|
+
- KPW
|
1742
|
+
- KRW
|
1743
|
+
- KWD
|
1744
|
+
- KYD
|
1745
|
+
- KZT
|
1746
|
+
- LAK
|
1747
|
+
- LBP
|
1748
|
+
- LKR
|
1749
|
+
- LRD
|
1750
|
+
- LSL
|
1751
|
+
- LYD
|
1752
|
+
- MAD
|
1753
|
+
- MDL
|
1754
|
+
- MGA
|
1755
|
+
- MKD
|
1756
|
+
- MMK
|
1757
|
+
- MNT
|
1758
|
+
- MOP
|
1759
|
+
- MRO
|
1760
|
+
- MUR
|
1761
|
+
- MVR
|
1762
|
+
- MWK
|
1763
|
+
- MXN
|
1764
|
+
- MYR
|
1765
|
+
- MZN
|
1766
|
+
- NAD
|
1767
|
+
- NGN
|
1768
|
+
- NIO
|
1769
|
+
- NOK
|
1770
|
+
- NPR
|
1771
|
+
- NZD
|
1772
|
+
- OMR
|
1773
|
+
- PAB
|
1774
|
+
- PEN
|
1775
|
+
- PGK
|
1776
|
+
- PHP
|
1777
|
+
- PKR
|
1778
|
+
- PLN
|
1779
|
+
- PYG
|
1780
|
+
- QAR
|
1781
|
+
- RON
|
1782
|
+
- RSD
|
1783
|
+
- RUB
|
1784
|
+
- RWF
|
1785
|
+
- SAR
|
1786
|
+
- SBD
|
1787
|
+
- SCR
|
1788
|
+
- SDG
|
1789
|
+
- SEK
|
1790
|
+
- SGD
|
1791
|
+
- SHP
|
1792
|
+
- SLL
|
1793
|
+
- SOS
|
1794
|
+
- SPL
|
1795
|
+
- SRD
|
1796
|
+
- STD
|
1797
|
+
- SVC
|
1798
|
+
- SYP
|
1799
|
+
- SZL
|
1800
|
+
- THB
|
1801
|
+
- TJS
|
1802
|
+
- TMT
|
1803
|
+
- TND
|
1804
|
+
- TOP
|
1805
|
+
- TRY
|
1806
|
+
- TTD
|
1807
|
+
- TVD
|
1808
|
+
- TWD
|
1809
|
+
- TZS
|
1810
|
+
- UAH
|
1811
|
+
- UGX
|
1812
|
+
- USD
|
1813
|
+
- UYU
|
1814
|
+
- UZS
|
1815
|
+
- VEF
|
1816
|
+
- VND
|
1817
|
+
- VUV
|
1818
|
+
- WST
|
1819
|
+
- XAF
|
1820
|
+
- XCD
|
1821
|
+
- XDR
|
1822
|
+
- XOF
|
1823
|
+
- XPF
|
1824
|
+
- XTS
|
1825
|
+
- XXX
|
1826
|
+
- YER
|
1827
|
+
- ZAR
|
1828
|
+
- ZMW
|
1829
|
+
- ZWD
|
1492
1830
|
AddressType2Code:
|
1493
1831
|
description: |
|
1494
1832
|
AddressType2Code
|
@@ -1534,6 +1872,16 @@ components:
|
|
1534
1872
|
- Prtry
|
1535
1873
|
example:
|
1536
1874
|
Cd: ADDR
|
1875
|
+
AmountTypeEnum:
|
1876
|
+
title: AmountTypeEnum
|
1877
|
+
description: |
|
1878
|
+
NOTE: This pattern is not the original ISO20022 specification.
|
1879
|
+
This represents the enum values when mapping to and from FSPIOP specification.
|
1880
|
+
type: string
|
1881
|
+
enum:
|
1882
|
+
- SEND
|
1883
|
+
- RECEIVE
|
1884
|
+
example: SEND
|
1537
1885
|
AnyBICDec2014Identifier:
|
1538
1886
|
title: AnyBICDec2014Identifier
|
1539
1887
|
type: string
|
@@ -2619,6 +2967,141 @@ components:
|
|
2619
2967
|
VrfctnOfTerms:
|
2620
2968
|
Cntt: CONTENT
|
2621
2969
|
CnttTp: PROPRIETARY
|
2970
|
+
CreditTransferTransaction68_Put_FX_Quotes_ID:
|
2971
|
+
title: CreditTransferTransaction68_Put_FX_Quotes_ID
|
2972
|
+
description: >
|
2973
|
+
Provides further details specific to the individual transaction(s)
|
2974
|
+
included in the message.
|
2975
|
+
type: object
|
2976
|
+
properties:
|
2977
|
+
PmtId:
|
2978
|
+
allOf:
|
2979
|
+
- $ref: "#/components/schemas/PaymentIdentification13"
|
2980
|
+
- description: |
|
2981
|
+
PaymentIdentification
|
2982
|
+
Set of elements used to reference a payment instruction.
|
2983
|
+
PmtTpInf:
|
2984
|
+
allOf:
|
2985
|
+
- $ref: "#/components/schemas/PaymentTypeInformation28"
|
2986
|
+
- description: |
|
2987
|
+
PaymentTypeInformation
|
2988
|
+
Set of elements used to further specify the type of transaction.
|
2989
|
+
UndrlygCstmrCdtTrf:
|
2990
|
+
allOf:
|
2991
|
+
- $ref: "#/components/schemas/UnderlyingCustomerCreditTransfer"
|
2992
|
+
- description: |
|
2993
|
+
Underlying Customer Credit Transfer
|
2994
|
+
TBD
|
2995
|
+
IntrBkSttlmAmt:
|
2996
|
+
allOf:
|
2997
|
+
- $ref: "#/components/schemas/ActiveCurrencyAndAmount"
|
2998
|
+
- description: >
|
2999
|
+
InterbankSettlementAmount
|
3000
|
+
|
3001
|
+
Amount of money moved between the instructing agent and the
|
3002
|
+
instructed agent.
|
3003
|
+
Dbtr:
|
3004
|
+
allOf:
|
3005
|
+
- $ref: >-
|
3006
|
+
#/components/schemas/BranchAndFinancialInstitutionIdentification8
|
3007
|
+
- description: |
|
3008
|
+
Debtor
|
3009
|
+
Party that owes an amount of money to the (ultimate) creditor.
|
3010
|
+
DbtrAcct:
|
3011
|
+
allOf:
|
3012
|
+
- $ref: "#/components/schemas/CashAccount40"
|
3013
|
+
- description: |
|
3014
|
+
DebtorAccount
|
3015
|
+
Account used to process a payment.
|
3016
|
+
DbtrAgt:
|
3017
|
+
allOf:
|
3018
|
+
- $ref: >-
|
3019
|
+
#/components/schemas/BranchAndFinancialInstitutionIdentification8
|
3020
|
+
- description: |
|
3021
|
+
DebtorAgent
|
3022
|
+
Financial institution servicing an account for the debtor.
|
3023
|
+
CdtrAgt:
|
3024
|
+
allOf:
|
3025
|
+
- $ref: >-
|
3026
|
+
#/components/schemas/BranchAndFinancialInstitutionIdentification8
|
3027
|
+
- description: |
|
3028
|
+
CreditorAgent
|
3029
|
+
Financial institution servicing an account for the creditor.
|
3030
|
+
Cdtr:
|
3031
|
+
allOf:
|
3032
|
+
- $ref: >-
|
3033
|
+
#/components/schemas/BranchAndFinancialInstitutionIdentification8
|
3034
|
+
- description: |
|
3035
|
+
Creditor
|
3036
|
+
Party to which an amount of money is due.
|
3037
|
+
CdtrAcct:
|
3038
|
+
allOf:
|
3039
|
+
- $ref: "#/components/schemas/CashAccount40"
|
3040
|
+
- description: |
|
3041
|
+
CreditorAccount
|
3042
|
+
Account to which a credit entry is made.
|
3043
|
+
InstrForCdtrAgt:
|
3044
|
+
allOf:
|
3045
|
+
- $ref: >-
|
3046
|
+
#/components/schemas/InstructionForCreditorAgent3_Put_FX_Quotes_ID
|
3047
|
+
- description: >
|
3048
|
+
InstructionForCreditorAgent
|
3049
|
+
|
3050
|
+
Set of elements used to provide information on the remittance
|
3051
|
+
advice.
|
3052
|
+
Purp:
|
3053
|
+
allOf:
|
3054
|
+
- $ref: "#/components/schemas/Purpose2Choice"
|
3055
|
+
- description: |
|
3056
|
+
Purpose
|
3057
|
+
Underlying reason for the payment transaction.
|
3058
|
+
VrfctnOfTerms:
|
3059
|
+
allOf:
|
3060
|
+
- $ref: "#/components/schemas/CryptographicLockChoice"
|
3061
|
+
- description: >
|
3062
|
+
VerificationOfTerms
|
3063
|
+
|
3064
|
+
Set of elements used to provide information on the underlying
|
3065
|
+
terms of the transaction.
|
3066
|
+
required:
|
3067
|
+
- PmtId
|
3068
|
+
- IntrBkSttlmAmt
|
3069
|
+
- Dbtr
|
3070
|
+
- Cdtr
|
3071
|
+
example:
|
3072
|
+
PmtId:
|
3073
|
+
InstrId: INSTRID
|
3074
|
+
EndToEndId: ENDTOENDID
|
3075
|
+
PmtTpInf:
|
3076
|
+
LclInstrm:
|
3077
|
+
Cd: CHQB
|
3078
|
+
Prtry: PROPRIETARY
|
3079
|
+
IntrBkSttlmAmt:
|
3080
|
+
Amount: 123.45
|
3081
|
+
Ccy: EUR
|
3082
|
+
Dbtr:
|
3083
|
+
Nm: Debtor Name
|
3084
|
+
DbtrAcct:
|
3085
|
+
Id:
|
3086
|
+
IBAN: IBAN
|
3087
|
+
DbtrAgt:
|
3088
|
+
FinInstnId:
|
3089
|
+
BICFI: BICFI
|
3090
|
+
CdtrAgt:
|
3091
|
+
FinInstnId:
|
3092
|
+
BICFI: BICFI
|
3093
|
+
Cdtr:
|
3094
|
+
Nm: Creditor Name
|
3095
|
+
CdtrAcct:
|
3096
|
+
Id:
|
3097
|
+
IBAN: IBAN
|
3098
|
+
InstrForCdtrAgt:
|
3099
|
+
Cd: INSTRUCTION
|
3100
|
+
Purp:
|
3101
|
+
Cd: CHAR
|
3102
|
+
VrfctnOfTerms:
|
3103
|
+
Cntt: CONTENT
|
3104
|
+
CnttTp: PROPRIETARY
|
2622
3105
|
CryptographicLockChoice:
|
2623
3106
|
title: CryptographicLockChoice
|
2624
3107
|
description: |
|
@@ -2778,9 +3261,12 @@ components:
|
|
2778
3261
|
Exact32HexBinaryText:
|
2779
3262
|
title: Exact32HexBinaryText
|
2780
3263
|
description: |
|
2781
|
-
Specifies a hexadecimal string
|
3264
|
+
Specifies a hexadecimal string.
|
3265
|
+
|
3266
|
+
NOTE: This pattern is not the original ISO20022 specification.
|
2782
3267
|
type: string
|
2783
|
-
|
3268
|
+
pattern: ^[A-Za-z0-9-_]{43}$
|
3269
|
+
maxLength: 48
|
2784
3270
|
Exact4AlphaNumericText:
|
2785
3271
|
title: Exact4AlphaNumericText
|
2786
3272
|
description: |
|
@@ -2960,20 +3446,31 @@ components:
|
|
2960
3446
|
example: 1234
|
2961
3447
|
ExternalPaymentTransactionStatus1Code:
|
2962
3448
|
title: ExternalPaymentTransactionStatus1Code
|
2963
|
-
description:
|
3449
|
+
description: >
|
2964
3450
|
Specifies the external payment transaction status code.
|
2965
3451
|
|
3452
|
+
|
2966
3453
|
For FSPIOP transfer state enumeration mappings:
|
3454
|
+
|
2967
3455
|
{
|
2968
3456
|
"COMM": "COMMITED",
|
2969
3457
|
"RESV": "RESERVED",
|
2970
3458
|
"RECV": "RECEIVED",
|
2971
3459
|
"ABOR": "ABORTED"
|
2972
3460
|
}
|
3461
|
+
|
3462
|
+
|
3463
|
+
NOTE: enum enforcement is not apart of the ISO20022 specification, but
|
3464
|
+
is added here for FSPIOP mappings.
|
2973
3465
|
type: string
|
2974
3466
|
minLength: 1
|
2975
3467
|
maxLength: 4
|
2976
3468
|
example: COMM
|
3469
|
+
enum:
|
3470
|
+
- COMM
|
3471
|
+
- RESV
|
3472
|
+
- RECV
|
3473
|
+
- ABOR
|
2977
3474
|
ExternalPersonIdentification1Code:
|
2978
3475
|
title: ExternalPersonIdentification1Code
|
2979
3476
|
description: Specifies the external person identification code.
|
@@ -3318,9 +3815,10 @@ components:
|
|
3318
3815
|
included in the message.
|
3319
3816
|
CdtTrfTxInf:
|
3320
3817
|
allOf:
|
3321
|
-
- $ref:
|
3818
|
+
- $ref: >-
|
3819
|
+
#/components/schemas/CreditTransferTransaction68_Put_FX_Quotes_ID
|
3322
3820
|
- description: >
|
3323
|
-
|
3821
|
+
CreditTransferTransaction68_Put_FX_Quotes_ID
|
3324
3822
|
|
3325
3823
|
Set of elements providing information specific to the individual
|
3326
3824
|
credit transfer(s).
|
@@ -4261,6 +4759,35 @@ components:
|
|
4261
4759
|
example:
|
4262
4760
|
Cd: PHOA
|
4263
4761
|
InstrInf: Please advise/contact next agent by phone.
|
4762
|
+
InstructionForCreditorAgent3_Put_FX_Quotes_ID:
|
4763
|
+
title: InstructionForCreditorAgent3_Put_FX_Quotes_ID
|
4764
|
+
description: >
|
4765
|
+
Further information related to the processing of the payment
|
4766
|
+
instruction, provided by the initiating party, and intended for the
|
4767
|
+
creditor agent.
|
4768
|
+
type: object
|
4769
|
+
properties:
|
4770
|
+
Cd:
|
4771
|
+
allOf:
|
4772
|
+
- $ref: "#/components/schemas/ExternalCreditorAgentInstruction1Code"
|
4773
|
+
- description: >
|
4774
|
+
Code
|
4775
|
+
|
4776
|
+
Coded information related to the processing of the payment
|
4777
|
+
instruction, provided by the initiating party, and intended for
|
4778
|
+
the creditor's agent.
|
4779
|
+
InstrInf:
|
4780
|
+
allOf:
|
4781
|
+
- $ref: "#/components/schemas/AmountTypeEnum"
|
4782
|
+
- description: >
|
4783
|
+
InstructionInformation
|
4784
|
+
|
4785
|
+
Further information complementing the coded instruction or
|
4786
|
+
instruction to the creditor's agent that is bilaterally agreed
|
4787
|
+
or specific to a user community.
|
4788
|
+
example:
|
4789
|
+
Cd: PHOA
|
4790
|
+
InstrInf: Please advise/contact next agent by phone.
|
4264
4791
|
InstructionForNextAgent1:
|
4265
4792
|
title: InstructionForNextAgent1
|
4266
4793
|
description: >
|
@@ -4952,7 +5479,7 @@ components:
|
|
4952
5479
|
properties:
|
4953
5480
|
InstrId:
|
4954
5481
|
allOf:
|
4955
|
-
- $ref: "#/components/schemas/
|
5482
|
+
- $ref: "#/components/schemas/ULIDIdentifier"
|
4956
5483
|
- description: >
|
4957
5484
|
InstructionIdentification (FSPIOP equivalent:
|
4958
5485
|
transactionRequestId)
|
@@ -4971,9 +5498,13 @@ components:
|
|
4971
5498
|
individual instruction. It can be included in
|
4972
5499
|
|
4973
5500
|
several messages related to the instruction.
|
5501
|
+
|
5502
|
+
|
5503
|
+
This field has been changed from the original ISO20022
|
5504
|
+
`Max35Text`` schema to a ULIDIdentifier schema.
|
4974
5505
|
EndToEndId:
|
4975
5506
|
allOf:
|
4976
|
-
- $ref: "#/components/schemas/
|
5507
|
+
- $ref: "#/components/schemas/ULIDIdentifier"
|
4977
5508
|
- description: >
|
4978
5509
|
EndToEndIdentification (FSPIOP equivalent: transactionId)
|
4979
5510
|
|
@@ -4997,9 +5528,13 @@ components:
|
|
4997
5528
|
|
4998
5529
|
identification must be passed on throughout the entire
|
4999
5530
|
end-to-end chain.
|
5531
|
+
|
5532
|
+
|
5533
|
+
This field has been changed from the original ISO20022
|
5534
|
+
`Max35Text`` schema to a ULIDIdentifier schema.
|
5000
5535
|
TxId:
|
5001
5536
|
allOf:
|
5002
|
-
- $ref: "#/components/schemas/
|
5537
|
+
- $ref: "#/components/schemas/ULIDIdentifier"
|
5003
5538
|
- description: >
|
5004
5539
|
TransactionIdentification (FSPIOP equivalent: quoteId in quote
|
5005
5540
|
request, transferId in transfer request)
|
@@ -5020,6 +5555,10 @@ components:
|
|
5020
5555
|
|
5021
5556
|
Usage: The instructing agent has to make sure that the
|
5022
5557
|
transaction identification is unique for a preagreed period.
|
5558
|
+
|
5559
|
+
|
5560
|
+
This field has been changed from the original ISO20022
|
5561
|
+
`Max35Text`` schema to a ULIDIdentifier schema.
|
5023
5562
|
UETR:
|
5024
5563
|
allOf:
|
5025
5564
|
- $ref: "#/components/schemas/UUIDv4Identifier"
|
@@ -6535,6 +7074,11 @@ components:
|
|
6535
7074
|
FwdgAgt:
|
6536
7075
|
FinInstnId:
|
6537
7076
|
BICFI: BBBBBBBB
|
7077
|
+
ULIDIdentifier:
|
7078
|
+
title: ULIDIdentifier
|
7079
|
+
type: string
|
7080
|
+
pattern: ^[0-9A-HJKMNP-TV-Z]{26}$
|
7081
|
+
example: 01AN4Z07BY79KA1307SR9X4MV3
|
6538
7082
|
UUIDv4Identifier:
|
6539
7083
|
title: UUIDv4Identifier
|
6540
7084
|
type: string
|