InterestPaymentRequestV03

colr.013.001.03

Scope This InterestPaymentRequest message is sent by either;

The message definition is intended for use with the ISO20022 Business Application Header.

Usage The InterestPaymentRequest message is used to advise the interest amount calculated for a specific period or request payment for an interest amount for a specific period.

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
%% InterestPaymentRequestV03 recursion level 0 with max 0
class InterestPaymentRequestV03{
    TransactionIdentification IsoMax35Text
}
InterestPaymentRequestV03 *-- "1..1" Obligation3 : Obligation
InterestPaymentRequestV03 *-- "1..1" Agreement2 : Agreement
InterestPaymentRequestV03 *-- "0..1" InterestAmount1 : InterestDueToA
InterestPaymentRequestV03 *-- "0..1" InterestAmount1 : InterestDueToB
InterestPaymentRequestV03 *-- "0..1" InterestResult1 : NetAmountDetails
InterestPaymentRequestV03 *-- "0..1" SupplementaryData1 : SupplementaryData
  

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

TransactionIdentification building block

Unambiguous identification of the transaction as know by the instructing party. Specifies a character string with a maximum length of 35 characters. For comparison, see the ISO20022 official specification This message is declared as Max35Text in the ISO specification. In our implementation, it is represented in source code as IsoMax35Text. Due to global using directives, it is treated as a System.String by the compiler and runtime.

Obligation building block

Provides information like the identification of the party or parties associated with the collateral agreement, the exposure type and the valuation date. Provides information like the identification of the party or parties associated with the collateral agreement, the exposure type and the valuation date. For comparison, see the ISO20022 official specification

classDiagram
   direction tb
%% Obligation3 recursion level 0 with max 1
class Obligation3{
    ExposureType ExposureType5Code
}
Obligation3 *-- "1..1" IPartyIdentification33Choice : PartyA
Obligation3 *-- "0..1" IPartyIdentification33Choice : ServicingPartyA
Obligation3 *-- "1..1" IPartyIdentification33Choice : PartyB
Obligation3 *-- "0..1" IPartyIdentification33Choice : ServicingPartyB
Obligation3 *-- "0..1" CollateralAccount1 : CollateralAccountIdentification
Obligation3 *-- "1..1" IDateAndDateTimeChoice : ValuationDate
%% IPartyIdentification33Choice recursion level 1 with max 1
%% IPartyIdentification33Choice recursion level 1 with max 1
%% IPartyIdentification33Choice recursion level 1 with max 1
%% IPartyIdentification33Choice recursion level 1 with max 1
%% CollateralAccount1 recursion level 1 with max 1
class CollateralAccount1{
    Identification IsoMax35Text
    Name IsoMax70Text
}
CollateralAccount1 *-- "0..1" ICollateralAccountIdentificationType1Choice : Type
%% IDateAndDateTimeChoice recursion level 1 with max 1
  

Obligation3 members

Member name Description Data Type / Multiplicity
PartyA Defines one of the entities associated with the collateral agreement. IPartyIdentification33Choice - Required 1..1
ServicingPartyA Specifies the party that is acting on behalf of party A and that offers collateral management services. IPartyIdentification33Choice - Optional 0..1
PartyB Defines the other entity associated with the collateral agreement. IPartyIdentification33Choice - Required 1..1
ServicingPartyB Specifies the party that is acting on behalf of party B and that offers collateral management services. IPartyIdentification33Choice - Optional 0..1
CollateralAccountIdentification Provides additional information on the Collateral Account of the Party delivering the collateral. CollateralAccount1 - Optional 0..1
ExposureType Specifies the underlying business area or type of trade causing the collateral movement. ExposureType5Code - Optional 0..1
ValuationDate Indicates the close of business date on which the initiating party is valuing the margin call. IDateAndDateTimeChoice - Required 1..1

Agreement building block

Agreement details for the over the counter market. Agreement details for the over the counter market. For comparison, see the ISO20022 official specification

classDiagram
   direction tb
%% Agreement2 recursion level 0 with max 1
class Agreement2{
    AgreementDetails IsoMax140Text
    AgreementIdentification IsoMax140Text
    AgreementDate IsoISODate
    BaseCurrency CurrencyCode
}
Agreement2 *-- "0..1" IAgreementFramework1Choice : AgreementFramework
%% IAgreementFramework1Choice recursion level 1 with max 1
  

Agreement2 members

