seev.038.001.03
Scope The CorporateActionNarrative message is sent between an account servicer and an account owner or its designated agent to cater for tax reclaims, restrictions, documentation requirements. 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). ISO 15022 - 20022 COEXISTENCE This ISO 20022 message is reversed engineered from ISO 15022. Both standards will coexist for a certain number of years. Until this coexistence period ends, the usage of certain data types is restricted to ensure interoperability between ISO 15022 and 20022 users. Compliance to these rules is mandatory in a coexistence environment. The coexistence restrictions are described in a Textual Rule linked to the Message Items they concern. These coexistence textual rules are clearly identified as follows: “CoexistenceXxxxRule”.
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 %% CorporateActionNarrativeV03 recursion level 0 with max 0 CorporateActionNarrativeV03 *-- "0..1" IAccountIdentification14Choice : AccountDetails CorporateActionNarrativeV03 *-- "0..1" SecurityIdentification14 : UnderlyingSecurity CorporateActionNarrativeV03 *-- "1..1" CorporateActionGeneralInformation40 : CorporateActionGeneralInformation CorporateActionNarrativeV03 *-- "1..1" UpdatedAdditionalInformation2 : AdditionalInformation CorporateActionNarrativeV03 *-- "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 %% IAccountIdentification14Choice recursion level 0 with max 1
AccountIdentification14Choice 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 %% SecurityIdentification14 recursion level 0 with max 1 class SecurityIdentification14{ ISIN IsoISINIdentifier Description IsoMax140Text } SecurityIdentification14 *-- "0..0" OtherIdentification1 : OtherIdentification %% OtherIdentification1 recursion level 1 with max 1 class OtherIdentification1{ Identification IsoMax35Text Suffix IsoMax16Text } OtherIdentification1 *-- "1..1" IIdentificationSource3Choice : Type
SecurityIdentification14 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. | IsoISINIdentifier - 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 %% CorporateActionGeneralInformation40 recursion level 0 with max 1 class CorporateActionGeneralInformation40{ CorporateActionEventIdentification IsoMax35Text OfficialCorporateActionEventIdentification IsoMax35Text } CorporateActionGeneralInformation40 *-- "0..1" ICorporateActionNarrative1Choice : NarrativeType %% ICorporateActionNarrative1Choice recursion level 1 with max 1
CorporateActionGeneralInformation40 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. | ICorporateActionNarrative1Choice - 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 %% UpdatedAdditionalInformation2 recursion level 0 with max 1 class UpdatedAdditionalInformation2{ UpdateDescription IsoMax140Text UpdateDate IsoISODate AdditionalInformation IsoMax8000Text }
UpdatedAdditionalInformation2 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 CorporateActionNarrativeV03 implementation follows a specific implementaiton pattern. First of all, CorporateActionNarrativeV03 impleemnts IOuterRecord indicating it is the outermost logical part of the message definition. Like all message wrappers, CorporateActionNarrativeV03Document implements IOuterDocument. Because CorporateActionNarrativeV03 implements IOuterDocument, it is a suitable template parameter for IOuterDocument, and causes the internal ‘Message’ to be of type CorporateActionNarrativeV03.
classDiagram class IOuterRecord CorporateActionNarrativeV03 --|> IOuterRecord : Implements CorporateActionNarrativeV03Document --|> IOuterDocument~CorporateActionNarrativeV03~ : Implements class IOuterDocument~CorporateActionNarrativeV03~ { CorporateActionNarrativeV03 Message }
Document wrapper for serialization
The only real purpose CorporateActionNarrativeV03Document serves is to cause the document to be serialized into the ‘urn:iso:std:iso:20022:tech:xsd:seev.038.001.03’ namespace. Therefore, it will probably be the usual practice to build the message and construct this wrapper at the last minute using CorporateActionNarrativeV03.ToDocument() method. The returned CorporateActionNarrativeV03Document value will serialize correctly according to ISO 20022 standards.
classDiagram CorporateActionNarrativeV03Document *-- CorporateActionNarrativeV03 : 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.03">
<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="_67kdcfmMEeC_eLZALo-S0A"
nextVersions="_Rc5pwzm_EeWENZE2jGFgGw"
previousVersion="_4Ozz0eZ9Ed-q8fx_Zl_34A"
name="CorporateActionNarrativeV03"
definition="Scope
The CorporateActionNarrative message is sent between an account servicer and an account owner or its designated agent to cater for tax reclaims, restrictions, documentation requirements. 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).
ISO 15022 - 20022 COEXISTENCE
This ISO 20022 message is reversed engineered from ISO 15022. Both standards will coexist for a certain number of years. Until this coexistence period ends, the usage of certain data types is restricted to ensure interoperability between ISO 15022 and 20022 users. Compliance to these rules is mandatory in a coexistence environment. The coexistence restrictions are described in a Textual Rule linked to the Message Items they concern. These coexistence textual rules are clearly identified as follows: “CoexistenceXxxxRule”."
registrationStatus="Registered"
messageSet="_urpIICeJEeOCeO5e7islRQ"
xmlTag="CorpActnNrrtv"
rootElement="Document"
xmlns:xmi="http://www.omg.org/XMI">
<constraint
xmi:id="_67kddfmMEeC_eLZALo-S0A"
name="CoexistenceCharacterSetXRule"
definition="During ISO 15022 – 20022 coexistence, characters used in all text fields (except AdditionalInformation/AdditionalInformation) must correspond to ISO 15022 character set X, that is, a-z A-Z / - ? : ( ) . , ‘ + { } CR LF."
registrationStatus="Provisionally Registered" />
<constraint
xmi:id="_67kdefmMEeC_eLZALo-S0A"
name="CoexistenceIdentificationRule"
definition="During ISO 15022 – 20022 coexistence, all transaction and document identifications or references must be 16 characters or less. The field must not start or end with a slash ‘/’ or contain two consecutive slashes ‘//’."
registrationStatus="Provisionally Registered" />
<messageBuildingBlock
xmi:id="_67kdffmMEeC_eLZALo-S0A"
nextVersions="_Rc5pyTm_EeWENZE2jGFgGw"
name="AccountDetails"
definition="General information about the safekeeping account and the account owner."
registrationStatus="Provisionally Registered"
maxOccurs="1"
minOccurs="0"
xmlTag="AcctDtls"
complexType="_qVQlKeaPEd-q8fx_Zl_34A" />
<messageBuildingBlock
xmi:id="_67kdgfmMEeC_eLZALo-S0A"
nextVersions="_Rc5pyzm_EeWENZE2jGFgGw"
name="UnderlyingSecurity"
definition="Provides information about the securitised right for entitlement."
registrationStatus="Provisionally Registered"
maxOccurs="1"
minOccurs="0"
xmlTag="UndrlygScty"
complexType="_TBAQ7dp-Ed-ak6NoX_4Aeg_896067631" />
<messageBuildingBlock
xmi:id="_67kdhfmMEeC_eLZALo-S0A"
nextVersions="_Rc5pzTm_EeWENZE2jGFgGw"
name="CorporateActionGeneralInformation"
definition="General information about the corporate action event."
registrationStatus="Provisionally Registered"
maxOccurs="1"
minOccurs="1"
xmlTag="CorpActnGnlInf"
complexType="_ehpLwfmSEeCw1fhM3OuY5Q" />
<messageBuildingBlock
xmi:id="_67kdifmMEeC_eLZALo-S0A"
nextVersions="_Rc5pzzm_EeWENZE2jGFgGw"
name="AdditionalInformation"
definition="Provides additional information."
registrationStatus="Provisionally Registered"
maxOccurs="1"
minOccurs="1"
xmlTag="AddtlInf"
complexType="_Q1O859p-Ed-ak6NoX_4Aeg_-2143304293" />
<messageBuildingBlock
xmi:id="_67kdjfmMEeC_eLZALo-S0A"
nextVersions="_Rc5p0Tm_EeWENZE2jGFgGw"
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="03" />
</messageDefinition>
ISO Building Blocks
The following items are used as building blocks to construct this message.