IntentToPayNotificationV02

tsmt.044.001.02

Scope The IntentToPayNotification message is sent by a party to the matching application in order to provide details about a future payment. This message contains details about an intention to pay a certain amount, on a certain date, in relation to one or several transactions known to the matching application. Usage The IntentToPayNotification message can be sent by a party to the transaction at any time as long as the transaction is established and not yet closed. The message is unsolicited, that is, it is not sent in response to another message.

Message Construction

Every ISO20022 message has at the highest level what we call ‘building blocks’. Because the message is constructed as immutable records, the association is by composition. Below you can see the relationship between the message and its constituent building blocks: For comparison, see the ISO20022 official specification

classDiagram
     direction LR
%% IntentToPayNotificationV02 recursion level 0 with max 0
IntentToPayNotificationV02 *-- "1..1" MessageIdentification1 : NotificationIdentification
IntentToPayNotificationV02 *-- "1..1" SimpleIdentificationInformation : TransactionIdentification
IntentToPayNotificationV02 *-- "0..1" SimpleIdentificationInformation : SubmitterTransactionReference
IntentToPayNotificationV02 *-- "1..1" BICIdentification1 : BuyerBank
IntentToPayNotificationV02 *-- "1..1" BICIdentification1 : SellerBank
IntentToPayNotificationV02 *-- "1..1" IntentToPay2 : IntentToPay
  

Now, we will zero-in one-by-one on each of these building blocks.

NotificationIdentification building block

Identifies the notification message. Identifies a message by a unique identifier and the date and time when the message was created by the sender. For comparison, see the ISO20022 official specification

classDiagram
   direction tb
%% MessageIdentification1 recursion level 0 with max 1
class MessageIdentification1{
    Identification IsoMax35Text
    CreationDateTime IsoISODateTime
}
  

MessageIdentification1 members

Member name Description Data Type / Multiplicity
Identification Identification of the message. IsoMax35Text - Required 1..1
CreationDateTime Date of creation of the message. IsoISODateTime - Required 1..1

TransactionIdentification building block

Unique identification assigned by the matching application to the transaction. This identification is to be used in any communication between the parties. Information related to an identification, eg, party identification or account identification. For comparison, see the ISO20022 official specification

classDiagram
   direction tb
%% SimpleIdentificationInformation recursion level 0 with max 1
class SimpleIdentificationInformation{
    Identification IsoMax35Text
}
  

SimpleIdentificationInformation members

Member name Description Data Type / Multiplicity
Identification Name or number assigned by an entity to enable recognition of that entity, eg, account identifier. IsoMax35Text - Required 1..1

SubmitterTransactionReference building block

Reference to the transaction for the requesting financial institution. Information related to an identification, eg, party identification or account identification. For comparison, see the ISO20022 official specification

classDiagram
   direction tb
%% SimpleIdentificationInformation recursion level 0 with max 1
class SimpleIdentificationInformation{
    Identification IsoMax35Text
}
  

SimpleIdentificationInformation members

Member name Description Data Type / Multiplicity
Identification Name or number assigned by an entity to enable recognition of that entity, eg, account identifier. IsoMax35Text - Required 1..1

BuyerBank building block

The financial institution of the buyer, uniquely identified by its BIC. . Unique and unambiguous identifier of a financial institution, as assigned under an internationally recognised or proprietary identification scheme. For comparison, see the ISO20022 official specification

classDiagram
   direction tb
%% BICIdentification1 recursion level 0 with max 1
class BICIdentification1{
    BIC IsoBICIdentifier
}
  

BICIdentification1 members

Member name Description Data Type / Multiplicity
BIC Code allocated to a financial institution by the ISO 9362 Registration Authority as described in ISO 9362 “Banking - Banking telecommunication messages - Business identifier code (BIC)”. IsoBICIdentifier - Required 1..1

SellerBank building block

The financial institution of the seller, uniquely identified by its BIC. . Unique and unambiguous identifier of a financial institution, as assigned under an internationally recognised or proprietary identification scheme. For comparison, see the ISO20022 official specification

classDiagram
   direction tb