Member name Description Data Type / Multiplicity
AgreementDetails Full details of the supporting legal agreement under which the margin call can be issued and/or governed. IsoMax140Text - Required 1..1
AgreementIdentification Common reference to the agreement between the two counterparties. IsoMax140Text - Optional 0..1
AgreementDate Date on which the collateral agreement was signed. IsoISODate - Required 1..1
BaseCurrency Denomination currency as specified in the collateral agreement. CurrencyCode - Required 1..1
AgreementFramework Specifies the underlying master agreement. IAgreementFramework1Choice - Optional 0..1

InterestDueToA building block

Provides details on the interest amount due to party A. Provides the elements related to the interest amount calculation. For comparison, see the ISO20022 official specification

classDiagram
   direction tb
%% InterestAmount1 recursion level 0 with max 1
class InterestAmount1{
    InterestRequestSequence InterestRequestSequence1Code
    AccruedInterestAmount IsoActiveCurrencyAndAmount
    ValueDate IsoISODate
    InterestMethod InterestMethod1Code
    DayCountBasis InterestComputationMethod2Code
    AppliedWithholdingTax IsoYesNoIndicator
    CalculationMethod CalculationMethod1Code
    CalculationFrequency Frequency1Code
    StandardSettlementInstructions IsoMax140Text
    AdditionalInformation IsoMax210Text
}
InterestAmount1 *-- "1..1" DatePeriodDetails : InterestPeriod
InterestAmount1 *-- "0..1" IInterestRate1Choice : InterestRate
InterestAmount1 *-- "1..1" ICollateralPurpose1Choice : CollateralPurpose
InterestAmount1 *-- "0..1" CollateralBalance1 : OpeningCollateralBalance
InterestAmount1 *-- "1..1" CollateralBalance1 : ClosingCollateralBalance
InterestAmount1 *-- "0..1" Reference20 : ReferenceDetails
%% DatePeriodDetails recursion level 1 with max 1
class DatePeriodDetails{
    FromDate IsoISODate
    ToDate IsoISODate
}
%% IInterestRate1Choice recursion level 1 with max 1
%% ICollateralPurpose1Choice recursion level 1 with max 1
%% CollateralBalance1 recursion level 1 with max 1
class CollateralBalance1{
    HeldByPartyA IsoActiveCurrencyAndAmount
    HeldByPartyB IsoActiveCurrencyAndAmount
}
%% CollateralBalance1 recursion level 1 with max 1
class CollateralBalance1{
    HeldByPartyA IsoActiveCurrencyAndAmount
    HeldByPartyB IsoActiveCurrencyAndAmount
}
%% Reference20 recursion level 1 with max 1
class Reference20{
    InterestPaymentRequestIdentification IsoMax35Text
    InterestPaymentResponseIdentification IsoMax35Text
}
  

InterestAmount1 members

Member name Description Data Type / Multiplicity
InterestRequestSequence Indicates whether the interest request is new or updated. InterestRequestSequence1Code - Required 1..1
InterestPeriod Period for which the calculation has been performed. DatePeriodDetails - Required 1..1
AccruedInterestAmount Amount of money representing an interest payment. IsoActiveCurrencyAndAmount - Required 1..1
ValueDate Agreed date for the interest payment. IsoISODate - Required 1..1
InterestMethod Indicates whether the interest will be settled in cash or rolled in the existing collateral balance. InterestMethod1Code - Required 1..1
InterestRate Percentage charged for the use of an amount of money, usually expressed at an annual rate. The interest rate is the ratio of the amount of interest paid during a certain period of time compared to the principal amount of the interest bearing financial instrument. IInterestRate1Choice - Optional 0..1
DayCountBasis Specifies the computation method of (accrued) interest of the security. InterestComputationMethod2Code - Optional 0..1
AppliedWithholdingTax Amount or percentage of a cash distribution that will be withheld by a tax authority. IsoYesNoIndicator - Optional 0..1
CalculationMethod Specifies whether the interest is simple or compounded. CalculationMethod1Code - Optional 0..1
CalculationFrequency Specifies the periodicity of the calculation of the interest. Frequency1Code - Optional 0..1
CollateralPurpose Specifies whether the collateral has been posted against the variation margin, the segregated independent amount or to cover any other risk defined with a proprietary code. ICollateralPurpose1Choice - Required 1..1
OpeningCollateralBalance Provides details about the opening collateral balance. CollateralBalance1 - Optional 0..1
ClosingCollateralBalance Provides details about the closing collateral balance. CollateralBalance1 - Required 1..1
StandardSettlementInstructions Identifies the standard settlement instructions. IsoMax140Text - Optional 0..1
AdditionalInformation Additionnal information related to interest request. IsoMax210Text - Optional 0..1
ReferenceDetails Additional references linked to the updated interest payement request. Reference20 - Optional 0..1

