InterestPaymentResponseV05

colr.014.001.05

Scope The InterestPaymentResponse message is sent by either;

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

Usage The InterestPaymentResponse message is sent in response to the InterestPaymentRequest in order to accept or reject the amount of interest requested or advised. A rejection reason and information can be provide if the InterestPaymentRequest is being rejected.

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
%% InterestPaymentResponseV05 recursion level 0 with max 0
class InterestPaymentResponseV05{
    TransactionIdentification IsoMax35Text
}
InterestPaymentResponseV05 *-- "1..1" Obligation9 : Obligation
InterestPaymentResponseV05 *-- "1..1" Agreement4 : Agreement
InterestPaymentResponseV05 *-- "0..1" InterestAmount3 : InterestDueToA
InterestPaymentResponseV05 *-- "0..1" InterestAmount3 : InterestDueToB
InterestPaymentResponseV05 *-- "1..1" InterestResponse1 : InterestResponse
InterestPaymentResponseV05 *-- "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
%% Obligation9 recursion level 0 with max 1
class Obligation9{
    ExposureType ExposureType11Code
}
Obligation9 *-- "1..1" IPartyIdentification178Choice : PartyA
Obligation9 *-- "0..1" IPartyIdentification178Choice : ServicingPartyA
Obligation9 *-- "1..1" IPartyIdentification178Choice : PartyB
Obligation9 *-- "0..1" IPartyIdentification178Choice : ServicingPartyB
Obligation9 *-- "0..1" CollateralAccount3 : CollateralAccountIdentification
Obligation9 *-- "0..1" BlockChainAddressWallet5 : BlockChainAddressOrWallet
Obligation9 *-- "1..1" IDateAndDateTime2Choice : ValuationDate
%% IPartyIdentification178Choice recursion level 1 with max 1
%% IPartyIdentification178Choice recursion level 1 with max 1
%% IPartyIdentification178Choice recursion level 1 with max 1
%% IPartyIdentification178Choice recursion level 1 with max 1
%% CollateralAccount3 recursion level 1 with max 1
class CollateralAccount3{
    Identification IsoMax35Text
    Name IsoMax70Text
}
CollateralAccount3 *-- "0..1" ICollateralAccountIdentificationType3Choice : Type
%% BlockChainAddressWallet5 recursion level 1 with max 1
class BlockChainAddressWallet5{
    Identification IsoMax140Text
    Name IsoMax70Text
}
BlockChainAddressWallet5 *-- "0..1" ICollateralAccountIdentificationType3Choice : Type
%% IDateAndDateTime2Choice recursion level 1 with max 1
  

Obligation9 members

Member name Description Data Type / Multiplicity
PartyA Defines one of the entities associated with the collateral agreement. IPartyIdentification178Choice - Required 1..1
ServicingPartyA Specifies the party that is acting on behalf of party A and that offers collateral management services. IPartyIdentification178Choice - Optional 0..1
PartyB Defines the other entity associated with the collateral agreement. IPartyIdentification178Choice - Required 1..1
ServicingPartyB Specifies the party that is acting on behalf of party B and that offers collateral management services. IPartyIdentification178Choice - Optional 0..1
CollateralAccountIdentification Provides additional information on the collateral account of the party delivering/receiving the collateral. CollateralAccount3 - Optional 0..1
BlockChainAddressOrWallet Blockchain address or wallet where digital assets are maintained. This is the equivalent of collateral account for digital assets. BlockChainAddressWallet5 - Optional 0..1
ExposureType Specifies the underlying business area or type of trade causing the collateral movement. ExposureType11Code - Optional 0..1
ValuationDate Indicates the close of business date on which the initiating party is valuing the margin call. IDateAndDateTime2Choice - 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
%% Agreement4 recursion level 0 with max 1
class Agreement4{
    AgreementDetails IsoMax140Text
    AgreementIdentification IsoMax140Text
    AgreementDate IsoISODate
    BaseCurrency ActiveCurrencyCode
}
Agreement4 *-- "0..1" IAgreementFramework1Choice : AgreementFramework
%% IAgreementFramework1Choice recursion level 1 with max 1
  

