CollateralManagementCancellationStatusV04

colr.006.001.04

Scope The CollateralManagementCancellationStatus message is sent by:

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

Usage The CollateralManagementCancellationStatus message can be sent to provide a status for a previously received CollateralManagementCancellationRequest 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
%% CollateralManagementCancellationStatusV04 recursion level 0 with max 0
class CollateralManagementCancellationStatusV04{
    TransactionIdentification IsoMax35Text
}
CollateralManagementCancellationStatusV04 *-- "1..1" Reference16 : Reference
CollateralManagementCancellationStatusV04 *-- "1..1" Obligation4 : Obligation
CollateralManagementCancellationStatusV04 *-- "1..1" CollateralCancellationStatus1 : CancellationStatus
CollateralManagementCancellationStatusV04 *-- "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.

Reference building block

Provides reference to the previous received message. Provides the identification of the collateral message cancellation request. For comparison, see the ISO20022 official specification

classDiagram
   direction tb
%% Reference16 recursion level 0 with max 1
class Reference16{
    CollateralMessageCancellationRequestIdentification IsoMax35Text
}
  

Reference16 members

Member name Description Data Type / Multiplicity
CollateralMessageCancellationRequestIdentification Identification of the collateral message cancellation request. IsoMax35Text - Required 1..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

CancellationStatus building block

Provides status details of the collateral cancellation message. Provides details on the status (that is accept or reject) of the CollateralManagementCancellationRequest message. For comparison, see the ISO20022 official specification

classDiagram
   direction tb
%% CollateralCancellationStatus1 recursion level 0 with max 1
class CollateralCancellationStatus1{
    CollateralStatusCode Status4Code
    AdditionalInformation IsoMax35Text
}
CollateralCancellationStatus1 *-- "0..1" RejectionStatus2 : RejectionDetails
%% RejectionStatus2 recursion level 1 with max 1
class RejectionStatus2{
    RejectedReason RejectionReasonV021Code
    AdditionalInformation IsoMax35Text
}
  

CollateralCancellationStatus1 members

Member name Description Data Type / Multiplicity
CollateralStatusCode Allows to provide a cancellation status using a code or a proprietary status. Status4Code - Required 1..1
AdditionalInformation Provides additional information on the status of the CollateralManagementCancellationRequest message. IsoMax35Text - Optional 0..1
RejectionDetails Provides rejection reason and optionaly additional information. RejectionStatus2 - Optional 0..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 CollateralManagementCancellationStatusV04 implementation follows a specific implementaiton pattern. First of all, CollateralManagementCancellationStatusV04 impleemnts IOuterRecord indicating it is the outermost logical part of the message definition. Like all message wrappers, CollateralManagementCancellationStatusV04Document implements IOuterDocument. Because CollateralManagementCancellationStatusV04 implements IOuterDocument, it is a suitable template parameter for IOuterDocument, and causes the internal ‘Message’ to be of type CollateralManagementCancellationStatusV04.

classDiagram
    class IOuterRecord
    CollateralManagementCancellationStatusV04 --|> IOuterRecord : Implements
    CollateralManagementCancellationStatusV04Document --|> IOuterDocument~CollateralManagementCancellationStatusV04~ : Implements
    class IOuterDocument~CollateralManagementCancellationStatusV04~ {
        CollateralManagementCancellationStatusV04 Message
     }
  

Document wrapper for serialization

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

classDiagram
    CollateralManagementCancellationStatusV04Document *-- CollateralManagementCancellationStatusV04 : 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.006.001.04">
    <CollMgmtCxlSts>
        <TxId>
            <!-- TransactionIdentification inner content -->
        </TxId>
        <Ref>
            <!-- Reference inner content -->
        </Ref>
        <Oblgtn>
            <!-- Obligation inner content -->
        </Oblgtn>
        <CxlSts>
            <!-- CancellationStatus inner content -->
        </CxlSts>
        <SplmtryData>
            <!-- SupplementaryData inner content -->
        </SplmtryData>
    </CollMgmtCxlSts>
</Document>

Data from ISO specification

This is the technical data from the specification document.

<messageDefinition
  xmi:id="_cjxa8YFrEeWtPe6Crjmeug"
  nextVersions="_J4YkRygrEeyB747fKu7_rw"
  previousVersion="_C_d_AV9MEeSMgPeFpRHeJw"
  name="CollateralManagementCancellationStatusV04"
  definition="Scope&#xD;&#xA;The CollateralManagementCancellationStatus message is sent by:&#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 message is used to provide the status of accepted or rejected for the CollateralManagementCancellationRequest message previously received.&#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 CollateralManagementCancellationStatus message can be sent to provide a status for a previously received CollateralManagementCancellationRequest message."
  registrationStatus="Registered"
  messageSet="_J0aB9KV_EeW0_oPI5GRpwg"
  xmlTag="CollMgmtCxlSts"
  rootElement="Document"
  xmlns:xmi="http://www.omg.org/XMI">
  <messageBuildingBlock
    xmi:id="_cjxa84FrEeWtPe6Crjmeug"
    nextVersions="_J4YkTSgrEeyB747fKu7_rw"
    previousVersion="_C_d_A19MEeSMgPeFpRHeJw"
    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="_cjxa9YFrEeWtPe6Crjmeug"
    nextVersions="_J4YkTygrEeyB747fKu7_rw"
    previousVersion="_C_d_BV9MEeSMgPeFpRHeJw"
    name="Reference"
    definition="Provides reference to the previous received message."
    registrationStatus="Provisionally Registered"
    maxOccurs="1"
    minOccurs="1"
    xmlTag="Ref"
    complexType="_QmevMNp-Ed-ak6NoX_4Aeg_386196874" />
  <messageBuildingBlock
    xmi:id="_cjxa94FrEeWtPe6Crjmeug"
    nextVersions="_J4YkUSgrEeyB747fKu7_rw"
    previousVersion="_C_d_B19MEeSMgPeFpRHeJw"
    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="_cjxa-YFrEeWtPe6Crjmeug"
    nextVersions="_J4YkUygrEeyB747fKu7_rw"
    previousVersion="_C_d_CV9MEeSMgPeFpRHeJw"
    name="CancellationStatus"
    definition="Provides status details of the collateral cancellation message."
    registrationStatus="Provisionally Registered"
    maxOccurs="1"
    minOccurs="1"
    xmlTag="CxlSts"
    complexType="_Unhixtp-Ed-ak6NoX_4Aeg_948055066" />
  <messageBuildingBlock
    xmi:id="_cjxa-4FrEeWtPe6Crjmeug"
    nextVersions="_J4YkVSgrEeyB747fKu7_rw"
    previousVersion="_C_d_C19MEeSMgPeFpRHeJw"
    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="006"
    flavour="001"
    version="04" />
</messageDefinition>

ISO Building Blocks

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