%% BICIdentification1 recursion level 0 with max 1
class BICIdentification1{
    BIC IsoBICIdentifier
}
  

BICIdentification1 members

Member name Description Data Type / Multiplicity
BIC Code allocated to a financial institution by the ISO 9362 Registration Authority as described in ISO 9362 “Banking - Banking telecommunication messages - Business identifier code (BIC)”. IsoBICIdentifier - Required 1..1

IntentToPay building block

Provides the details of the intention to pay. Specifies the details of an intention to pay based on purchase orders or commercial invoice. For comparison, see the ISO20022 official specification

classDiagram
   direction tb
%% IntentToPay2 recursion level 0 with max 1
class IntentToPay2{
    ExpectedPaymentDate IsoISODate
}
IntentToPay2 *-- "1..1" IBreakDown1Choice : Breakdown
IntentToPay2 *-- "0..1" SettlementTerms3 : SettlementTerms
%% IBreakDown1Choice recursion level 1 with max 1
%% SettlementTerms3 recursion level 1 with max 1
SettlementTerms3 *-- "0..1" IFinancialInstitutionIdentification4Choice : CreditorAgent
SettlementTerms3 *-- "1..1" CashAccount24 : CreditorAccount
  

IntentToPay2 members

Member name Description Data Type / Multiplicity
Breakdown Specifies if breakdown is by purchase order or commercial invoice. IBreakDown1Choice - Required 1..1
ExpectedPaymentDate Date at which the payment would be effected. IsoISODate - Required 1..1
SettlementTerms Specifies the beneficiary’s account information. SettlementTerms3 - Optional 0..1

Extensibility and generalization considerations

To facilitate generalized design patterns in the system, the IntentToPayNotificationV02 implementation follows a specific implementaiton pattern. First of all, IntentToPayNotificationV02 impleemnts IOuterRecord indicating it is the outermost logical part of the message definition. Like all message wrappers, IntentToPayNotificationV02Document implements IOuterDocument. Because IntentToPayNotificationV02 implements IOuterDocument, it is a suitable template parameter for IOuterDocument, and causes the internal ‘Message’ to be of type IntentToPayNotificationV02.

classDiagram
    class IOuterRecord
    IntentToPayNotificationV02 --|> IOuterRecord : Implements
    IntentToPayNotificationV02Document --|> IOuterDocument~IntentToPayNotificationV02~ : Implements
    class IOuterDocument~IntentToPayNotificationV02~ {
        IntentToPayNotificationV02 Message
     }
  

Document wrapper for serialization

The only real purpose IntentToPayNotificationV02Document serves is to cause the document to be serialized into the ‘urn:iso:std:iso:20022:tech:xsd:tsmt.044.001.02’ namespace. Therefore, it will probably be the usual practice to build the message and construct this wrapper at the last minute using IntentToPayNotificationV02.ToDocument() method. The returned IntentToPayNotificationV02Document value will serialize correctly according to ISO 20022 standards.

classDiagram
    IntentToPayNotificationV02Document *-- IntentToPayNotificationV02 : Document
  

Sample of message format

This is an abbreviated version of what the message should look like.

<Document xmlns="urn:iso:std:iso:20022:tech:xsd:tsmt.044.001.02">
    <InttToPayNtfctn>
        <NtfctnId>
            <!-- NotificationIdentification inner content -->
        </NtfctnId>
        <TxId>
            <!-- TransactionIdentification inner content -->
        </TxId>
        <SubmitrTxRef>
            <!-- SubmitterTransactionReference inner content -->
        </SubmitrTxRef>
        <BuyrBk>
            <!-- BuyerBank inner content -->
        </BuyrBk>
        <SellrBk>
            <!-- SellerBank inner content -->
        </SellrBk>
        <InttToPay>
            <!-- IntentToPay inner content -->
        </InttToPay>
    </InttToPayNtfctn>
</Document>

Data from ISO specification

This is the technical data from the specification document.