InterestDueToB building block

Provides details on the interest amount due to party B. Provides the elements related to the interest amount calculation. For comparison, see the ISO20022 official specification

classDiagram
   direction tb
%% InterestAmount1 recursion level 0 with max 1
class InterestAmount1{
    InterestRequestSequence InterestRequestSequence1Code
    AccruedInterestAmount IsoActiveCurrencyAndAmount
    ValueDate IsoISODate
    InterestMethod InterestMethod1Code
    DayCountBasis InterestComputationMethod2Code
    AppliedWithholdingTax IsoYesNoIndicator
    CalculationMethod CalculationMethod1Code
    CalculationFrequency Frequency1Code
    StandardSettlementInstructions IsoMax140Text
    AdditionalInformation IsoMax210Text
}
InterestAmount1 *-- "1..1" DatePeriodDetails : InterestPeriod
InterestAmount1 *-- "0..1" IInterestRate1Choice : InterestRate
InterestAmount1 *-- "1..1" ICollateralPurpose1Choice : CollateralPurpose
InterestAmount1 *-- "0..1" CollateralBalance1 : OpeningCollateralBalance
InterestAmount1 *-- "1..1" CollateralBalance1 : ClosingCollateralBalance
InterestAmount1 *-- "0..1" Reference20 : ReferenceDetails
%% DatePeriodDetails recursion level 1 with max 1
class DatePeriodDetails{
    FromDate IsoISODate
    ToDate IsoISODate
}
%% IInterestRate1Choice recursion level 1 with max 1
%% ICollateralPurpose1Choice recursion level 1 with max 1
%% CollateralBalance1 recursion level 1 with max 1
class CollateralBalance1{
    HeldByPartyA IsoActiveCurrencyAndAmount
    HeldByPartyB IsoActiveCurrencyAndAmount
}
%% CollateralBalance1 recursion level 1 with max 1
class CollateralBalance1{
    HeldByPartyA IsoActiveCurrencyAndAmount
    HeldByPartyB IsoActiveCurrencyAndAmount
}
%% Reference20 recursion level 1 with max 1
class Reference20{
    InterestPaymentRequestIdentification IsoMax35Text
    InterestPaymentResponseIdentification IsoMax35Text
}
  

InterestAmount1 members

Member name Description Data Type / Multiplicity
InterestRequestSequence Indicates whether the interest request is new or updated. InterestRequestSequence1Code - Required 1..1
InterestPeriod Period for which the calculation has been performed. DatePeriodDetails - Required 1..1
AccruedInterestAmount Amount of money representing an interest payment. IsoActiveCurrencyAndAmount - Required 1..1
ValueDate Agreed date for the interest payment. IsoISODate - Required 1..1
InterestMethod Indicates whether the interest will be settled in cash or rolled in the existing collateral balance. InterestMethod1Code - Required 1..1
InterestRate Percentage charged for the use of an amount of money, usually expressed at an annual rate. The interest rate is the ratio of the amount of interest paid during a certain period of time compared to the principal amount of the interest bearing financial instrument. IInterestRate1Choice - Optional 0..1
DayCountBasis Specifies the computation method of (accrued) interest of the security. InterestComputationMethod2Code - Optional 0..1
AppliedWithholdingTax Amount or percentage of a cash distribution that will be withheld by a tax authority. IsoYesNoIndicator - Optional 0..1
CalculationMethod Specifies whether the interest is simple or compounded. CalculationMethod1Code - Optional 0..1
CalculationFrequency Specifies the periodicity of the calculation of the interest. Frequency1Code - Optional 0..1
CollateralPurpose Specifies whether the collateral has been posted against the variation margin, the segregated independent amount or to cover any other risk defined with a proprietary code. ICollateralPurpose1Choice - Required 1..1
OpeningCollateralBalance Provides details about the opening collateral balance. CollateralBalance1 - Optional 0..1
ClosingCollateralBalance Provides details about the closing collateral balance. CollateralBalance1 - Required 1..1
StandardSettlementInstructions Identifies the standard settlement instructions. IsoMax140Text - Optional 0..1
AdditionalInformation Additionnal information related to interest request. IsoMax210Text - Optional 0..1
ReferenceDetails Additional references linked to the updated interest payement request. Reference20 - Optional 0..1

NetAmountDetails building block

