seev.038.001.06
Scope The CorporateActionNarrative message is sent between an account servicer and an account owner or its designated agent to cater for such processes that cannot be handled using messages such as the CorporateActionNotification. It is not to be used for event narrative as that should be included in the CorporateActionNotification. Examples of when the CorporateActionNarrative message may be used include tax reclaims, restrictions, documentation requirements. This message should only be used when bilaterally agreed. This message is bi-directional. Usage The message may also be used to:
- re-send a message previously sent (the sub-function of the message is Duplicate),
- provide a third party with a copy of a message for information (the sub-function of the message is Copy),
- re-send to a third party a copy of a message for information (the sub-function of the message is Copy Duplicate), using the relevant elements in the business application header (BAH).
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 %% CorporateActionNarrativeV06 recursion level 0 with max 0 CorporateActionNarrativeV06 *-- "0..1" IAccountIdentification42Choice : AccountDetails CorporateActionNarrativeV06 *-- "0..1" SecurityIdentification19 : UnderlyingSecurity CorporateActionNarrativeV06 *-- "1..1" CorporateActionGeneralInformation92 : CorporateActionGeneralInformation CorporateActionNarrativeV06 *-- "1..1" UpdatedAdditionalInformation8 : AdditionalInformation CorporateActionNarrativeV06 *-- "0..1" SupplementaryData1 : SupplementaryData
Now, we will zero-in one-by-one on each of these building blocks.
AccountDetails building block
General information about the safekeeping account and the account owner. Choice between all accounts (GENR - General in ISO 15022) or one or more selected accounts and balance information. For comparison, see the ISO20022 official specification
classDiagram direction tb %% IAccountIdentification42Choice recursion level 0 with max 1
AccountIdentification42Choice members
Member name | Description | Data Type / Multiplicity |
---|
UnderlyingSecurity building block
Provides information about the securitised right for entitlement. Identification of a security. For comparison, see the ISO20022 official specification
classDiagram direction tb %% SecurityIdentification19 recursion level 0 with max 1 class SecurityIdentification19{ ISIN IsoISINOct2015Identifier Description IsoMax140Text } SecurityIdentification19 *-- "0..0" OtherIdentification1 : OtherIdentification %% OtherIdentification1 recursion level 1 with max 1 class OtherIdentification1{ Identification IsoMax35Text Suffix IsoMax16Text } OtherIdentification1 *-- "1..1" IIdentificationSource3Choice : Type
SecurityIdentification19 members
Member name | Description | Data Type / Multiplicity |
---|---|---|
ISIN | International Securities Identification Number (ISIN). A numbering system designed by the United Nation’s International Organisation for Standardisation (ISO). The ISIN is composed of a 2-character prefix representing the country of issue, followed by the national security number (if one exists), and a check digit. Each country has a national numbering agency that assigns ISIN numbers for securities in that country. | IsoISINOct2015Identifier - Optional 0..1 |
OtherIdentification | Identification of a security by proprietary or domestic identification scheme. | OtherIdentification1 - Unknown 0..0 |
Description | Textual description of a security instrument. | IsoMax140Text - Optional 0..1 |
CorporateActionGeneralInformation building block
General information about the corporate action event. General information about the corporate action event. For comparison, see the ISO20022 official specification
classDiagram direction tb %% CorporateActionGeneralInformation92 recursion level 0 with max 1 class CorporateActionGeneralInformation92{ CorporateActionEventIdentification IsoMax35Text OfficialCorporateActionEventIdentification IsoMax35Text } CorporateActionGeneralInformation92 *-- "0..1" ICorporateActionNarrative3Choice : NarrativeType %% ICorporateActionNarrative3Choice recursion level 1 with max 1
CorporateActionGeneralInformation92 members
Member name | Description | Data Type / Multiplicity |
---|---|---|
CorporateActionEventIdentification | Reference assigned by the account servicer to unambiguously identify a corporate action event. | IsoMax35Text - Required 1..1 |
OfficialCorporateActionEventIdentification | Official and unique reference assigned by the official central body/entity within each market at the beginning of a corporate action event. | IsoMax35Text - Optional 0..1 |
NarrativeType | Specifies the type of narrative related to the message. | ICorporateActionNarrative3Choice - Optional 0..1 |
AdditionalInformation building block
Provides additional information. Additional information with update description and date. For comparison, see the ISO20022 official specification
classDiagram direction tb %% UpdatedAdditionalInformation8 recursion level 0 with max 1 class UpdatedAdditionalInformation8{ UpdateDescription IsoMax140Text UpdateDate IsoISODate AdditionalInformation IsoMax8000Text }
UpdatedAdditionalInformation8 members
Member name | Description | Data Type / Multiplicity |
---|---|---|
UpdateDescription | Specifies the amendments made to the narrative since the last message. | IsoMax140Text - Optional 0..1 |
UpdateDate | Specifies the date at which the narrative has been updated. | IsoISODate - Optional 0..1 |
AdditionalInformation | Provides additional textual information. | IsoMax8000Text - Unknown 1..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 CorporateActionNarrativeV06 implementation follows a specific implementaiton pattern. First of all, CorporateActionNarrativeV06 impleemnts IOuterRecord indicating it is the outermost logical part of the message definition. Like all message wrappers, CorporateActionNarrativeV06Document implements IOuterDocument. Because CorporateActionNarrativeV06 implements IOuterDocument, it is a suitable template parameter for IOuterDocument, and causes the internal ‘Message’ to be of type CorporateActionNarrativeV06.
classDiagram class IOuterRecord CorporateActionNarrativeV06 --|> IOuterRecord : Implements CorporateActionNarrativeV06Document --|> IOuterDocument~CorporateActionNarrativeV06~ : Implements class IOuterDocument~CorporateActionNarrativeV06~ { CorporateActionNarrativeV06 Message }
Document wrapper for serialization
The only real purpose CorporateActionNarrativeV06Document serves is to cause the document to be serialized into the ‘urn:iso:std:iso:20022:tech:xsd:seev.038.001.06’ namespace. Therefore, it will probably be the usual practice to build the message and construct this wrapper at the last minute using CorporateActionNarrativeV06.ToDocument() method. The returned CorporateActionNarrativeV06Document value will serialize correctly according to ISO 20022 standards.
classDiagram CorporateActionNarrativeV06Document *-- CorporateActionNarrativeV06 : 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:seev.038.001.06">
<CorpActnNrrtv>
<AcctDtls>
<!-- AccountDetails inner content -->
</AcctDtls>
<UndrlygScty>
<!-- UnderlyingSecurity inner content -->
</UndrlygScty>
<CorpActnGnlInf>
<!-- CorporateActionGeneralInformation inner content -->
</CorpActnGnlInf>
<AddtlInf>
<!-- AdditionalInformation inner content -->
</AddtlInf>
<SplmtryData>
<!-- SupplementaryData inner content -->
</SplmtryData>
</CorpActnNrrtv>
</Document>
Data from ISO specification
This is the technical data from the specification document.
<messageDefinition
xmi:id="_eOj-Qe6TEeqc-LCjwLsUVg"
nextVersions="_yg7BdxbHEeyroI8qKgB7Mg"
previousVersion="_BBQdl7T-EeiTob_PrFFUxA"
name="CorporateActionNarrativeV06"
definition="Scope
The CorporateActionNarrative message is sent between an account servicer and an account owner or its designated agent to cater for such processes that cannot be handled using messages such as the CorporateActionNotification. It is not to be used for event narrative as that should be included in the CorporateActionNotification. Examples of when the CorporateActionNarrative message may be used include tax reclaims, restrictions, documentation requirements. This message should only be used when bilaterally agreed. This message is bi-directional.
Usage
The message may also be used to:
- re-send a message previously sent (the sub-function of the message is Duplicate),
- provide a third party with a copy of a message for information (the sub-function of the message is Copy),
- re-send to a third party a copy of a message for information (the sub-function of the message is Copy Duplicate), using the relevant elements in the business application header (BAH)."
registrationStatus="Registered"
messageSet="_EXlwHP8sEeCucdcGpZ6bIQ"
xmlTag="CorpActnNrrtv"
rootElement="Document"
xmlns:xmi="http://www.omg.org/XMI">
<messageBuildingBlock
xmi:id="_eOj-R-6TEeqc-LCjwLsUVg"
nextVersions="_yg7BfRbHEeyroI8qKgB7Mg"
previousVersion="_BBQdmbT-EeiTob_PrFFUxA"
name="AccountDetails"
definition="General information about the safekeeping account and the account owner."
registrationStatus="Provisionally Registered"
maxOccurs="1"
minOccurs="0"
xmlTag="AcctDtls"
complexType="_btgAxbXDEeiTob_PrFFUxA" />
<messageBuildingBlock
xmi:id="_eOj-Se6TEeqc-LCjwLsUVg"
nextVersions="_yg7BfxbHEeyroI8qKgB7Mg"
previousVersion="_BBQdm7T-EeiTob_PrFFUxA"
name="UnderlyingSecurity"
definition="Provides information about the securitised right for entitlement."
registrationStatus="Provisionally Registered"
maxOccurs="1"
minOccurs="0"
xmlTag="UndrlygScty"
complexType="_ho6XQYlXEeWPSZi0kAOXhg" />
<messageBuildingBlock
xmi:id="_eOj-S-6TEeqc-LCjwLsUVg"
nextVersions="_yg7BgRbHEeyroI8qKgB7Mg"
previousVersion="_BBQdnbT-EeiTob_PrFFUxA"
name="CorporateActionGeneralInformation"
definition="General information about the corporate action event."
registrationStatus="Provisionally Registered"
maxOccurs="1"
minOccurs="1"
xmlTag="CorpActnGnlInf"
complexType="_7e-zsUGVEeWqy4niLuXETA" />
<messageBuildingBlock
xmi:id="_eOj-Te6TEeqc-LCjwLsUVg"
nextVersions="_yg7BgxbHEeyroI8qKgB7Mg"
previousVersion="_BBQdn7T-EeiTob_PrFFUxA"
name="AdditionalInformation"
definition="Provides additional information."
registrationStatus="Provisionally Registered"
maxOccurs="1"
minOccurs="1"
xmlTag="AddtlInf"
complexType="_xIm7YUEJEeWVgfuHGaKtRQ" />
<messageBuildingBlock
xmi:id="_eOj-T-6TEeqc-LCjwLsUVg"
nextVersions="_yg7BhRbHEeyroI8qKgB7Mg"
previousVersion="_BBQdobT-EeiTob_PrFFUxA"
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="seev"
messageFunctionality="038"
flavour="001"
version="06" />
</messageDefinition>
ISO Building Blocks
The following items are used as building blocks to construct this message.