supl.006.001.02
The DTCCCACNSD1 message extends ISO corporate action cancellation advise (CACN) 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 %% DTCCCACNSD1V02 recursion level 0 with max 0 DTCCCACNSD1V02 *-- "0..1" CorporateActionNotificationSD1 : NotificationExtension DTCCCACNSD1V02 *-- "0..1" CorporateActionGeneralInformationSD2 : GeneralInformationExtension DTCCCACNSD1V02 *-- "0..1" CorporateActionCancellationSD1 : EventsLinkageExtension DTCCCACNSD1V02 *-- "0..1" CorporateActionCancellationSD2 : ExternalCommentsExtension
Now, we will zero-in one-by-one on each of these building blocks.
NotificationExtension building block
Information to be extended as supplementary data to cancellation advice. Customer security identification reference information.
For comparison, see the ISO20022 official specification
classDiagram direction tb %% CorporateActionNotificationSD1 recursion level 0 with max 1 class CorporateActionNotificationSD1{ PlaceAndName IsoMax350Text CustomerInternalSecurityIdentification IsoMax16Text } CorporateActionNotificationSD1 *-- "0..1" SecurityIdentification15 : SecurityOfInterestMatchingSecurity %% SecurityIdentification15 recursion level 1 with max 1 class SecurityIdentification15{ ISIN IsoISINIdentifier Description IsoRestrictedFINXMax140Text } SecurityIdentification15 *-- "0..0" OtherIdentification2 : OtherIdentification
CorporateActionNotificationSD1 members
Member name | Description | Data Type / Multiplicity |
---|---|---|
PlaceAndName | xPath to the element that is being extended. | IsoMax350Text - Required 1..1 |
CustomerInternalSecurityIdentification | Internal security identification as provided by the customer for the given security on the security of interest (SOI) import file. | IsoMax16Text - Optional 0..1 |
SecurityOfInterestMatchingSecurity | Security identifier that is used to match the customer’s SOI (Security of Interest) to the GCA VS Security Cross Reference. | SecurityIdentification15 - Optional 0..1 |
GeneralInformationExtension building block
Information to be extended as supplementary data to cancellation advice general information. Provides additional information regarding corporate action general information details. For comparison, see the ISO20022 official specification
classDiagram direction tb %% CorporateActionGeneralInformationSD2 recursion level 0 with max 1 class CorporateActionGeneralInformationSD2{ PlaceAndName IsoMax350Text EventType ExtendedEventType1Code SubEventType DTCCSubEventType1Code }
CorporateActionGeneralInformationSD2 members
Member name | Description | Data Type / Multiplicity |
---|---|---|
PlaceAndName | xPath to the element that is being extended. | IsoMax350Text - Required 1..1 |
EventType | DTCC (The Depository Trust and Clearing Corporation) native corporate action event type name. Used in place for the events that cannot be classified by ISO Code and are marked as OTHR. Can be used in combination with DTCC sub event type (when provided) to identify the event. For an example: a distribution based on recapitalisation event will be presented as event type: OTHR in standard message. DTCC native event type would be Distribution (DIST) and DTCC sub event type would be Recapitalisation. | ExtendedEventType1Code - Optional 0..1 |
SubEventType | DTCC (The Depository Trust and Clearing Corporation) corporate action sub event type name further defines the event type. For an example: a cash dividend event eligible for dividend reinvestment at DTC election will be noted as event type: Cash Dividend (DVCA) and DTCC sub event type: DRIP( DTC only). | DTCCSubEventType1Code - Optional 0..1 |
EventsLinkageExtension building block
Information to be extended as events linkage supplementary data to events to cancellation advice. Provides additional information regarding linkage details. For comparison, see the ISO20022 official specification
classDiagram direction tb %% CorporateActionCancellationSD1 recursion level 0 with max 1 class CorporateActionCancellationSD1{ PlaceAndName IsoMax350Text LinkedCorporateActionIdentification IsoMax35Text LinkageType DTCCLinkType1Code LinkAddedDate IsoISODate LinkModifiedDate IsoISODate }
CorporateActionCancellationSD1 members
Member name | Description | Data Type / Multiplicity |
---|---|---|
PlaceAndName | xPath to the element that is being extended. | IsoMax350Text - Required 1..1 |
LinkedCorporateActionIdentification | Reference assigned by the account servicer to unambiguously identify a related corporate action event. | IsoMax35Text - Required 1..1 |
LinkageType | Indicates the reason why two or more events are related. | DTCCLinkType1Code - Required 1..1 |
LinkAddedDate | Events can be linked together. This date represents the date on which the link was established. | IsoISODate - Required 1..1 |
LinkModifiedDate | Events can be linked together. This date represents the date on which the link was modified. | IsoISODate - Optional 0..1 |
ExternalCommentsExtension building block
Information to be extended as external comments to cancellation advice. Provides additional information regarding additional comments. For comparison, see the ISO20022 official specification
classDiagram direction tb %% CorporateActionCancellationSD2 recursion level 0 with max 1 class CorporateActionCancellationSD2{ PlaceAndName IsoMax350Text ExternalComments IsoMax8000Text }
CorporateActionCancellationSD2 members
Member name | Description | Data Type / Multiplicity |
---|---|---|
PlaceAndName | xPath to the element that is being extended. | IsoMax350Text - Required 1..1 |
ExternalComments | Additional textual information regarding the cancelled event. | IsoMax8000Text - Optional 0..1 |
Extensibility and generalization considerations
To facilitate generalized design patterns in the system, the DTCCCACNSD1V02 implementation follows a specific implementaiton pattern. First of all, DTCCCACNSD1V02 impleemnts IOuterRecord indicating it is the outermost logical part of the message definition. Like all message wrappers, DTCCCACNSD1V02Document implements IOuterDocument. Because DTCCCACNSD1V02 implements IOuterDocument, it is a suitable template parameter for IOuterDocument, and causes the internal ‘Message’ to be of type DTCCCACNSD1V02.
classDiagram class IOuterRecord DTCCCACNSD1V02 --|> IOuterRecord : Implements DTCCCACNSD1V02Document --|> IOuterDocument~DTCCCACNSD1V02~ : Implements class IOuterDocument~DTCCCACNSD1V02~ { DTCCCACNSD1V02 Message }
Document wrapper for serialization
The only real purpose DTCCCACNSD1V02Document serves is to cause the document to be serialized into the ‘urn:iso:std:iso:20022:tech:xsd:supl.006.001.02’ namespace. Therefore, it will probably be the usual practice to build the message and construct this wrapper at the last minute using DTCCCACNSD1V02.ToDocument() method. The returned DTCCCACNSD1V02Document value will serialize correctly according to ISO 20022 standards.
classDiagram DTCCCACNSD1V02Document *-- DTCCCACNSD1V02 : 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.006.001.02">
<DTCCCACNSD1>
<NtfctnXtnsn>
<!-- NotificationExtension inner content -->
</NtfctnXtnsn>
<GnlInfXtnsn>
<!-- GeneralInformationExtension inner content -->
</GnlInfXtnsn>
<EvtsLkgXtnsn>
<!-- EventsLinkageExtension inner content -->
</EvtsLkgXtnsn>
<XtrnlCmntsXtnsn>
<!-- ExternalCommentsExtension inner content -->
</XtrnlCmntsXtnsn>
</DTCCCACNSD1>
</Document>
Data from ISO specification
This is the technical data from the specification document.
<messageDefinition
xmi:id="_1OTt4zL3EeKU9IrkkToqcw_-1610896925"
nextVersions="_1Py7oDL3EeKU9IrkkToqcw_1572925188"
name="DTCCCACNSD1V02"
definition="The DTCCCACNSD1 message extends ISO corporate action cancellation advise (CACN) message with DTCC corporate action elements not covered in the standard message."
registrationStatus="Provisionally Registered"
xmlTag="DTCCCACNSD1"
rootElement="Document"
xmlns:xmi="http://www.omg.org/XMI">
<messageBuildingBlock
xmi:id="_1OTt5DL3EeKU9IrkkToqcw_-1238632619"
name="NotificationExtension"
definition="Information to be extended as supplementary data to cancellation advice."
registrationStatus="Provisionally Registered"
maxOccurs="1"
minOccurs="0"
xmlTag="NtfctnXtnsn"
complexType="_1Tg-ADL3EeKU9IrkkToqcw_-2108418056" />
<messageBuildingBlock
xmi:id="_1OTt5TL3EeKU9IrkkToqcw_-2042507692"
name="GeneralInformationExtension"
definition="Information to be extended as supplementary data to cancellation advice general information."
registrationStatus="Provisionally Registered"
maxOccurs="1"
minOccurs="0"
xmlTag="GnlInfXtnsn"
complexType="_1UaV4zL3EeKU9IrkkToqcw_384810408" />
<messageBuildingBlock
xmi:id="_1OTt5jL3EeKU9IrkkToqcw_-1867503343"
name="EventsLinkageExtension"
definition="Information to be extended as events linkage supplementary data to events to cancellation advice."
registrationStatus="Provisionally Registered"
minOccurs="0"
xmlTag="EvtsLkgXtnsn"
complexType="_1cdeoTL3EeKU9IrkkToqcw_-445567817" />
<messageBuildingBlock
xmi:id="_1OTt5zL3EeKU9IrkkToqcw_-551563388"
name="ExternalCommentsExtension"
definition="Information to be extended as external comments to cancellation advice."
registrationStatus="Provisionally Registered"
maxOccurs="1"
minOccurs="0"
xmlTag="XtrnlCmntsXtnsn"
complexType="_1g7u9DL3EeKU9IrkkToqcw_1580284349" />
<messageDefinitionIdentifier
businessArea="supl"
messageFunctionality="006"
flavour="001"
version="02" />
</messageDefinition>
ISO Building Blocks
The following items are used as building blocks to construct this message.