Provides the net interest amount due to A or due to B in case of collateral held and posted during a period. Consideration, such as amount of money, paid or received in exchange for an amount of money that has been invested, loaned or borrowed for a certain period. For comparison, see the ISO20022 official specification

classDiagram
   direction tb
%% InterestResult1 recursion level 0 with max 1
class InterestResult1{
    InterestDueToA IsoActiveCurrencyAndAmount
    InterestDueToB IsoActiveCurrencyAndAmount
    ValueDate IsoISODate
    InterestMethod InterestMethod1Code
}
InterestResult1 *-- "0..1" CollateralBalance1 : OpeningCollateralBalance
InterestResult1 *-- "1..1" CollateralBalance1 : ClosingCollateralBalance
%% CollateralBalance1 recursion level 1 with max 1
class CollateralBalance1{
    HeldByPartyA IsoActiveCurrencyAndAmount
    HeldByPartyB IsoActiveCurrencyAndAmount
}
%% CollateralBalance1 recursion level 1 with max 1
class CollateralBalance1{
    HeldByPartyA IsoActiveCurrencyAndAmount
    HeldByPartyB IsoActiveCurrencyAndAmount
}
  

InterestResult1 members

Member name Description Data Type / Multiplicity
InterestDueToA Amount of money representing an interest payment. IsoActiveCurrencyAndAmount - Optional 0..1
InterestDueToB Amount of money representing an interest payment. IsoActiveCurrencyAndAmount - Optional 0..1
ValueDate Agreed date for the interest payment. IsoISODate - Required 1..1
InterestMethod Indicates whether the interest will be settled in cash or rolled in the existing collateral balance. InterestMethod1Code - Required 1..1
OpeningCollateralBalance Provides details about the opening collateral balance. CollateralBalance1 - Optional 0..1
ClosingCollateralBalance Provides details about the closing collateral balance. CollateralBalance1 - Required 1..1

SupplementaryData building block

Additional information that cannot be captured in the structured elements and/or any other specific block. Additional information that can not be captured in the structured fields and/or any other specific block. For comparison, see the ISO20022 official specification

classDiagram
   direction tb
%% SupplementaryData1 recursion level 0 with max 1
class SupplementaryData1{
    PlaceAndName IsoMax350Text
}
SupplementaryData1 *-- "1..1" IsoSupplementaryDataEnvelope1 : Envelope
%% IsoSupplementaryDataEnvelope1 recursion level 1 with max 1
  

SupplementaryData1 members

Member name Description Data Type / Multiplicity
PlaceAndName Unambiguous reference to the location where the supplementary data must be inserted in the message instance. In the case of XML, this is expressed by a valid XPath. IsoMax350Text - Optional 0..1
Envelope Technical element wrapping the supplementary data. IsoSupplementaryDataEnvelope1 - Required 1..1

Extensibility and generalization considerations

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

classDiagram
    class IOuterRecord
    InterestPaymentRequestV03 --|> IOuterRecord : Implements
    InterestPaymentRequestV03Document --|> IOuterDocument~InterestPaymentRequestV03~ : Implements
    class IOuterDocument~InterestPaymentRequestV03~ {
        InterestPaymentRequestV03 Message
     }
  

Document wrapper for serialization

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

classDiagram
    InterestPaymentRequestV03Document *-- InterestPaymentRequestV03 : 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:colr.013.001.03">
    <IntrstPmtReq>
        <TxId>
            <!-- TransactionIdentification inner content -->
        </TxId>
        <Oblgtn>
            <!-- Obligation inner content -->
        </Oblgtn>
        <Agrmt>
            <!-- Agreement inner content -->
        </Agrmt>
        <IntrstDueToA>
            <!-- InterestDueToA inner content -->
        </IntrstDueToA>
        <IntrstDueToB>
            <!-- InterestDueToB inner content -->
        </IntrstDueToB>
        <NetAmtDtls>
            <!-- NetAmountDetails inner content -->
        </NetAmtDtls>
        <SplmtryData>
            <!-- SupplementaryData inner content -->
        </SplmtryData>
    </IntrstPmtReq>
</Document>

Data from ISO specification

This is the technical data from the specification document.

