InterestPaymentStatementV04

colr.015.001.04

Scope The InterestPaymentStatement message is sent by either the collateral giver or its collateral manager to the collateral taker or its collateral manager. It is used to report the interest amounts calculated based on the effective posted collateral amount, over a specific period of time agreed by both parties.

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

Usage The InterestPaymentStatement message is used for reporting the interest per period on collateral held.

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
%% InterestPaymentStatementV04 recursion level 0 with max 0
class InterestPaymentStatementV04{
    TransactionIdentification IsoMax35Text
}
InterestPaymentStatementV04 *-- "0..1" Agreement4 : Agreement
InterestPaymentStatementV04 *-- "1..1" Obligation4 : Obligation
InterestPaymentStatementV04 *-- "1..1" Statement32 : StatementParameters
InterestPaymentStatementV04 *-- "0..1" Pagination : Pagination
InterestPaymentStatementV04 *-- "1..1" InterestStatement4 : InterestStatement
InterestPaymentStatementV04 *-- "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.

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

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
%% Obligation4 recursion level 0 with max 1
class Obligation4{
    ExposureType ExposureType5Code
}
Obligation4 *-- "1..1" IPartyIdentification100Choice : PartyA
Obligation4 *-- "0..1" IPartyIdentification100Choice : ServicingPartyA
Obligation4 *-- "1..1" IPartyIdentification100Choice : PartyB
Obligation4 *-- "0..1" IPartyIdentification100Choice : ServicingPartyB
Obligation4 *-- "0..1" CollateralAccount2 : CollateralAccountIdentification
Obligation4 *-- "1..1" IDateAndDateTimeChoice : ValuationDate
%% IPartyIdentification100Choice recursion level 1 with max 1
%% IPartyIdentification100Choice recursion level 1 with max 1
%% IPartyIdentification100Choice recursion level 1 with max 1
%% IPartyIdentification100Choice recursion level 1 with max 1
%% CollateralAccount2 recursion level 1 with max 1
class CollateralAccount2{
    Identification IsoMax35Text
    Name IsoMax70Text
}
CollateralAccount2 *-- "0..1" ICollateralAccountIdentificationType2Choice : Type
%% IDateAndDateTimeChoice recursion level 1 with max 1
  

Obligation4 members

Member name Description Data Type / Multiplicity
PartyA Defines one of the entities associated with the collateral agreement. IPartyIdentification100Choice - Required 1..1
ServicingPartyA Specifies the party that is acting on behalf of party A and that offers collateral management services. IPartyIdentification100Choice - Optional 0..1
PartyB Defines the other entity associated with the collateral agreement. IPartyIdentification100Choice - Required 1..1
ServicingPartyB Specifies the party that is acting on behalf of party B and that offers collateral management services. IPartyIdentification100Choice - Optional 0..1
CollateralAccountIdentification Provides additional information on the collateral account of the party delivering/receiving the collateral. CollateralAccount2 - 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

StatementParameters building block

Provides general information on the report such as the statement identification. Characteristics of the statement. For comparison, see the ISO20022 official specification

classDiagram
   direction tb
%% Statement32 recursion level 0 with max 1
class Statement32{
    StatementIdentification IsoMax35Text
    ActivityIndicator IsoYesNoIndicator
    Frequency Frequency1Code
}
Statement32 *-- "1..1" IDateAndDateTimeChoice : StatementDateTime
%% IDateAndDateTimeChoice recursion level 1 with max 1
  

Statement32 members

Member name Description Data Type / Multiplicity
StatementIdentification Reference common to all pages of a statement. IsoMax35Text - Required 1..1
ActivityIndicator Indicates whether there is activity or information update reported in the statement. IsoYesNoIndicator - Required 1..1
Frequency Frequency of the statement. Frequency1Code - Required 1..1
StatementDateTime Date and time of the statement. IDateAndDateTimeChoice - Required 1..1

Pagination building block

Page number of the message (within a statement) and continuation indicator to indicate that the statement is to continue or that the message is the last page of the statement. Number used to sequence pages when it is not possible for data to be conveyed in a single message and the data has to be split across several pages (messages). For comparison, see the ISO20022 official specification

classDiagram
   direction tb
%% Pagination recursion level 0 with max 1
class Pagination{
    PageNumber IsoMax5NumericText
    LastPageIndicator IsoYesNoIndicator
}
  