Agreement4 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. ActiveCurrencyCode - 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
%% InterestAmount3 recursion level 0 with max 1
class InterestAmount3{
    AccruedInterestAmount IsoActiveCurrencyAndAmount
    InterestMethod InterestMethod1Code
    DayCountBasis InterestComputationMethod2Code
    AppliedWithholdingTax IsoYesNoIndicator
    CalculationMethod CalculationMethod1Code
    CalculationFrequency Frequency1Code
    StandardSettlementInstructions IsoMax140Text
    AdditionalInformation IsoMax210Text
}
InterestAmount3 *-- "1..1" IDateAndDateTime2Choice : ValueDate
InterestAmount3 *-- "1..1" DatePeriod2 : InterestPeriod
InterestAmount3 *-- "0..1" IInterestRate1Choice : InterestRate
InterestAmount3 *-- "1..1" ICollateralPurpose1Choice : CollateralPurpose
InterestAmount3 *-- "0..1" CollateralBalance1 : OpeningCollateralBalance
InterestAmount3 *-- "1..1" CollateralBalance1 : ClosingCollateralBalance
%% IDateAndDateTime2Choice recursion level 1 with max 1
%% DatePeriod2 recursion level 1 with max 1
class DatePeriod2{
    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
}
  

InterestAmount3 members

Member name Description Data Type / Multiplicity
AccruedInterestAmount Amount of money representing an interest payment. IsoActiveCurrencyAndAmount - Required 1..1
ValueDate Agreed date for the interest payment. IDateAndDateTime2Choice - Required 1..1
InterestMethod Indicates whether the interest will be settled in cash or rolled in the existing collateral balance. InterestMethod1Code - Required 1..1
InterestPeriod Period for which the calculation has been performed. DatePeriod2 - 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

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
%% InterestAmount3 recursion level 0 with max 1
class InterestAmount3{
    AccruedInterestAmount IsoActiveCurrencyAndAmount
    InterestMethod InterestMethod1Code
    DayCountBasis InterestComputationMethod2Code
    AppliedWithholdingTax IsoYesNoIndicator
    CalculationMethod CalculationMethod1Code
    CalculationFrequency Frequency1Code
    StandardSettlementInstructions IsoMax140Text
    AdditionalInformation IsoMax210Text
}
InterestAmount3 *-- "1..1" IDateAndDateTime2Choice : ValueDate
InterestAmount3 *-- "1..1" DatePeriod2 : InterestPeriod
InterestAmount3 *-- "0..1" IInterestRate1Choice : InterestRate
InterestAmount3 *-- "1..1" ICollateralPurpose1Choice : CollateralPurpose
InterestAmount3 *-- "0..1" CollateralBalance1 : OpeningCollateralBalance
InterestAmount3 *-- "1..1" CollateralBalance1 : ClosingCollateralBalance
%% IDateAndDateTime2Choice recursion level 1 with max 1
%% DatePeriod2 recursion level 1 with max 1
class DatePeriod2{
    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
}
  

InterestAmount3 members

Member name Description Data Type / Multiplicity
AccruedInterestAmount Amount of money representing an interest payment. IsoActiveCurrencyAndAmount - Required 1..1
ValueDate Agreed date for the interest payment. IDateAndDateTime2Choice - Required 1..1
InterestMethod Indicates whether the interest will be settled in cash or rolled in the existing collateral balance. InterestMethod1Code - Required 1..1
InterestPeriod Period for which the calculation has been performed. DatePeriod2 - 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

InterestResponse building block

Provides details on the response to the interest payment request. Provides details about the reponse to the interest payment request. For comparison, see the ISO20022 official specification

classDiagram
   direction tb
%% InterestResponse1 recursion level 0 with max 1
class InterestResponse1{
    ResponseType Status4Code
    RejectionReasonInformation IsoMax140Text
    InterestPaymentRequestIdentification IsoMax35Text
}
InterestResponse1 *-- "0..1" IRejectionReason21FormatChoice : RejectionReason
%% IRejectionReason21FormatChoice recursion level 1 with max 1
  

InterestResponse1 members

Member name Description Data Type / Multiplicity
ResponseType Provides the type of the response, either accepted or rejected. Status4Code - Required 1..1
RejectionReason Provides a reason for rejection identified using a code or a proprietary format. IRejectionReason21FormatChoice - Optional 0..1
RejectionReasonInformation Provides additional information on the rejection reason. IsoMax140Text - Optional 0..1
InterestPaymentRequestIdentification Provides the reference to the interest payment request. IsoMax35Text - Required 1..1

SupplementaryData building block

Additional information that can not be captured in the structured fields 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 InterestPaymentResponseV05 implementation follows a specific implementaiton pattern. First of all, InterestPaymentResponseV05 impleemnts IOuterRecord indicating it is the outermost logical part of the message definition. Like all message wrappers, InterestPaymentResponseV05Document implements IOuterDocument. Because InterestPaymentResponseV05 implements IOuterDocument, it is a suitable template parameter for IOuterDocument, and causes the internal ‘Message’ to be of type InterestPaymentResponseV05.