<messageDefinition
  xmi:id="_2wqKwWNnEeSIWbZ6by9dnA"
  nextVersions="_CRyfcYFsEeWtPe6Crjmeug"
  name="InterestPaymentRequestV03"
  definition="Scope&#xD;&#xA;This InterestPaymentRequest message is sent by either;&#xD;&#xA;- the collateral taker or its collateral manager to the collateral giver or its collateral manager, or&#xD;&#xA;- the collateral giver or its collateral manager to the collateral taker or its collateral manager&#xD;&#xA;It is used to request payment or advise the amount due for interest calculated for a specified period. The interest is based on the amount of collateral that has been held during the calculation period. It is possible to send these messages on a bi-lateral basis for matching.&#xD;&#xA;&#xD;&#xA;The message definition is intended for use with the ISO20022 Business Application Header.&#xD;&#xA;&#xD;&#xA;Usage&#xD;&#xA;The InterestPaymentRequest message is used to advise the interest amount calculated for a specific period or request payment for an interest amount for a specific period."
  registrationStatus="Registered"
  messageSet="_urpIICeJEeOCeO5e7islRQ"
  xmlTag="IntrstPmtReq"
  rootElement="Document"
  xmlns:xmi="http://www.omg.org/XMI">
  <messageBuildingBlock
    xmi:id="_2wqKw2NnEeSIWbZ6by9dnA"
    nextVersions="_CRyfc4FsEeWtPe6Crjmeug"
    name="TransactionIdentification"
    definition="Unambiguous identification of the transaction as know by the instructing party."
    registrationStatus="Provisionally Registered"
    maxOccurs="1"
    minOccurs="1"
    xmlTag="TxId"
    simpleType="_YW1tKdp-Ed-ak6NoX_4Aeg_1913463446" />
  <messageBuildingBlock
    xmi:id="_SDIoAGNpEeSIWbZ6by9dnA"
    nextVersions="_CRyfdYFsEeWtPe6Crjmeug"
    name="Obligation"
    definition="Provides information like the identification of the party or parties associated with the collateral agreement, the exposure type and the valuation date."
    registrationStatus="Provisionally Registered"
    maxOccurs="1"
    minOccurs="1"
    xmlTag="Oblgtn"
    complexType="_cSBe4WNeEeSLD8nyfZcLzQ" />
  <messageBuildingBlock
    xmi:id="_2wqKzWNnEeSIWbZ6by9dnA"
    nextVersions="_CRyfd4FsEeWtPe6Crjmeug"
    name="Agreement"
    definition="Agreement details for the over the counter market."
    registrationStatus="Provisionally Registered"
    maxOccurs="1"
    minOccurs="1"
    xmlTag="Agrmt"
    complexType="_Un-Otdp-Ed-ak6NoX_4Aeg_-902133760" />
  <messageBuildingBlock
    xmi:id="_2wqKz2NnEeSIWbZ6by9dnA"
    nextVersions="_CRyfeYFsEeWtPe6Crjmeug"
    name="InterestDueToA"
    definition="Provides details on the interest amount due to party A."
    registrationStatus="Provisionally Registered"
    maxOccurs="1"
    minOccurs="0"
    xmlTag="IntrstDueToA"
    complexType="_SRKvZNp-Ed-ak6NoX_4Aeg_1143033565" />
  <messageBuildingBlock
    xmi:id="_2wqK0WNnEeSIWbZ6by9dnA"
    nextVersions="_CRyfe4FsEeWtPe6Crjmeug"
    name="InterestDueToB"
    definition="Provides details on the interest amount due to party B."
    registrationStatus="Provisionally Registered"
    maxOccurs="1"
    minOccurs="0"
    xmlTag="IntrstDueToB"
    complexType="_SRKvZNp-Ed-ak6NoX_4Aeg_1143033565" />
  <messageBuildingBlock
    xmi:id="_2wqK02NnEeSIWbZ6by9dnA"
    nextVersions="_CRyffYFsEeWtPe6Crjmeug"
    name="NetAmountDetails"
    definition="Provides the net interest amount due to A or due to B in case of collateral held and posted during a period."
    registrationStatus="Provisionally Registered"
    maxOccurs="1"
    minOccurs="0"
    xmlTag="NetAmtDtls"
    complexType="_SQuqh9p-Ed-ak6NoX_4Aeg_1199217791" />
  <messageBuildingBlock
    xmi:id="_2wqK1WNnEeSIWbZ6by9dnA"
    nextVersions="_CRyff4FsEeWtPe6Crjmeug"
    name="SupplementaryData"
    definition="Additional information that cannot be captured in the structured elements and/or any other specific block."
    registrationStatus="Provisionally Registered"
    minOccurs="0"
    xmlTag="SplmtryData"
    complexType="_Qn0zC9p-Ed-ak6NoX_4Aeg_468227563" />
  <messageDefinitionIdentifier
    businessArea="colr"
    messageFunctionality="013"
    flavour="001"
    version="03" />
</messageDefinition>

ISO Building Blocks

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