Pagination members

Member name Description Data Type / Multiplicity
PageNumber Page number. IsoMax5NumericText - Required 1..1
LastPageIndicator Indicates the last page. IsoYesNoIndicator - Required 1..1

InterestStatement building block

Provides details on the interest statement. Provides details on the interest statement. For comparison, see the ISO20022 official specification

classDiagram
   direction tb
%% InterestStatement4 recursion level 0 with max 1
class InterestStatement4{
    TotalInterestAmountDueToA IsoActiveCurrencyAndAmount
    TotalInterestAmountDueToB IsoActiveCurrencyAndAmount
    ValueDate IsoISODate
    InterestPaymentRequestIdentification IsoMax35Text
}
InterestStatement4 *-- "1..1" DatePeriodDetails : InterestPeriod
InterestStatement4 *-- "0..0" InterestCalculation4 : InterestCalculation
%% DatePeriodDetails recursion level 1 with max 1
class DatePeriodDetails{
    FromDate IsoISODate
    ToDate IsoISODate
}
%% InterestCalculation4 recursion level 1 with max 1
class InterestCalculation4{
    CalculationDate IsoISODate
    NumberOfDays IsoNumber
    EffectiveRate IsoPercentageRate
    InterestRate IsoPercentageRate
    Spread IsoPercentageRate
    AggregatedInterestAmount IsoActiveCurrencyAndAmount
}
InterestCalculation4 *-- "0..1" CollateralAccount2 : CollateralAccountIdentification
InterestCalculation4 *-- "1..1" AmountAndDirection20 : EffectivePrincipalAmount
InterestCalculation4 *-- "0..1" AmountAndDirection20 : PrincipalAmount
InterestCalculation4 *-- "0..1" AmountAndDirection20 : MovementAmount
InterestCalculation4 *-- "1..1" AmountAndDirection20 : AccruedInterestAmount
  

InterestStatement4 members

Member name Description Data Type / Multiplicity
InterestPeriod Provides the period during which the interest rate has been applied. DatePeriodDetails - Required 1..1
TotalInterestAmountDueToA Provides the total amount of interest that is due to partyA. IsoActiveCurrencyAndAmount - Optional 0..1
TotalInterestAmountDueToB Provides the total amount of interest that is due to partyB. IsoActiveCurrencyAndAmount - Optional 0..1
ValueDate Indicates the value date of the interest statement. IsoISODate - Required 1..1
InterestPaymentRequestIdentification Provides the reference to the interest payment request. IsoMax35Text - Optional 0..1
InterestCalculation Provides the details of the interest calculation. InterestCalculation4 - Unknown 0..0

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 InterestPaymentStatementV04 implementation follows a specific implementaiton pattern. First of all, InterestPaymentStatementV04 impleemnts IOuterRecord indicating it is the outermost logical part of the message definition. Like all message wrappers, InterestPaymentStatementV04Document implements IOuterDocument. Because InterestPaymentStatementV04 implements IOuterDocument, it is a suitable template parameter for IOuterDocument, and causes the internal ‘Message’ to be of type InterestPaymentStatementV04.

classDiagram
    class IOuterRecord
    InterestPaymentStatementV04 --|> IOuterRecord : Implements
    InterestPaymentStatementV04Document --|> IOuterDocument~InterestPaymentStatementV04~ : Implements
    class IOuterDocument~InterestPaymentStatementV04~ {
        InterestPaymentStatementV04 Message
     }
  

Document wrapper for serialization

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

classDiagram
    InterestPaymentStatementV04Document *-- InterestPaymentStatementV04 : 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.015.001.04">
    <IntrstPmtStmt>
        <TxId>
            <!-- TransactionIdentification inner content -->
        </TxId>
        <Agrmt>
            <!-- Agreement inner content -->
        </Agrmt>
        <Oblgtn>
            <!-- Obligation inner content -->
        </Oblgtn>
        <StmtParams>
            <!-- StatementParameters inner content -->
        </StmtParams>
        <Pgntn>
            <!-- Pagination inner content -->
        </Pgntn>
        <IntrstStmt>
            <!-- InterestStatement inner content -->
        </IntrstStmt>
        <SplmtryData>
            <!-- SupplementaryData inner content -->
        </SplmtryData>
    </IntrstPmtStmt>