classDiagram
    class IOuterRecord
    InterestPaymentResponseV05 --|> IOuterRecord : Implements
    InterestPaymentResponseV05Document --|> IOuterDocument~InterestPaymentResponseV05~ : Implements
    class IOuterDocument~InterestPaymentResponseV05~ {
        InterestPaymentResponseV05 Message
     }
  

Document wrapper for serialization

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

classDiagram
    InterestPaymentResponseV05Document *-- InterestPaymentResponseV05 : 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.014.001.05">
    <IntrstPmtRspn>
        <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>
        <IntrstRspn>
            <!-- InterestResponse inner content -->
        </IntrstRspn>
        <SplmtryData>
            <!-- SupplementaryData inner content -->
        </SplmtryData>
    </IntrstPmtRspn>
</Document>

Data from ISO specification

This is the technical data from the specification document.

<messageDefinition
  xmi:id="_J4YkyygrEeyB747fKu7_rw"
  previousVersion="_CRyfgYFsEeWtPe6Crjmeug"
  name="InterestPaymentResponseV05"
  definition="Scope&#xD;&#xA;The InterestPaymentResponse 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;This is a response to the InterestPaymentRequest message and the amount of interest requested or advised can be accepted or rejected.&#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 InterestPaymentResponse message is sent in response to the InterestPaymentRequest in order to accept or reject the amount of interest requested or advised. A rejection reason and information can be provide if the InterestPaymentRequest is being rejected."
  registrationStatus="Registered"
  messageSet="_L9Kq4XoIEeSUmamj3OpPWw"
  xmlTag="IntrstPmtRspn"
  rootElement="Document"
  xmlns:xmi="http://www.omg.org/XMI">
  <messageBuildingBlock
    xmi:id="_J4Yk0ygrEeyB747fKu7_rw"
    previousVersion="_CRyfg4FsEeWtPe6Crjmeug"
    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="_J4Yk1SgrEeyB747fKu7_rw"
    previousVersion="_CRyfhYFsEeWtPe6Crjmeug"
    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="_wc_c4SgsEeyB747fKu7_rw" />
  <messageBuildingBlock
    xmi:id="_J4Yk1ygrEeyB747fKu7_rw"
    previousVersion="_CRyfh4FsEeWtPe6Crjmeug"
    name="Agreement"
    definition="Agreement details for the over the counter market."
    registrationStatus="Provisionally Registered"
    maxOccurs="1"
    minOccurs="1"
    xmlTag="Agrmt"
    complexType="_6T7_AYbEEeWguotXa4lFgg" />
  <messageBuildingBlock
    xmi:id="_J4Yk2SgrEeyB747fKu7_rw"
    previousVersion="_CRyfiYFsEeWtPe6Crjmeug"
    name="InterestDueToA"
    definition="Provides details on the interest amount due to party A."
    registrationStatus="Provisionally Registered"
    maxOccurs="1"
    minOccurs="0"
    xmlTag="IntrstDueToA"
    complexType="_Oz1hcStMEeyOa655cLd-DQ" />
  <messageBuildingBlock
    xmi:id="_J4Yk2ygrEeyB747fKu7_rw"
    previousVersion="_CRyfi4FsEeWtPe6Crjmeug"
    name="InterestDueToB"
    definition="Provides details on the interest amount due to party B."
    registrationStatus="Provisionally Registered"
    maxOccurs="1"
    minOccurs="0"
    xmlTag="IntrstDueToB"
    complexType="_Oz1hcStMEeyOa655cLd-DQ" />
  <messageBuildingBlock
    xmi:id="_J4Yk3SgrEeyB747fKu7_rw"
    previousVersion="_CRyfjYFsEeWtPe6Crjmeug"
    name="InterestResponse"
    definition="Provides details on the response to the interest payment request."
    registrationStatus="Provisionally Registered"
    maxOccurs="1"
    minOccurs="1"
    xmlTag="IntrstRspn"
    complexType="_Qki1hNp-Ed-ak6NoX_4Aeg_1044109408" />
  <messageBuildingBlock
    xmi:id="_J4Yk3ygrEeyB747fKu7_rw"
    previousVersion="_CRyfj4FsEeWtPe6Crjmeug"
    name="SupplementaryData"
    definition="Additional information that can not be captured in the structured fields and/or any other specific block."
    registrationStatus="Provisionally Registered"
    minOccurs="0"
    xmlTag="SplmtryData"
    complexType="_Qn0zC9p-Ed-ak6NoX_4Aeg_468227563" />
  <messageDefinitionIdentifier
    businessArea="colr"
    messageFunctionality="014"
    flavour="001"
    version="05" />
</messageDefinition>

ISO Building Blocks

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