DTCCCARESD1V01

supl.025.001.01

The DTCCCARESD1 message extends ISO corporate action movement reversal advice message with DTCC corporate action elements not covered in the standard 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
%% DTCCCARESD1V01 recursion level 0 with max 0
DTCCCARESD1V01 *-- "0..1" CorporateActionSD12 : CorporateActionDetails
  

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

CorporateActionDetails building block

Information to be extended as supplementary data to corporate action details. Provides additional information regarding corporate action details. For comparison, see the ISO20022 official specification

classDiagram
   direction tb
%% CorporateActionSD12 recursion level 0 with max 1
class CorporateActionSD12{
    PlaceAndName IsoMax350Text
    EventStage CorporateActionEventStage4Code
}
  

CorporateActionSD12 members

Member name Description Data Type / Multiplicity
PlaceAndName xPath to the element that is being extended. IsoMax350Text - Required 1..1
EventStage Stage in the corporate action event life cycle. CorporateActionEventStage4Code - Optional 0..1

Extensibility and generalization considerations

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

classDiagram
    class IOuterRecord
    DTCCCARESD1V01 --|> IOuterRecord : Implements
    DTCCCARESD1V01Document --|> IOuterDocument~DTCCCARESD1V01~ : Implements
    class IOuterDocument~DTCCCARESD1V01~ {
        DTCCCARESD1V01 Message
     }
  

Document wrapper for serialization

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

classDiagram
    DTCCCARESD1V01Document *-- DTCCCARESD1V01 : 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:supl.025.001.01">
    <DTCCCARESD1>
        <CorpActnDtls>
            <!-- CorporateActionDetails inner content -->
        </CorpActnDtls>
    </DTCCCARESD1>
</Document>

Data from ISO specification

This is the technical data from the specification document.

<messageDefinition
  xmi:id="_kTKBcH9ZEeO-N9QmoyzDJw"
  nextVersions="_b_h_W-aHEei5aPS232E3Mw"
  name="DTCCCARESD1V01"
  definition="The DTCCCARESD1 message extends ISO corporate action movement reversal advice message with DTCC corporate action elements not covered in the standard message."
  registrationStatus="Registered"
  messageSet="_urpIICeJEeOCeO5e7islRQ"
  xmlTag="DTCCCARESD1"
  rootElement="Document"
  xmlns:xmi="http://www.omg.org/XMI">
  <messageBuildingBlock
    xmi:id="_cdMVUX9aEeO-N9QmoyzDJw"
    name="CorporateActionDetails"
    definition="Information to be extended as supplementary data to corporate action details."
    registrationStatus="Provisionally Registered"
    maxOccurs="1"
    minOccurs="0"
    xmlTag="CorpActnDtls"
    complexType="_8zIh439aEeO-N9QmoyzDJw" />
  <messageDefinitionIdentifier
    businessArea="supl"
    messageFunctionality="025"
    flavour="001"
    version="01" />
</messageDefinition>

ISO Building Blocks

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