</Document>

Data from ISO specification

This is the technical data from the specification document.

<messageDefinition
  xmi:id="_CRyfkYFsEeWtPe6Crjmeug"
  nextVersions="_J4Yk4SgrEeyB747fKu7_rw"
  previousVersion="_7gWa8VnNEeSPgY23yCMQSQ"
  name="InterestPaymentStatementV04"
  definition="Scope&#xD;&#xA;The InterestPaymentStatement message is sent by either the collateral giver or its collateral manager to the collateral taker or its collateral manager. It is used to report the interest amounts calculated based on the effective posted collateral amount, over a specific period of time agreed by both parties.&#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 InterestPaymentStatement message is used for reporting the interest per period on collateral held."
  registrationStatus="Registered"
  messageSet="_J0aB9KV_EeW0_oPI5GRpwg"
  xmlTag="IntrstPmtStmt"
  rootElement="Document"
  xmlns:xmi="http://www.omg.org/XMI">
  <messageBuildingBlock
    xmi:id="_CRyfk4FsEeWtPe6Crjmeug"
    nextVersions="_J4Yk6SgrEeyB747fKu7_rw"
    previousVersion="_7gWa81nNEeSPgY23yCMQSQ"
    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="_CRyflYFsEeWtPe6Crjmeug"
    nextVersions="_J4Yk6ygrEeyB747fKu7_rw"
    previousVersion="_7gWa9VnNEeSPgY23yCMQSQ"
    name="Agreement"
    definition="Agreement details for the over the counter market."
    registrationStatus="Provisionally Registered"
    maxOccurs="1"
    minOccurs="0"
    xmlTag="Agrmt"
    complexType="_6T7_AYbEEeWguotXa4lFgg" />
  <messageBuildingBlock
    xmi:id="_CRyfl4FsEeWtPe6Crjmeug"
    nextVersions="_J4Yk7SgrEeyB747fKu7_rw"
    previousVersion="_8jVMoGNqEeSIWbZ6by9dnA"
    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="_wtu2IYFvEeWtPe6Crjmeug" />
  <messageBuildingBlock
    xmi:id="_CRyfmYFsEeWtPe6Crjmeug"
    nextVersions="_J4Yk7ygrEeyB747fKu7_rw"
    previousVersion="_7gWa_1nNEeSPgY23yCMQSQ"
    name="StatementParameters"
    definition="Provides general information on the report such as the statement identification."
    registrationStatus="Provisionally Registered"
    maxOccurs="1"
    minOccurs="1"
    xmlTag="StmtParams"
    complexType="_QkZEgNp-Ed-ak6NoX_4Aeg_-430319811" />
  <messageBuildingBlock
    xmi:id="_CRyfm4FsEeWtPe6Crjmeug"
    nextVersions="_J4Yk8SgrEeyB747fKu7_rw"
    previousVersion="_7gWbAVnNEeSPgY23yCMQSQ"
    name="Pagination"
    definition="Page number of the message (within a statement) and continuation indicator to indicate that the statement is to continue or that the message is the last page of the statement."
    registrationStatus="Provisionally Registered"
    maxOccurs="1"
    minOccurs="0"
    xmlTag="Pgntn"
    complexType="_Q65gBdp-Ed-ak6NoX_4Aeg_-21330104" />
  <messageBuildingBlock
    xmi:id="_CRyfnYFsEeWtPe6Crjmeug"
    nextVersions="_J4Yk8ygrEeyB747fKu7_rw"
    previousVersion="_7gWbA1nNEeSPgY23yCMQSQ"
    name="InterestStatement"
    definition="Provides details on the interest statement."
    registrationStatus="Provisionally Registered"
    maxOccurs="1"
    minOccurs="1"
    xmlTag="IntrstStmt"
    complexType="_h8DYIYF0EeWtPe6Crjmeug" />
  <messageBuildingBlock
    xmi:id="_CRyfn4FsEeWtPe6Crjmeug"
    nextVersions="_J4Yk9SgrEeyB747fKu7_rw"
    previousVersion="_7gWbBVnNEeSPgY23yCMQSQ"
    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="015"
    flavour="001"
    version="04" />
</messageDefinition>

ISO Building Blocks

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