<messageDefinition
  xmi:id="_YyxioRVaEeOCqpkCrPgk4g"
  previousVersion="_qS03gtE8Ed-BzquC8wXy7w_-674719643"
  name="IntentToPayNotificationV02"
  definition="Scope&#xD;&#xA;The IntentToPayNotification message is sent by a party to the matching application in order to provide details about a future payment.&#xD;&#xA;This message contains details about an intention to pay a certain amount, on a certain date, in relation to one or several transactions known to the matching application.&#xD;&#xA;Usage&#xD;&#xA;The IntentToPayNotification message can be sent by a party to the transaction at any time as long as the transaction is established and not yet closed.&#xD;&#xA;The message is unsolicited, that is, it is not sent in response to another message."
  registrationStatus="Registered"
  messageSet="_1a374FXOEeOkkLyrDUP66g"
  xmlTag="InttToPayNtfctn"
  rootElement="Document"
  xmlns:xmi="http://www.omg.org/XMI">
  <messageBuildingBlock
    xmi:id="_YyxioxVaEeOCqpkCrPgk4g"
    previousVersion="_qS03g9E8Ed-BzquC8wXy7w_163901085"
    name="NotificationIdentification"
    definition="Identifies the notification message."
    registrationStatus="Provisionally Registered"
    maxOccurs="1"
    minOccurs="1"
    xmlTag="NtfctnId"
    complexType="_Q7pG5Np-Ed-ak6NoX_4Aeg_-967008570" />
  <messageBuildingBlock
    xmi:id="_YyxipRVaEeOCqpkCrPgk4g"
    previousVersion="_qS03hNE8Ed-BzquC8wXy7w_152820680"
    name="TransactionIdentification"
    definition="Unique identification assigned by the matching application to the transaction.&#xA;This identification is to be used in any communication between the parties."
    registrationStatus="Provisionally Registered"
    maxOccurs="1"
    minOccurs="1"
    xmlTag="TxId"
    complexType="_P-ile9p-Ed-ak6NoX_4Aeg_745508310" />
  <messageBuildingBlock
    xmi:id="_YyxipxVaEeOCqpkCrPgk4g"
    previousVersion="_qS03hdE8Ed-BzquC8wXy7w_1332333857"
    name="SubmitterTransactionReference"
    definition="Reference to the transaction for the requesting financial institution."
    registrationStatus="Provisionally Registered"
    maxOccurs="1"
    minOccurs="0"
    xmlTag="SubmitrTxRef"
    complexType="_P-ile9p-Ed-ak6NoX_4Aeg_745508310" />
  <messageBuildingBlock
    xmi:id="_YyxiqRVaEeOCqpkCrPgk4g"
    previousVersion="_qS03htE8Ed-BzquC8wXy7w_-1244476424"
    name="BuyerBank"
    definition="The financial institution of the buyer, uniquely identified by its BIC. &#xA;."
    registrationStatus="Provisionally Registered"
    maxOccurs="1"
    minOccurs="1"
    xmlTag="BuyrBk"
    complexType="_QEp0kNp-Ed-ak6NoX_4Aeg_792527554" />
  <messageBuildingBlock
    xmi:id="_YyxiqxVaEeOCqpkCrPgk4g"
    previousVersion="_qS03h9E8Ed-BzquC8wXy7w_-1235239055"
    name="SellerBank"
    definition="The financial institution of the seller, uniquely identified by its BIC. &#xA;."
    registrationStatus="Provisionally Registered"
    maxOccurs="1"
    minOccurs="1"
    xmlTag="SellrBk"
    complexType="_QEp0kNp-Ed-ak6NoX_4Aeg_792527554" />
  <messageBuildingBlock
    xmi:id="_YyxirRVaEeOCqpkCrPgk4g"
    previousVersion="_qS03iNE8Ed-BzquC8wXy7w_-1879861996"
    name="IntentToPay"
    definition="Provides the details of the intention to pay."
    registrationStatus="Provisionally Registered"
    maxOccurs="1"
    minOccurs="1"
    xmlTag="InttToPay"
    complexType="_9-CfYRVaEeOCqpkCrPgk4g" />
  <messageDefinitionIdentifier
    businessArea="tsmt"
    messageFunctionality="044"
    flavour="001"
    version="02" />
</messageDefinition>

ISO Building Blocks

The following items are used as building blocks to construct this message.