SecuritiesFinancingInstruction002V06

sese.033.002.06

Scope An account owner sends a SecuritiesFinancingInstruction to a securities financing transaction account servicer to notify the securities financing transaction account servicer of the details of a repurchase agreement, reverse repurchase agreement, securities lending or securities borrowing transaction to allow the account servicer to manage the settlement and follow-up of the opening and closing leg of the transaction. The account owner/servicer relationship may be:

Usage The message may also be used to:

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
%% SecuritiesFinancingInstruction002V06 recursion level 0 with max 0
class SecuritiesFinancingInstruction002V06{
    TransactionIdentification IsoRestrictedFINXMax16Text
}
SecuritiesFinancingInstruction002V06 *-- "1..1" TransactionTypeAndAdditionalParameters13 : TransactionTypeAndAdditionalParameters
SecuritiesFinancingInstruction002V06 *-- "0..1" INumberCount1Choice : NumberCounts
SecuritiesFinancingInstruction002V06 *-- "0..1" Linkages43 : Linkages
SecuritiesFinancingInstruction002V06 *-- "1..1" SecuritiesTradeDetails59 : TradeDetails
SecuritiesFinancingInstruction002V06 *-- "1..1" SecurityIdentification20 : FinancialInstrumentIdentification
SecuritiesFinancingInstruction002V06 *-- "0..1" FinancialInstrumentAttributes78 : FinancialInstrumentAttributes
SecuritiesFinancingInstruction002V06 *-- "1..1" QuantityAndAccount47 : QuantityAndAccountDetails
SecuritiesFinancingInstruction002V06 *-- "1..1" SecuritiesFinancingTransactionDetails30 : SecuritiesFinancingDetails
SecuritiesFinancingInstruction002V06 *-- "0..1" SettlementDetails105 : SettlementParameters
SecuritiesFinancingInstruction002V06 *-- "0..1" StandingSettlementInstruction12 : StandingSettlementInstructionDetails
SecuritiesFinancingInstruction002V06 *-- "0..1" SettlementParties44 : DeliveringSettlementParties
SecuritiesFinancingInstruction002V06 *-- "0..1" SettlementParties44 : ReceivingSettlementParties
SecuritiesFinancingInstruction002V06 *-- "0..1" CashParties30 : CashParties
SecuritiesFinancingInstruction002V06 *-- "0..1" AmountAndDirection60 : OpeningSettlementAmount
SecuritiesFinancingInstruction002V06 *-- "0..1" OtherAmounts35 : OtherAmounts
SecuritiesFinancingInstruction002V06 *-- "0..1" OtherParties29 : OtherBusinessParties
SecuritiesFinancingInstruction002V06 *-- "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 16 characters. It has a pattern that disables the use of characters that is not part of the character set X, that is, that is not a-z A-Z / - ? : ( ) . , ‘ + , and disable the use of slash “/” at the beginning and end of line and double slash “//” within the line. For comparison, see the ISO20022 official specification This message is declared as RestrictedFINXMax16Text in the ISO specification. In our implementation, it is represented in source code as IsoRestrictedFINXMax16Text. Due to global using directives, it is treated as a System.String by the compiler and runtime.

TransactionTypeAndAdditionalParameters building block

Securities financing transaction identification information, type (repurchase agreement, reverse repurchase agreement, securities lending or securities borrowing) and other parameters. Securities financing transaction identification information, type (repurchase agreement, reverse repurchase agreement, securities lending or securities borrowing) and other parameters. For comparison, see the ISO20022 official specification

classDiagram
   direction tb
%% TransactionTypeAndAdditionalParameters13 recursion level 0 with max 1
class TransactionTypeAndAdditionalParameters13{
    SecuritiesFinancingTransactionType SecuritiesFinancingTransactionType1Code
    Payment DeliveryReceiptType2Code
    CommonIdentification IsoRestrictedFINXMax16Text
    ReconciliationIndicator IsoYesNoIndicator
}
  

TransactionTypeAndAdditionalParameters13 members

Member name Description Data Type / Multiplicity
SecuritiesFinancingTransactionType Specifies the type of securities financing transaction, that is, repurchase agreement, reverse repurchase agreement, securities lending or securities borrowing. SecuritiesFinancingTransactionType1Code - Required 1..1
Payment Specifies how the transaction is to be settled, for example, against payment. DeliveryReceiptType2Code - Required 1..1
CommonIdentification Unique reference agreed upon by the two trade counterparties to identify the trade. IsoRestrictedFINXMax16Text - Optional 0..1
ReconciliationIndicator Settlement transaction has already been sent on the market. It is sent by an account owner to an account servicer for reconciliation purposes. IsoYesNoIndicator - Optional 0..1

NumberCounts building block

Count of the number of transactions linked. Choice of number count type. For comparison, see the ISO20022 official specification

classDiagram
   direction tb
%% INumberCount1Choice recursion level 0 with max 1
  

NumberCount1Choice members

Member name Description Data Type / Multiplicity

Linkages building block

Link to another transaction that must be processed after, before or at the same time. Information related to a linked transaction. For comparison, see the ISO20022 official specification

classDiagram
   direction tb
%% Linkages43 recursion level 0 with max 1
Linkages43 *-- "0..1" IProcessingPosition10Choice : ProcessingPosition
Linkages43 *-- "0..1" IDocumentNumber6Choice : MessageNumber
Linkages43 *-- "1..1" IReferences50Choice : Reference
Linkages43 *-- "0..1" IPairedOrTurnedQuantity4Choice : LinkedQuantity
Linkages43 *-- "0..1" IPartyIdentification103Choice : ReferenceOwner
%% IProcessingPosition10Choice recursion level 1 with max 1
%% IDocumentNumber6Choice recursion level 1 with max 1
%% IReferences50Choice recursion level 1 with max 1
%% IPairedOrTurnedQuantity4Choice recursion level 1 with max 1
%% IPartyIdentification103Choice recursion level 1 with max 1
  

Linkages43 members

Member name Description Data Type / Multiplicity
ProcessingPosition When the transaction is to be executed relative to a linked transaction. IProcessingPosition10Choice - Optional 0..1
MessageNumber Message type number/message identifier of the message referenced in the linkage sequence. IDocumentNumber6Choice - Optional 0..1
Reference Reference to the linked transaction. IReferences50Choice - Required 1..1
LinkedQuantity Quantity of financial instruments of the linked transaction to be paired-off or turned. IPairedOrTurnedQuantity4Choice - Optional 0..1
ReferenceOwner Party that generates the reference. IPartyIdentification103Choice - Optional 0..1

TradeDetails building block

Details of the securities financing deal. Details of the securities trade. For comparison, see the ISO20022 official specification

classDiagram
   direction tb
%% SecuritiesTradeDetails59 recursion level 0 with max 1
class SecuritiesTradeDetails59{
    NumberOfDaysAccrued IsoMax3Number
    SettlementInstructionProcessingAdditionalDetails IsoRestrictedFINXMax350Text
    FXAdditionalDetails IsoRestrictedFINXMax350Text
}
SecuritiesTradeDetails59 *-- "0..1" PlaceOfTradeIdentification2 : PlaceOfTrade
SecuritiesTradeDetails59 *-- "0..1" PlaceOfClearingIdentification1 : PlaceOfClearing
SecuritiesTradeDetails59 *-- "0..1" ITradeDate6Choice : TradeDate
SecuritiesTradeDetails59 *-- "1..1" IDateAndDateTimeChoice : OpeningSettlementDate
SecuritiesTradeDetails59 *-- "0..1" Price3 : DealPrice
SecuritiesTradeDetails59 *-- "0..0" IReporting9Choice : Reporting
SecuritiesTradeDetails59 *-- "0..0" ITradeTransactionCondition6Choice : TradeTransactionCondition
SecuritiesTradeDetails59 *-- "0..1" IInvestorCapacity5Choice : InvestorCapacity
SecuritiesTradeDetails59 *-- "0..1" ITradeOriginator4Choice : TradeOriginatorRole
SecuritiesTradeDetails59 *-- "0..1" ICurrencyToBuyOrSell1Choice : CurrencyToBuyOrSell
SecuritiesTradeDetails59 *-- "0..1" IAffirmationStatus9Choice : AffirmationStatus
SecuritiesTradeDetails59 *-- "0..1" IMatchingStatus28Choice : MatchingStatus
%% PlaceOfTradeIdentification2 recursion level 1 with max 1
class PlaceOfTradeIdentification2{
    LEI IsoLEIIdentifier
}
PlaceOfTradeIdentification2 *-- "0..1" MarketIdentification90 : MarketTypeAndIdentification
%% PlaceOfClearingIdentification1 recursion level 1 with max 1
class PlaceOfClearingIdentification1{
    Identification IsoAnyBICIdentifier
    LEI IsoLEIIdentifier
}
%% ITradeDate6Choice recursion level 1 with max 1
%% IDateAndDateTimeChoice recursion level 1 with max 1
%% Price3 recursion level 1 with max 1
Price3 *-- "1..1" IYieldedOrValueType1Choice : Type
Price3 *-- "1..1" IPriceRateOrAmount1Choice : Value
%% IReporting9Choice recursion level 1 with max 1
%% ITradeTransactionCondition6Choice recursion level 1 with max 1
%% IInvestorCapacity5Choice recursion level 1 with max 1
%% ITradeOriginator4Choice recursion level 1 with max 1
%% ICurrencyToBuyOrSell1Choice recursion level 1 with max 1
%% IAffirmationStatus9Choice recursion level 1 with max 1
%% IMatchingStatus28Choice recursion level 1 with max 1
  

SecuritiesTradeDetails59 members

Member name Description Data Type / Multiplicity
PlaceOfTrade Market in which a trade transaction has been executed. PlaceOfTradeIdentification2 - Optional 0..1
PlaceOfClearing Infrastructure which may be a component of a clearing house and wich facilitates clearing and settlement for its members by standing between the buyer and the seller. It may net transactions and it substitutes itself as settlement counterparty for each position. PlaceOfClearingIdentification1 - Optional 0..1
TradeDate Specifies the date/time on which the trade was executed. ITradeDate6Choice - Optional 0..1
OpeningSettlementDate Date and time at which the securities are to be delivered or received. IDateAndDateTimeChoice - Required 1..1
DealPrice Specifies the price of the traded financial instrument. This is the deal price of the individual trade transaction.
NumberOfDaysAccrued Number of days on which the interest rate accrues (daily accrual note). IsoMax3Number - Optional 0..1
Reporting Specifies that a trade is to be reported to a third party. IReporting9Choice - Unknown 0..0
TradeTransactionCondition Indicates the conditions under which the order/trade is to be/was executed. ITradeTransactionCondition6Choice - Unknown 0..0
InvestorCapacity Specifies the role of the investor in the transaction. IInvestorCapacity5Choice - Optional 0..1
TradeOriginatorRole Specifies the role of the trading party in the transaction. ITradeOriginator4Choice - Optional 0..1
CurrencyToBuyOrSell Account servicer is instructed to buy the indicated currency after the receipt of cash proceeds or to sell the indicated currency in order to obtain the necessary currency to fund the transaction. ICurrencyToBuyOrSell1Choice - Optional 0..1
AffirmationStatus Status of affirmation of a trade. IAffirmationStatus9Choice - Optional 0..1
MatchingStatus Provides the matching status of the instruction. IMatchingStatus28Choice - Optional 0..1
SettlementInstructionProcessingAdditionalDetails Provides additional settlement processing information which can not be included within the structured fields of the message. IsoRestrictedFINXMax350Text - Optional 0..1
FXAdditionalDetails Provides additional details pertaining to foreign exchange instructions. IsoRestrictedFINXMax350Text - Optional 0..1

FinancialInstrumentIdentification building block

Financial instrument representing a sum of rights of the investor vis-a-vis the issuer. Identification of a security. For comparison, see the ISO20022 official specification

classDiagram
   direction tb
%% SecurityIdentification20 recursion level 0 with max 1
class SecurityIdentification20{
    ISIN IsoISINOct2015Identifier
    Description IsoRestrictedFINXMax140Text
}
SecurityIdentification20 *-- "0..0" OtherIdentification2 : OtherIdentification
%% OtherIdentification2 recursion level 1 with max 1
class OtherIdentification2{
    Identification IsoRestrictedFINXMax31Text
    Suffix IsoMax16Text
}
OtherIdentification2 *-- "1..1" IIdentificationSource4Choice : Type
  

SecurityIdentification20 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. OtherIdentification2 - Unknown 0..0
Description Textual description of a security instrument. IsoRestrictedFINXMax140Text - Optional 0..1

FinancialInstrumentAttributes building block

Elements characterising a financial instrument. Elements characterising a financial instrument. For comparison, see the ISO20022 official specification

classDiagram
   direction tb
%% FinancialInstrumentAttributes78 recursion level 0 with max 1
class FinancialInstrumentAttributes78{
    DenominationCurrency ActiveOrHistoricCurrencyCode
    CouponDate IsoISODate
    ExpiryDate IsoISODate
    FloatingRateFixingDate IsoISODate
    MaturityDate IsoISODate
    IssueDate IsoISODate
    NextCallableDate IsoISODate
    PutableDate IsoISODate
    DatedDate IsoISODate
    FirstPaymentDate IsoISODate
    PreviousFactor IsoBaseOneRate
    CurrentFactor IsoBaseOneRate
    NextFactor IsoBaseOneRate
    InterestRate IsoPercentageRate
    YieldToMaturityRate IsoPercentageRate
    NextInterestRate IsoPercentageRate
    IndexRateBasis IsoPercentageRate
    VariableRateIndicator IsoYesNoIndicator
    CallableIndicator IsoYesNoIndicator
    PutableIndicator IsoYesNoIndicator
    FinancialInstrumentAttributeAdditionalDetails IsoRestrictedFINXMax350Text
}
FinancialInstrumentAttributes78 *-- "0..1" IMarketIdentification4Choice : PlaceOfListing
FinancialInstrumentAttributes78 *-- "0..1" IInterestComputationMethodFormat5Choice : DayCountBasis
FinancialInstrumentAttributes78 *-- "0..1" IFormOfSecurity7Choice : RegistrationForm
FinancialInstrumentAttributes78 *-- "0..1" IFrequency27Choice : PaymentFrequency
FinancialInstrumentAttributes78 *-- "0..1" ISecuritiesPaymentStatus6Choice : PaymentStatus
FinancialInstrumentAttributes78 *-- "0..1" IFrequency27Choice : VariableRateChangeFrequency
FinancialInstrumentAttributes78 *-- "0..1" IClassificationType33Choice : ClassificationType
FinancialInstrumentAttributes78 *-- "0..1" IOptionStyle9Choice : OptionStyle
FinancialInstrumentAttributes78 *-- "0..1" IOptionType7Choice : OptionType
FinancialInstrumentAttributes78 *-- "0..1" INumber23Choice : CouponAttachedNumber
FinancialInstrumentAttributes78 *-- "0..1" GenericIdentification39 : PoolNumber
FinancialInstrumentAttributes78 *-- "0..1" IPriceType2Choice : MarketOrIndicativePrice
FinancialInstrumentAttributes78 *-- "0..1" Price3 : ExercisePrice
FinancialInstrumentAttributes78 *-- "0..1" Price3 : SubscriptionPrice
FinancialInstrumentAttributes78 *-- "0..1" Price3 : ConversionPrice
FinancialInstrumentAttributes78 *-- "0..1" Price3 : StrikePrice
FinancialInstrumentAttributes78 *-- "0..1" IFinancialInstrumentQuantity15Choice : MinimumNominalQuantity
FinancialInstrumentAttributes78 *-- "0..1" IFinancialInstrumentQuantity15Choice : ContractSize
FinancialInstrumentAttributes78 *-- "0..0" SecurityIdentification20 : UnderlyingFinancialInstrumentIdentification
%% IMarketIdentification4Choice recursion level 1 with max 1
%% IInterestComputationMethodFormat5Choice recursion level 1 with max 1
%% IFormOfSecurity7Choice recursion level 1 with max 1
%% IFrequency27Choice recursion level 1 with max 1
%% ISecuritiesPaymentStatus6Choice recursion level 1 with max 1
%% IFrequency27Choice recursion level 1 with max 1
%% IClassificationType33Choice recursion level 1 with max 1
%% IOptionStyle9Choice recursion level 1 with max 1
%% IOptionType7Choice recursion level 1 with max 1
%% INumber23Choice recursion level 1 with max 1
%% GenericIdentification39 recursion level 1 with max 1
class GenericIdentification39{
    Identification IsoRestrictedFINMax30Text
    Issuer IsoRestrictedFINMax8Text
}
%% IPriceType2Choice recursion level 1 with max 1
%% Price3 recursion level 1 with max 1
Price3 *-- "1..1" IYieldedOrValueType1Choice : Type
Price3 *-- "1..1" IPriceRateOrAmount1Choice : Value
%% Price3 recursion level 1 with max 1
Price3 *-- "1..1" IYieldedOrValueType1Choice : Type
Price3 *-- "1..1" IPriceRateOrAmount1Choice : Value
%% Price3 recursion level 1 with max 1
Price3 *-- "1..1" IYieldedOrValueType1Choice : Type
Price3 *-- "1..1" IPriceRateOrAmount1Choice : Value
%% Price3 recursion level 1 with max 1
Price3 *-- "1..1" IYieldedOrValueType1Choice : Type
Price3 *-- "1..1" IPriceRateOrAmount1Choice : Value
%% IFinancialInstrumentQuantity15Choice recursion level 1 with max 1
%% IFinancialInstrumentQuantity15Choice recursion level 1 with max 1
%% SecurityIdentification20 recursion level 1 with max 1
class SecurityIdentification20{
    ISIN IsoISINOct2015Identifier
    Description IsoRestrictedFINXMax140Text
}
SecurityIdentification20 *-- "0..0" OtherIdentification2 : OtherIdentification
  

FinancialInstrumentAttributes78 members

Member name Description Data Type / Multiplicity
PlaceOfListing Market(s) on which the security is listed. IMarketIdentification4Choice - Optional 0..1
DayCountBasis Specifies the computation method of (accrued) interest of the security. IInterestComputationMethodFormat5Choice - Optional 0..1
RegistrationForm Specifies the form, this is, ownership, of the security. IFormOfSecurity7Choice - Optional 0..1
PaymentFrequency Specifies the frequency of an interest payment. IFrequency27Choice - Optional 0..1
PaymentStatus Status of payment of a security at a particular time. ISecuritiesPaymentStatus6Choice - Optional 0..1
VariableRateChangeFrequency Specifies the frequency of change to the variable rate of an interest bearing instrument. IFrequency27Choice - Optional 0..1
ClassificationType Classification type of the financial instrument, as per the ISO Classification of Financial Instrument (CFI) codification, for example, common share with voting rights, fully paid, or registered. IClassificationType33Choice - Optional 0..1
OptionStyle Specifies how an option can be exercised (American, European, Bermudan). IOptionStyle9Choice - Optional 0..1
OptionType Specifies whether it is a Call option (right to purchase a specific underlying asset) or a Put option (right to sell a specific underlying asset). IOptionType7Choice - Optional 0..1
DenominationCurrency Currency in which a security is issued or redenominated. ActiveOrHistoricCurrencyCode - Optional 0..1
CouponDate Next payment date of an interest bearing financial instrument. IsoISODate - Optional 0..1
ExpiryDate Date on which a privilege expires. IsoISODate - Optional 0..1
FloatingRateFixingDate Date at which the interest rate of an interest bearing security will be calculated and reset, according to the terms of the issue. IsoISODate - Optional 0..1
MaturityDate Planned final repayment date at the time of issuance. IsoISODate - Optional 0..1
IssueDate Date at which the security was made available. IsoISODate - Optional 0..1
NextCallableDate Next date at which the issuer has the right to pay the security prior to maturity. IsoISODate - Optional 0..1
PutableDate Date at which the holder has the right to ask for redemption of the security prior to final maturity. IsoISODate - Optional 0..1
DatedDate First date at which a security begins to accrue interest. IsoISODate - Optional 0..1
FirstPaymentDate Date at which the first interest payment is due to holders of the security. IsoISODate - Optional 0..1
PreviousFactor Rate expressed as a decimal between 0 and 1 that was applicable before the current factor and defines the outstanding principal of the financial instrument (for factored securities). IsoBaseOneRate - Optional 0..1
CurrentFactor Rate expressed as a decimal between 0 and 1 defining the outstanding principal of the financial instrument (for factored securities). IsoBaseOneRate - Optional 0..1
NextFactor Rate expressed as a decimal between 0 and 1 that will be applicable as of the next factor date and defines the outstanding principal of the financial instrument (for factored securities). IsoBaseOneRate - Optional 0..1
InterestRate Per annum ratio of interest paid to the principal amount of the financial instrument for a specific period of time. IsoPercentageRate - Optional 0..1
YieldToMaturityRate Rate of return anticipated on a bond when held until maturity date. IsoPercentageRate - Optional 0..1
NextInterestRate Interest rate applicable to the next interest payment period in relation to variable rate instruments. IsoPercentageRate - Optional 0..1
IndexRateBasis Specifies the reference rate for fixed income instruments where the price of the instrument is indexed to the price of an underlying benchmark.
CouponAttachedNumber Number of the coupon attached to the physical security. INumber23Choice - Optional 0..1
PoolNumber Number identifying a group of underlying assets assigned by the issuer of a factored security. GenericIdentification39 - Optional 0..1
VariableRateIndicator Indicates whether the interest rate of an interest bearing instrument is reset periodically. IsoYesNoIndicator - Optional 0..1
CallableIndicator Indicates whether the issuer has the right to pay the security prior to maturity. Also called RetractableIndicator. IsoYesNoIndicator - Optional 0..1
PutableIndicator Indicates whether the holder has the right to ask for redemption of the security prior to final maturity. Also called RedeemableIndicator. IsoYesNoIndicator - Optional 0..1
MarketOrIndicativePrice Value of the price, for example, as a currency and value per unit or as a percentage. IPriceType2Choice - Optional 0..1
ExercisePrice Predetermined price at which the holder of a derivative will buy or sell the underlying instrument. Price3 - Optional 0..1
SubscriptionPrice Pre-determined price at which the holder of a right is entitled to buy the underlying instrument. Price3 - Optional 0..1
ConversionPrice Price of one target security in the conversion. Price3 - Optional 0..1
StrikePrice Predetermined price at which the holder will have to buy or sell the underlying instrument. Price3 - Optional 0..1
MinimumNominalQuantity Minimum nominal quantity of financial instrument. IFinancialInstrumentQuantity15Choice - Optional 0..1
ContractSize Ratio or multiplying factor used to convert one contract into a quantity. IFinancialInstrumentQuantity15Choice - Optional 0..1
UnderlyingFinancialInstrumentIdentification Identification of the underlying security. SecurityIdentification20 - Unknown 0..0
FinancialInstrumentAttributeAdditionalDetails Provides additional information about the financial instrument in narrative form. IsoRestrictedFINXMax350Text - Optional 0..1

QuantityAndAccountDetails building block

Details related to the account and quantity involved in the transaction. Details on the quantity, account and other related information involved in a transaction. For comparison, see the ISO20022 official specification

classDiagram
   direction tb
%% QuantityAndAccount47 recursion level 0 with max 1
class QuantityAndAccount47{
    DenominationChoice IsoRestrictedFINXMax210Text
}
QuantityAndAccount47 *-- "1..1" IQuantity10Choice : SettlementQuantity
QuantityAndAccount47 *-- "0..1" PartyIdentification109 : AccountOwner
QuantityAndAccount47 *-- "1..1" SecuritiesAccount30 : SafekeepingAccount
QuantityAndAccount47 *-- "0..1" ICashAccountIdentification6Choice : CashAccount
QuantityAndAccount47 *-- "0..1" SafeKeepingPlace2 : SafekeepingPlace
QuantityAndAccount47 *-- "0..0" QuantityBreakdown38 : QuantityBreakdown
%% IQuantity10Choice recursion level 1 with max 1
%% PartyIdentification109 recursion level 1 with max 1
class PartyIdentification109{
    LEI IsoLEIIdentifier
}
PartyIdentification109 *-- "1..1" IPartyIdentification114Choice : Identification
%% SecuritiesAccount30 recursion level 1 with max 1
class SecuritiesAccount30{
    Identification IsoRestrictedFINXMax35Text
    Name IsoMax70Text
}
SecuritiesAccount30 *-- "0..1" GenericIdentification47 : Type
%% ICashAccountIdentification6Choice recursion level 1 with max 1
%% SafeKeepingPlace2 recursion level 1 with max 1
class SafeKeepingPlace2{
    LEI IsoLEIIdentifier
}
SafeKeepingPlace2 *-- "0..1" ISafekeepingPlaceFormat17Choice : SafekeepingPlaceFormat
%% QuantityBreakdown38 recursion level 1 with max 1
QuantityBreakdown38 *-- "0..1" GenericIdentification39 : LotNumber
QuantityBreakdown38 *-- "0..1" IFinancialInstrumentQuantity15Choice : LotQuantity
QuantityBreakdown38 *-- "0..1" IDateAndDateTimeChoice : LotDateTime
QuantityBreakdown38 *-- "0..1" Price3 : LotPrice
QuantityBreakdown38 *-- "0..1" ITypeOfPrice32Choice : TypeOfPrice
  

QuantityAndAccount47 members

Member name Description Data Type / Multiplicity
SettlementQuantity Total quantity of securities to be settled. IQuantity10Choice - Required 1..1
DenominationChoice Denomination of the security to be received or delivered. IsoRestrictedFINXMax210Text - Optional 0..1
AccountOwner Party that legally owns the account. PartyIdentification109 - Optional 0..1
SafekeepingAccount Account to or from which a securities entry is made. SecuritiesAccount30 - Required 1..1
CashAccount Account to or from which a cash entry is made. ICashAccountIdentification6Choice - Optional 0..1
SafekeepingPlace Place where the securities are safe-kept, physically or notionally. This place can be, for example, a local custodian, a Central Securities Depository (CSD) or an International Central Securities Depository (ICSD). SafeKeepingPlace2 - Optional 0..1
QuantityBreakdown Breakdown of a quantity into lots such as tax lots, instrument series, etc. QuantityBreakdown38 - Unknown 0..0

SecuritiesFinancingDetails building block

Details for the closing of the securities financing transaction. Details of the closing of the securities financing transaction. For comparison, see the ISO20022 official specification

classDiagram
   direction tb
%% SecuritiesFinancingTransactionDetails30 recursion level 0 with max 1
class SecuritiesFinancingTransactionDetails30{
    SecuritiesFinancingTradeIdentification IsoRestrictedFINXMax16Text
    ClosingLegIdentification IsoRestrictedFINXMax16Text
    MaturityDateModification IsoYesNoIndicator
    InterestPayment IsoYesNoIndicator
    TransactionCallDelay IsoExact3NumericText
    TotalNumberOfCollateralInstructions IsoExact3NumericText
    SecondLegNarrative IsoRestrictedFINXMax140Text
}
SecuritiesFinancingTransactionDetails30 *-- "0..1" ITerminationDate5Choice : TerminationDate
SecuritiesFinancingTransactionDetails30 *-- "0..1" IDateAndDateTimeChoice : RateChangeDate
SecuritiesFinancingTransactionDetails30 *-- "0..1" IDateAndDateTimeChoice : EarliestCallBackDate
SecuritiesFinancingTransactionDetails30 *-- "0..1" IDateAndDateTimeChoice : CommissionCalculationDate
SecuritiesFinancingTransactionDetails30 *-- "0..1" IRateType67Choice : RateType
SecuritiesFinancingTransactionDetails30 *-- "0..1" IRevaluationIndicator4Choice : Revaluation
SecuritiesFinancingTransactionDetails30 *-- "0..1" ILegalFramework4Choice : LegalFramework
SecuritiesFinancingTransactionDetails30 *-- "0..1" IInterestComputationMethodFormat5Choice : InterestComputationMethod
SecuritiesFinancingTransactionDetails30 *-- "0..1" RateName2 : VariableRateSupport
SecuritiesFinancingTransactionDetails30 *-- "0..1" Rate2 : RepurchaseRate
SecuritiesFinancingTransactionDetails30 *-- "0..1" Rate2 : StockLoanMargin
SecuritiesFinancingTransactionDetails30 *-- "0..1" Rate2 : SecuritiesHaircut
SecuritiesFinancingTransactionDetails30 *-- "0..1" Rate2 : ChargesRate
SecuritiesFinancingTransactionDetails30 *-- "0..1" IRateOrName2Choice : PricingRate
SecuritiesFinancingTransactionDetails30 *-- "0..1" Rate2 : Spread
SecuritiesFinancingTransactionDetails30 *-- "0..1" AmountAndDirection59 : DealAmount
SecuritiesFinancingTransactionDetails30 *-- "0..1" AmountAndDirection59 : AccruedInterestAmount
SecuritiesFinancingTransactionDetails30 *-- "0..1" AmountAndDirection59 : ForfeitAmount
SecuritiesFinancingTransactionDetails30 *-- "0..1" AmountAndDirection59 : PremiumAmount
SecuritiesFinancingTransactionDetails30 *-- "0..1" AmountAndDirection59 : TerminationAmountPerPieceOfCollateral
SecuritiesFinancingTransactionDetails30 *-- "0..1" AmountAndDirection59 : TerminationTransactionAmount
%% ITerminationDate5Choice recursion level 1 with max 1
%% IDateAndDateTimeChoice recursion level 1 with max 1
%% IDateAndDateTimeChoice recursion level 1 with max 1
%% IDateAndDateTimeChoice recursion level 1 with max 1
%% IRateType67Choice recursion level 1 with max 1
%% IRevaluationIndicator4Choice recursion level 1 with max 1
%% ILegalFramework4Choice recursion level 1 with max 1
%% IInterestComputationMethodFormat5Choice recursion level 1 with max 1
%% RateName2 recursion level 1 with max 1
class RateName2{
    Issuer IsoRestrictedFINXMax8Text
    RateName IsoRestrictedFINXMax24Text
}
%% Rate2 recursion level 1 with max 1
class Rate2{
    Sign IsoPlusOrMinusIndicator
    Rate IsoPercentageRate
}
%% Rate2 recursion level 1 with max 1
class Rate2{
    Sign IsoPlusOrMinusIndicator
    Rate IsoPercentageRate
}
%% Rate2 recursion level 1 with max 1
class Rate2{
    Sign IsoPlusOrMinusIndicator
    Rate IsoPercentageRate
}
%% Rate2 recursion level 1 with max 1
class Rate2{
    Sign IsoPlusOrMinusIndicator
    Rate IsoPercentageRate
}
%% IRateOrName2Choice recursion level 1 with max 1
%% Rate2 recursion level 1 with max 1
class Rate2{
    Sign IsoPlusOrMinusIndicator
    Rate IsoPercentageRate
}
%% AmountAndDirection59 recursion level 1 with max 1
class AmountAndDirection59{
    Amount IsoRestrictedFINActiveOrHistoricCurrencyAndAmount
    CreditDebitIndicator CreditDebitCode
}
%% AmountAndDirection59 recursion level 1 with max 1
class AmountAndDirection59{
    Amount IsoRestrictedFINActiveOrHistoricCurrencyAndAmount
    CreditDebitIndicator CreditDebitCode
}
%% AmountAndDirection59 recursion level 1 with max 1
class AmountAndDirection59{
    Amount IsoRestrictedFINActiveOrHistoricCurrencyAndAmount
    CreditDebitIndicator CreditDebitCode
}
%% AmountAndDirection59 recursion level 1 with max 1
class AmountAndDirection59{
    Amount IsoRestrictedFINActiveOrHistoricCurrencyAndAmount
    CreditDebitIndicator CreditDebitCode
}
%% AmountAndDirection59 recursion level 1 with max 1
class AmountAndDirection59{
    Amount IsoRestrictedFINActiveOrHistoricCurrencyAndAmount
    CreditDebitIndicator CreditDebitCode
}
%% AmountAndDirection59 recursion level 1 with max 1
class AmountAndDirection59{
    Amount IsoRestrictedFINActiveOrHistoricCurrencyAndAmount
    CreditDebitIndicator CreditDebitCode
}
  

SecuritiesFinancingTransactionDetails30 members

Member name Description Data Type / Multiplicity
SecuritiesFinancingTradeIdentification Unambiguous identification of the underlying securities financing trade as assigned by the instructing party. The identification is common to all collateral pieces (one or many). IsoRestrictedFINXMax16Text - Optional 0..1
ClosingLegIdentification Unambiguous identification of the second leg of the transaction as known by the account owner (or the instructing party acting on its behalf). IsoRestrictedFINXMax16Text - Optional 0..1
TerminationDate Closing date/time or maturity date/time of the transaction. ITerminationDate5Choice - Optional 0..1
RateChangeDate Date/Time at which rate change has taken place. IDateAndDateTimeChoice - Optional 0..1
EarliestCallBackDate Earliest date/time at which the call back can take place. IDateAndDateTimeChoice - Optional 0..1
CommissionCalculationDate Date/time at which the commission is calculated. IDateAndDateTimeChoice - Optional 0..1
RateType Specifies whether the rate is fixed or variable. IRateType67Choice - Optional 0..1
Revaluation Specifies whether the collateral position should be subject to automatic revaluation by the account servicer. IRevaluationIndicator4Choice - Optional 0..1
LegalFramework Legal framework of the transaction. ILegalFramework4Choice - Optional 0..1
InterestComputationMethod Identifies the computation method of accrued interest of the related financial instrument. IInterestComputationMethodFormat5Choice - Optional 0..1
MaturityDateModification Specifies whether the maturity date of the securities financing transaction may be modified. IsoYesNoIndicator - Optional 0..1
InterestPayment Specifies whether the interest is to be paid to the collateral taker. If set to no, the interest is paid to the collateral giver. IsoYesNoIndicator - Optional 0..1
VariableRateSupport Index or support rate used together with the spread to calculate the repurchase rate.
RepurchaseRate Rate to be used to recalculate the repurchase amount. Rate2 - Optional 0..1
StockLoanMargin Percentage mark-up on a loan consideration used to reflect the lender’s risk. Rate2 - Optional 0..1
SecuritiesHaircut Haircut or valuation factor on the security expressed as a percentage. Rate2 - Optional 0..1
ChargesRate Interest rate paid in the context of a securities financing transaction. Rate2 - Optional 0..1
PricingRate Interest rate to be paid on the transaction amount, as agreed between the counterparties. IRateOrName2Choice - Optional 0..1
Spread Repurchase spread expressed as a rate; margin over or under an index that determines the repurchase rate. Rate2 - Optional 0..1
TransactionCallDelay Minimum number of days’ notice a counterparty needs for terminating the transaction. IsoExact3NumericText - Optional 0..1
TotalNumberOfCollateralInstructions Total number of collateral instructions involved in the transaction. IsoExact3NumericText - Optional 0..1
DealAmount Principal amount of a trade (for second leg). AmountAndDirection59 - Optional 0..1
AccruedInterestAmount Interest amount that has accrued in between coupon payment periods. AmountAndDirection59 - Optional 0..1
ForfeitAmount Fixed amount of money that has to be paid (instead of interest) in the case of a recall or at the closing date. AmountAndDirection59 - Optional 0..1
PremiumAmount Difference between the amount of money of the first leg and the amount of the second leg of the transaction. AmountAndDirection59 - Optional 0..1
TerminationAmountPerPieceOfCollateral Amount of money to be settled per piece of collateral to terminate the transaction. AmountAndDirection59 - Optional 0..1
TerminationTransactionAmount Total amount of money to be settled to terminate the transaction. AmountAndDirection59 - Optional 0..1
SecondLegNarrative Provides additional information about the second leg in narrative form. IsoRestrictedFINXMax140Text - Optional 0..1

SettlementParameters building block

Parameters which explicitly state the conditions that must be fulfilled before a particular transaction of a financial instrument can be settled. These parameters are defined by the instructing party in compliance with settlement rules in the market the transaction will settle in. Details of settlement of a transaction. For comparison, see the ISO20022 official specification

classDiagram
   direction tb
%% SettlementDetails105 recursion level 0 with max 1
class SettlementDetails105{
    HoldIndicator IsoYesNoIndicator
    PartialSettlementIndicator SettlementTransactionCondition5Code
    EligibleForCollateral IsoYesNoIndicator
}
SettlementDetails105 *-- "0..1" IPriorityNumeric5Choice : Priority
SettlementDetails105 *-- "0..0" ISettlementTransactionCondition22Choice : SettlementTransactionCondition
SettlementDetails105 *-- "0..1" ISettlingCapacity8Choice : SettlingCapacity
SettlementDetails105 *-- "0..1" GenericIdentification47 : StampDutyTaxBasis
SettlementDetails105 *-- "0..1" ISecuritiesRTGS5Choice : SecuritiesRTGS
SettlementDetails105 *-- "0..1" IBeneficialOwnership5Choice : BeneficialOwnership
SettlementDetails105 *-- "0..1" ICashSettlementSystem5Choice : CashClearingSystem
SettlementDetails105 *-- "0..1" ITaxCapacityParty5Choice : TaxCapacity
SettlementDetails105 *-- "0..1" IMarketClientSide5Choice : MarketClientSide
SettlementDetails105 *-- "0..1" IFXStandingInstruction5Choice : FXStandingInstruction
SettlementDetails105 *-- "0..1" IBlockTrade5Choice : BlockTrade
SettlementDetails105 *-- "0..1" IRestriction6Choice : LegalRestrictions
SettlementDetails105 *-- "0..1" ISettlementSystemMethod5Choice : SettlementSystemMethod
SettlementDetails105 *-- "0..1" INettingEligibility5Choice : NettingEligibility
SettlementDetails105 *-- "0..1" ICentralCounterPartyEligibility5Choice : CCPEligibility
SettlementDetails105 *-- "0..1" ITracking5Choice : Tracking
SettlementDetails105 *-- "0..1" IAutomaticBorrowing8Choice : AutomaticBorrowing
%% IPriorityNumeric5Choice recursion level 1 with max 1
%% ISettlementTransactionCondition22Choice recursion level 1 with max 1
%% ISettlingCapacity8Choice recursion level 1 with max 1
%% GenericIdentification47 recursion level 1 with max 1
class GenericIdentification47{
    Identification IsoExact4AlphaNumericText
    Issuer IsoMax4AlphaNumericText
    SchemeName IsoMax4AlphaNumericText
}
%% ISecuritiesRTGS5Choice recursion level 1 with max 1
%% IBeneficialOwnership5Choice recursion level 1 with max 1
%% ICashSettlementSystem5Choice recursion level 1 with max 1
%% ITaxCapacityParty5Choice recursion level 1 with max 1
%% IMarketClientSide5Choice recursion level 1 with max 1
%% IFXStandingInstruction5Choice recursion level 1 with max 1
%% IBlockTrade5Choice recursion level 1 with max 1
%% IRestriction6Choice recursion level 1 with max 1
%% ISettlementSystemMethod5Choice recursion level 1 with max 1
%% INettingEligibility5Choice recursion level 1 with max 1
%% ICentralCounterPartyEligibility5Choice recursion level 1 with max 1
%% ITracking5Choice recursion level 1 with max 1
%% IAutomaticBorrowing8Choice recursion level 1 with max 1
  

SettlementDetails105 members

Member name Description Data Type / Multiplicity
HoldIndicator Specifies whether the transaction is on hold/blocked/frozen. IsoYesNoIndicator - Optional 0..1
Priority Specifies whether the transaction is to be executed with a high priority. IPriorityNumeric5Choice - Optional 0..1
SettlementTransactionCondition Conditions under which the order/trade is to be settled. ISettlementTransactionCondition22Choice - Unknown 0..0
SettlingCapacity Role of a party in the settlement of the transaction. ISettlingCapacity8Choice - Optional 0..1
StampDutyTaxBasis Specifies the stamp duty type or exemption reason applicable to the settlement transaction. GenericIdentification47 - Optional 0..1
SecuritiesRTGS Specifies whether the settlement transaction is to be settled through an RTGS or a non RTGS system. ISecuritiesRTGS5Choice - Optional 0..1
BeneficialOwnership Specifies whether there is change of beneficial ownership. IBeneficialOwnership5Choice - Optional 0..1
CashClearingSystem Specifies the category of cash clearing system, for example, cheque clearing. ICashSettlementSystem5Choice - Optional 0..1
TaxCapacity Tax role capacity of the instructing party. ITaxCapacityParty5Choice - Optional 0..1
MarketClientSide Specifies if an instruction is for a market side or a client side transaction. IMarketClientSide5Choice - Optional 0..1
FXStandingInstruction Specifies whether the foreign exchange standing instruction in place should apply. IFXStandingInstruction5Choice - Optional 0..1
BlockTrade Specifies whether the settlement instruction is a block parent or child. IBlockTrade5Choice - Optional 0..1
LegalRestrictions Regulatory restrictions applicable to a security. IRestriction6Choice - Optional 0..1
SettlementSystemMethod Specifies whether the settlement instruction is to be settled through the default or the alternate settlement system. ISettlementSystemMethod5Choice - Optional 0..1
NettingEligibility Specifies whether the settlement transaction is eligible for netting. INettingEligibility5Choice - Optional 0..1
CCPEligibility Specifies whether the settlement transaction is CCP (Central Counterparty) eligible. ICentralCounterPartyEligibility5Choice - Optional 0..1
Tracking Specifies whether the loan and/or collateral is tracked. ITracking5Choice - Optional 0..1
AutomaticBorrowing Condition for automatic borrowing. IAutomaticBorrowing8Choice - Optional 0..1
PartialSettlementIndicator Specifies whether partial settlement is allowed. SettlementTransactionCondition5Code - Optional 0..1
EligibleForCollateral Specifies whether securities should be included in the pool of securities eligible for collateral purposes. IsoYesNoIndicator - Optional 0..1

StandingSettlementInstructionDetails building block

Specifies what settlement standing instruction database is to be used to derive the settlement parties involved in the transaction. Details of the standing settlement instruction to be applied. For comparison, see the ISO20022 official specification

classDiagram
   direction tb
%% StandingSettlementInstruction12 recursion level 0 with max 1
StandingSettlementInstruction12 *-- "1..1" ISettlementStandingInstructionDatabase5Choice : SettlementStandingInstructionDatabase
StandingSettlementInstruction12 *-- "1..1" ICounterparty10Choice : Counterparty
StandingSettlementInstruction12 *-- "0..1" PartyIdentification111 : Vendor
StandingSettlementInstruction12 *-- "0..1" SettlementParties44 : OtherDeliveringSettlementParties
StandingSettlementInstruction12 *-- "0..1" SettlementParties44 : OtherReceivingSettlementParties
%% ISettlementStandingInstructionDatabase5Choice recursion level 1 with max 1
%% ICounterparty10Choice recursion level 1 with max 1
%% PartyIdentification111 recursion level 1 with max 1
class PartyIdentification111{
    LEI IsoLEIIdentifier
}
PartyIdentification111 *-- "1..1" IPartyIdentification104Choice : Identification
%% SettlementParties44 recursion level 1 with max 1
SettlementParties44 *-- "0..1" PartyIdentification103 : Depository
SettlementParties44 *-- "0..1" PartyIdentificationAndAccount131 : Party1
SettlementParties44 *-- "0..1" PartyIdentificationAndAccount131 : Party2
SettlementParties44 *-- "0..1" PartyIdentificationAndAccount131 : Party3
SettlementParties44 *-- "0..1" PartyIdentificationAndAccount131 : Party4
SettlementParties44 *-- "0..1" PartyIdentificationAndAccount131 : Party5
%% SettlementParties44 recursion level 1 with max 1
SettlementParties44 *-- "0..1" PartyIdentification103 : Depository
SettlementParties44 *-- "0..1" PartyIdentificationAndAccount131 : Party1
SettlementParties44 *-- "0..1" PartyIdentificationAndAccount131 : Party2
SettlementParties44 *-- "0..1" PartyIdentificationAndAccount131 : Party3
SettlementParties44 *-- "0..1" PartyIdentificationAndAccount131 : Party4
SettlementParties44 *-- "0..1" PartyIdentificationAndAccount131 : Party5
  

StandingSettlementInstruction12 members

Member name Description Data Type / Multiplicity
SettlementStandingInstructionDatabase Specifies what settlement standing instruction database is to be used to derive the settlement parties involved in the transaction. ISettlementStandingInstructionDatabase5Choice - Required 1..1
Counterparty Identification of the buyer or seller in a standing settlement instruction enabling to derive the Standing Settlement Instruction. ICounterparty10Choice - Required 1..1
Vendor Vendor of the Settlement Standing Instruction database requested to be consulted. PartyIdentification111 - Optional 0..1
OtherDeliveringSettlementParties Delivering parties, other than the seller, needed for deriving the standing settlement instruction (for example, depository) or provided for information purposes (for example, instructing party settlement chain). SettlementParties44 - Optional 0..1
OtherReceivingSettlementParties Receiving parties, other than the buyer, needed for deriving the standing settlement instruction (for example, depository) or provided for information purposes (for example, instructing party settlement chain). SettlementParties44 - Optional 0..1

DeliveringSettlementParties building block

Identifies the chain of delivering settlement parties. Chain of parties involved in the settlement of a transaction, including receipts and deliveries, book transfers, treasury deals, or other activities, resulting in the movement of a security or amount of money from one account to another. For comparison, see the ISO20022 official specification

classDiagram
   direction tb
%% SettlementParties44 recursion level 0 with max 1
SettlementParties44 *-- "0..1" PartyIdentification103 : Depository
SettlementParties44 *-- "0..1" PartyIdentificationAndAccount131 : Party1
SettlementParties44 *-- "0..1" PartyIdentificationAndAccount131 : Party2
SettlementParties44 *-- "0..1" PartyIdentificationAndAccount131 : Party3
SettlementParties44 *-- "0..1" PartyIdentificationAndAccount131 : Party4
SettlementParties44 *-- "0..1" PartyIdentificationAndAccount131 : Party5
%% PartyIdentification103 recursion level 1 with max 1
class PartyIdentification103{
    LEI IsoLEIIdentifier
    ProcessingIdentification IsoRestrictedFINXMax16Text
}
PartyIdentification103 *-- "1..1" IPartyIdentification58Choice : Identification
PartyIdentification103 *-- "0..1" AlternatePartyIdentification9 : AlternateIdentification
PartyIdentification103 *-- "0..1" IDateAndDateTimeChoice : ProcessingDate
PartyIdentification103 *-- "0..1" PartyTextInformation3 : AdditionalInformation
%% PartyIdentificationAndAccount131 recursion level 1 with max 1
class PartyIdentificationAndAccount131{
    LEI IsoLEIIdentifier
    ProcessingIdentification IsoRestrictedFINXMax16Text
}
PartyIdentificationAndAccount131 *-- "1..1" IPartyIdentification104Choice : Identification
PartyIdentificationAndAccount131 *-- "0..1" AlternatePartyIdentification9 : AlternateIdentification
PartyIdentificationAndAccount131 *-- "0..1" SecuritiesAccount27 : SafekeepingAccount
PartyIdentificationAndAccount131 *-- "0..1" IDateAndDateTimeChoice : ProcessingDate
PartyIdentificationAndAccount131 *-- "0..1" PartyTextInformation3 : AdditionalInformation
%% PartyIdentificationAndAccount131 recursion level 1 with max 1
class PartyIdentificationAndAccount131{
    LEI IsoLEIIdentifier
    ProcessingIdentification IsoRestrictedFINXMax16Text
}
PartyIdentificationAndAccount131 *-- "1..1" IPartyIdentification104Choice : Identification
PartyIdentificationAndAccount131 *-- "0..1" AlternatePartyIdentification9 : AlternateIdentification
PartyIdentificationAndAccount131 *-- "0..1" SecuritiesAccount27 : SafekeepingAccount
PartyIdentificationAndAccount131 *-- "0..1" IDateAndDateTimeChoice : ProcessingDate
PartyIdentificationAndAccount131 *-- "0..1" PartyTextInformation3 : AdditionalInformation
%% PartyIdentificationAndAccount131 recursion level 1 with max 1
class PartyIdentificationAndAccount131{
    LEI IsoLEIIdentifier
    ProcessingIdentification IsoRestrictedFINXMax16Text
}
PartyIdentificationAndAccount131 *-- "1..1" IPartyIdentification104Choice : Identification
PartyIdentificationAndAccount131 *-- "0..1" AlternatePartyIdentification9 : AlternateIdentification
PartyIdentificationAndAccount131 *-- "0..1" SecuritiesAccount27 : SafekeepingAccount
PartyIdentificationAndAccount131 *-- "0..1" IDateAndDateTimeChoice : ProcessingDate
PartyIdentificationAndAccount131 *-- "0..1" PartyTextInformation3 : AdditionalInformation
%% PartyIdentificationAndAccount131 recursion level 1 with max 1
class PartyIdentificationAndAccount131{
    LEI IsoLEIIdentifier
    ProcessingIdentification IsoRestrictedFINXMax16Text
}
PartyIdentificationAndAccount131 *-- "1..1" IPartyIdentification104Choice : Identification
PartyIdentificationAndAccount131 *-- "0..1" AlternatePartyIdentification9 : AlternateIdentification
PartyIdentificationAndAccount131 *-- "0..1" SecuritiesAccount27 : SafekeepingAccount
PartyIdentificationAndAccount131 *-- "0..1" IDateAndDateTimeChoice : ProcessingDate
PartyIdentificationAndAccount131 *-- "0..1" PartyTextInformation3 : AdditionalInformation
%% PartyIdentificationAndAccount131 recursion level 1 with max 1
class PartyIdentificationAndAccount131{
    LEI IsoLEIIdentifier
    ProcessingIdentification IsoRestrictedFINXMax16Text
}
PartyIdentificationAndAccount131 *-- "1..1" IPartyIdentification104Choice : Identification
PartyIdentificationAndAccount131 *-- "0..1" AlternatePartyIdentification9 : AlternateIdentification
PartyIdentificationAndAccount131 *-- "0..1" SecuritiesAccount27 : SafekeepingAccount
PartyIdentificationAndAccount131 *-- "0..1" IDateAndDateTimeChoice : ProcessingDate
PartyIdentificationAndAccount131 *-- "0..1" PartyTextInformation3 : AdditionalInformation
  

SettlementParties44 members

Member name Description Data Type / Multiplicity
Depository First party in the settlement chain. In a plain vanilla settlement, it is the Central Securities Depository where the counterparty requests to receive the financial instrument or from where the counterparty delivers the financial instruments. PartyIdentification103 - Optional 0..1
Party1 Party that, in a settlement chain interacts with the depository. PartyIdentificationAndAccount131 - Optional 0..1
Party2 Party that, in a settlement chain interacts with the party 1. PartyIdentificationAndAccount131 - Optional 0..1
Party3 Party that, in a settlement chain interacts with the party 2. PartyIdentificationAndAccount131 - Optional 0..1
Party4 Party that, in a settlement chain interacts with the party 3. PartyIdentificationAndAccount131 - Optional 0..1
Party5 Party that, in a settlement chain interacts with the party 4. PartyIdentificationAndAccount131 - Optional 0..1

ReceivingSettlementParties building block

Identifies the chain of receiving settlement parties. Chain of parties involved in the settlement of a transaction, including receipts and deliveries, book transfers, treasury deals, or other activities, resulting in the movement of a security or amount of money from one account to another. For comparison, see the ISO20022 official specification

classDiagram
   direction tb
%% SettlementParties44 recursion level 0 with max 1
SettlementParties44 *-- "0..1" PartyIdentification103 : Depository
SettlementParties44 *-- "0..1" PartyIdentificationAndAccount131 : Party1
SettlementParties44 *-- "0..1" PartyIdentificationAndAccount131 : Party2
SettlementParties44 *-- "0..1" PartyIdentificationAndAccount131 : Party3
SettlementParties44 *-- "0..1" PartyIdentificationAndAccount131 : Party4
SettlementParties44 *-- "0..1" PartyIdentificationAndAccount131 : Party5
%% PartyIdentification103 recursion level 1 with max 1
class PartyIdentification103{
    LEI IsoLEIIdentifier
    ProcessingIdentification IsoRestrictedFINXMax16Text
}
PartyIdentification103 *-- "1..1" IPartyIdentification58Choice : Identification
PartyIdentification103 *-- "0..1" AlternatePartyIdentification9 : AlternateIdentification
PartyIdentification103 *-- "0..1" IDateAndDateTimeChoice : ProcessingDate
PartyIdentification103 *-- "0..1" PartyTextInformation3 : AdditionalInformation
%% PartyIdentificationAndAccount131 recursion level 1 with max 1
class PartyIdentificationAndAccount131{
    LEI IsoLEIIdentifier
    ProcessingIdentification IsoRestrictedFINXMax16Text
}
PartyIdentificationAndAccount131 *-- "1..1" IPartyIdentification104Choice : Identification
PartyIdentificationAndAccount131 *-- "0..1" AlternatePartyIdentification9 : AlternateIdentification
PartyIdentificationAndAccount131 *-- "0..1" SecuritiesAccount27 : SafekeepingAccount
PartyIdentificationAndAccount131 *-- "0..1" IDateAndDateTimeChoice : ProcessingDate
PartyIdentificationAndAccount131 *-- "0..1" PartyTextInformation3 : AdditionalInformation
%% PartyIdentificationAndAccount131 recursion level 1 with max 1
class PartyIdentificationAndAccount131{
    LEI IsoLEIIdentifier
    ProcessingIdentification IsoRestrictedFINXMax16Text
}
PartyIdentificationAndAccount131 *-- "1..1" IPartyIdentification104Choice : Identification
PartyIdentificationAndAccount131 *-- "0..1" AlternatePartyIdentification9 : AlternateIdentification
PartyIdentificationAndAccount131 *-- "0..1" SecuritiesAccount27 : SafekeepingAccount
PartyIdentificationAndAccount131 *-- "0..1" IDateAndDateTimeChoice : ProcessingDate
PartyIdentificationAndAccount131 *-- "0..1" PartyTextInformation3 : AdditionalInformation
%% PartyIdentificationAndAccount131 recursion level 1 with max 1
class PartyIdentificationAndAccount131{
    LEI IsoLEIIdentifier
    ProcessingIdentification IsoRestrictedFINXMax16Text
}
PartyIdentificationAndAccount131 *-- "1..1" IPartyIdentification104Choice : Identification
PartyIdentificationAndAccount131 *-- "0..1" AlternatePartyIdentification9 : AlternateIdentification
PartyIdentificationAndAccount131 *-- "0..1" SecuritiesAccount27 : SafekeepingAccount
PartyIdentificationAndAccount131 *-- "0..1" IDateAndDateTimeChoice : ProcessingDate
PartyIdentificationAndAccount131 *-- "0..1" PartyTextInformation3 : AdditionalInformation
%% PartyIdentificationAndAccount131 recursion level 1 with max 1
class PartyIdentificationAndAccount131{
    LEI IsoLEIIdentifier
    ProcessingIdentification IsoRestrictedFINXMax16Text
}
PartyIdentificationAndAccount131 *-- "1..1" IPartyIdentification104Choice : Identification
PartyIdentificationAndAccount131 *-- "0..1" AlternatePartyIdentification9 : AlternateIdentification
PartyIdentificationAndAccount131 *-- "0..1" SecuritiesAccount27 : SafekeepingAccount
PartyIdentificationAndAccount131 *-- "0..1" IDateAndDateTimeChoice : ProcessingDate
PartyIdentificationAndAccount131 *-- "0..1" PartyTextInformation3 : AdditionalInformation
%% PartyIdentificationAndAccount131 recursion level 1 with max 1
class PartyIdentificationAndAccount131{
    LEI IsoLEIIdentifier
    ProcessingIdentification IsoRestrictedFINXMax16Text
}
PartyIdentificationAndAccount131 *-- "1..1" IPartyIdentification104Choice : Identification
PartyIdentificationAndAccount131 *-- "0..1" AlternatePartyIdentification9 : AlternateIdentification
PartyIdentificationAndAccount131 *-- "0..1" SecuritiesAccount27 : SafekeepingAccount
PartyIdentificationAndAccount131 *-- "0..1" IDateAndDateTimeChoice : ProcessingDate
PartyIdentificationAndAccount131 *-- "0..1" PartyTextInformation3 : AdditionalInformation
  

SettlementParties44 members

Member name Description Data Type / Multiplicity
Depository First party in the settlement chain. In a plain vanilla settlement, it is the Central Securities Depository where the counterparty requests to receive the financial instrument or from where the counterparty delivers the financial instruments. PartyIdentification103 - Optional 0..1
Party1 Party that, in a settlement chain interacts with the depository. PartyIdentificationAndAccount131 - Optional 0..1
Party2 Party that, in a settlement chain interacts with the party 1. PartyIdentificationAndAccount131 - Optional 0..1
Party3 Party that, in a settlement chain interacts with the party 2. PartyIdentificationAndAccount131 - Optional 0..1
Party4 Party that, in a settlement chain interacts with the party 3. PartyIdentificationAndAccount131 - Optional 0..1
Party5 Party that, in a settlement chain interacts with the party 4. PartyIdentificationAndAccount131 - Optional 0..1

CashParties building block

Cash parties involved in the transaction if different for the securities settlement parties. Payment processes required to transfer cash from the debtor to the creditor. For comparison, see the ISO20022 official specification

classDiagram
   direction tb
%% CashParties30 recursion level 0 with max 1
CashParties30 *-- "0..1" PartyIdentificationAndAccount133 : Debtor
CashParties30 *-- "0..1" PartyIdentificationAndAccount134 : DebtorAgent
CashParties30 *-- "0..1" PartyIdentificationAndAccount133 : Creditor
CashParties30 *-- "0..1" PartyIdentificationAndAccount134 : CreditorAgent
CashParties30 *-- "0..1" PartyIdentificationAndAccount134 : Intermediary
%% PartyIdentificationAndAccount133 recursion level 1 with max 1
class PartyIdentificationAndAccount133{
    LEI IsoLEIIdentifier
}
PartyIdentificationAndAccount133 *-- "1..1" IPartyIdentification104Choice : Identification
PartyIdentificationAndAccount133 *-- "0..1" AlternatePartyIdentification9 : AlternateIdentification
PartyIdentificationAndAccount133 *-- "0..1" ICashAccountIdentification6Choice : CashAccount
PartyIdentificationAndAccount133 *-- "0..1" ICashAccountIdentification6Choice : ChargesAccount
PartyIdentificationAndAccount133 *-- "0..1" ICashAccountIdentification6Choice : CommissionAccount
PartyIdentificationAndAccount133 *-- "0..1" ICashAccountIdentification6Choice : TaxAccount
PartyIdentificationAndAccount133 *-- "0..1" PartyTextInformation4 : AdditionalInformation
%% PartyIdentificationAndAccount134 recursion level 1 with max 1
class PartyIdentificationAndAccount134{
    LEI IsoLEIIdentifier
}
PartyIdentificationAndAccount134 *-- "1..1" IPartyIdentification113Choice : Identification
PartyIdentificationAndAccount134 *-- "0..1" AlternatePartyIdentification9 : AlternateIdentification
PartyIdentificationAndAccount134 *-- "0..1" ICashAccountIdentification6Choice : CashAccount
PartyIdentificationAndAccount134 *-- "0..1" ICashAccountIdentification6Choice : ChargesAccount
PartyIdentificationAndAccount134 *-- "0..1" ICashAccountIdentification6Choice : CommissionAccount
PartyIdentificationAndAccount134 *-- "0..1" ICashAccountIdentification6Choice : TaxAccount
PartyIdentificationAndAccount134 *-- "0..1" PartyTextInformation4 : AdditionalInformation
%% PartyIdentificationAndAccount133 recursion level 1 with max 1
class PartyIdentificationAndAccount133{
    LEI IsoLEIIdentifier
}
PartyIdentificationAndAccount133 *-- "1..1" IPartyIdentification104Choice : Identification
PartyIdentificationAndAccount133 *-- "0..1" AlternatePartyIdentification9 : AlternateIdentification
PartyIdentificationAndAccount133 *-- "0..1" ICashAccountIdentification6Choice : CashAccount
PartyIdentificationAndAccount133 *-- "0..1" ICashAccountIdentification6Choice : ChargesAccount
PartyIdentificationAndAccount133 *-- "0..1" ICashAccountIdentification6Choice : CommissionAccount
PartyIdentificationAndAccount133 *-- "0..1" ICashAccountIdentification6Choice : TaxAccount
PartyIdentificationAndAccount133 *-- "0..1" PartyTextInformation4 : AdditionalInformation
%% PartyIdentificationAndAccount134 recursion level 1 with max 1
class PartyIdentificationAndAccount134{
    LEI IsoLEIIdentifier
}
PartyIdentificationAndAccount134 *-- "1..1" IPartyIdentification113Choice : Identification
PartyIdentificationAndAccount134 *-- "0..1" AlternatePartyIdentification9 : AlternateIdentification
PartyIdentificationAndAccount134 *-- "0..1" ICashAccountIdentification6Choice : CashAccount
PartyIdentificationAndAccount134 *-- "0..1" ICashAccountIdentification6Choice : ChargesAccount
PartyIdentificationAndAccount134 *-- "0..1" ICashAccountIdentification6Choice : CommissionAccount
PartyIdentificationAndAccount134 *-- "0..1" ICashAccountIdentification6Choice : TaxAccount
PartyIdentificationAndAccount134 *-- "0..1" PartyTextInformation4 : AdditionalInformation
%% PartyIdentificationAndAccount134 recursion level 1 with max 1
class PartyIdentificationAndAccount134{
    LEI IsoLEIIdentifier
}
PartyIdentificationAndAccount134 *-- "1..1" IPartyIdentification113Choice : Identification
PartyIdentificationAndAccount134 *-- "0..1" AlternatePartyIdentification9 : AlternateIdentification
PartyIdentificationAndAccount134 *-- "0..1" ICashAccountIdentification6Choice : CashAccount
PartyIdentificationAndAccount134 *-- "0..1" ICashAccountIdentification6Choice : ChargesAccount
PartyIdentificationAndAccount134 *-- "0..1" ICashAccountIdentification6Choice : CommissionAccount
PartyIdentificationAndAccount134 *-- "0..1" ICashAccountIdentification6Choice : TaxAccount
PartyIdentificationAndAccount134 *-- "0..1" PartyTextInformation4 : AdditionalInformation
  

CashParties30 members

Member name Description Data Type / Multiplicity
Debtor Party that owes an amount of money to the (ultimate) creditor. PartyIdentificationAndAccount133 - Optional 0..1
DebtorAgent Financial institution servicing an account for the debtor. PartyIdentificationAndAccount134 - Optional 0..1
Creditor Party to which an amount of money is due. PartyIdentificationAndAccount133 - Optional 0..1
CreditorAgent Financial institution servicing an account for the creditor. PartyIdentificationAndAccount134 - Optional 0..1
Intermediary Financial institution through which the transaction must pass to reach the account with institution. PartyIdentificationAndAccount134 - Optional 0..1

OpeningSettlementAmount building block

Total amount of money to be paid or received in exchange for the securities at the opening of a securities financing transaction. Posting of an item to a cash account, in the context of a cash transaction, that results in an increase or decrease to the balance of the account. For comparison, see the ISO20022 official specification

classDiagram
   direction tb
%% AmountAndDirection60 recursion level 0 with max 1
class AmountAndDirection60{
    AccruedInterestIndicator IsoYesNoIndicator
    StampDutyIndicator IsoYesNoIndicator
    BrokerageAmountIndicator IsoYesNoIndicator
    Amount IsoRestrictedFINActiveCurrencyAndAmount
    CreditDebitIndicator CreditDebitCode
    OriginalCurrencyAndOrderedAmount IsoRestrictedFINActiveOrHistoricCurrencyAndAmount
}
AmountAndDirection60 *-- "0..1" ForeignExchangeTerms27 : ForeignExchangeDetails
AmountAndDirection60 *-- "0..1" IDateAndDateTimeChoice : ValueDate
%% ForeignExchangeTerms27 recursion level 1 with max 1
class ForeignExchangeTerms27{
    UnitCurrency ActiveCurrencyCode
    QuotedCurrency ActiveCurrencyCode
    ExchangeRate IsoBaseOneRate
    ResultingAmount IsoRestrictedFINActiveCurrencyAndAmount
}
%% IDateAndDateTimeChoice recursion level 1 with max 1
  

AmountAndDirection60 members

Member name Description Data Type / Multiplicity
AccruedInterestIndicator Indicates whether the net proceeds include interest accrued on the financial instrument. IsoYesNoIndicator - Optional 0..1
StampDutyIndicator Whether the net proceeds include stamp duty amount. IsoYesNoIndicator - Optional 0..1
BrokerageAmountIndicator Indicates whether the net proceeds include brokerage fees for the transaction. If absent, element is not required. IsoYesNoIndicator - Optional 0..1
Amount Amount of money in the cash entry. IsoRestrictedFINActiveCurrencyAndAmount - Required 1..1
CreditDebitIndicator Indicates whether an entry is a credit or a debit. CreditDebitCode - Required 1..1
OriginalCurrencyAndOrderedAmount Posting/settlement amount in its original currency when conversion from/into another currency has occurred. IsoRestrictedFINActiveOrHistoricCurrencyAndAmount - Optional 0..1
ForeignExchangeDetails Information needed to process a currency exchange or conversion. ForeignExchangeTerms27 - Optional 0..1
ValueDate Date and time at which the cash is at the disposal of the credit account owner, or ceases to be at the disposal of the debit account owner. IDateAndDateTimeChoice - Optional 0..1

OtherAmounts building block

Other amounts than the settlement amount. Identifies other amounts pertaining to the transaction. For comparison, see the ISO20022 official specification

classDiagram
   direction tb
%% OtherAmounts35 recursion level 0 with max 1
OtherAmounts35 *-- "0..1" AmountAndDirection58 : AccruedInterestAmount
OtherAmounts35 *-- "0..1" AmountAndDirection58 : ChargesFees
OtherAmounts35 *-- "0..1" AmountAndDirection58 : CountryNationalFederalTax
OtherAmounts35 *-- "0..1" AmountAndDirection58 : TradeAmount
OtherAmounts35 *-- "0..1" AmountAndDirection58 : ExecutingBrokerAmount
OtherAmounts35 *-- "0..1" AmountAndDirection58 : IssueDiscountAllowance
OtherAmounts35 *-- "0..1" AmountAndDirection58 : PaymentLevyTax
OtherAmounts35 *-- "0..1" AmountAndDirection58 : LocalTax
OtherAmounts35 *-- "0..1" AmountAndDirection58 : LocalTaxCountrySpecific
OtherAmounts35 *-- "0..1" AmountAndDirection58 : LocalBrokerCommission
OtherAmounts35 *-- "0..1" AmountAndDirection58 : Margin
OtherAmounts35 *-- "0..1" AmountAndDirection58 : Other
OtherAmounts35 *-- "0..1" AmountAndDirection58 : RegulatoryAmount
OtherAmounts35 *-- "0..1" AmountAndDirection58 : ShippingAmount
OtherAmounts35 *-- "0..1" AmountAndDirection58 : SpecialConcession
OtherAmounts35 *-- "0..1" AmountAndDirection58 : StampDuty
OtherAmounts35 *-- "0..1" AmountAndDirection58 : StockExchangeTax
OtherAmounts35 *-- "0..1" AmountAndDirection58 : TransferTax
OtherAmounts35 *-- "0..1" AmountAndDirection58 : TransactionTax
OtherAmounts35 *-- "0..1" AmountAndDirection58 : ValueAddedTax
OtherAmounts35 *-- "0..1" AmountAndDirection58 : WithholdingTax
OtherAmounts35 *-- "0..1" AmountAndDirection58 : NetGainLoss
OtherAmounts35 *-- "0..1" AmountAndDirection58 : ConsumptionTax
OtherAmounts35 *-- "0..1" AmountAndDirection58 : AccruedCapitalisationAmount
%% AmountAndDirection58 recursion level 1 with max 1
class AmountAndDirection58{
    Amount IsoRestrictedFINActiveOrHistoricCurrencyAndAmount
    CreditDebitIndicator CreditDebitCode
    OriginalCurrencyAndOrderedAmount IsoRestrictedFINActiveOrHistoricCurrencyAndAmount
}
AmountAndDirection58 *-- "0..1" ForeignExchangeTerms27 : ForeignExchangeDetails
%% AmountAndDirection58 recursion level 1 with max 1
class AmountAndDirection58{
    Amount IsoRestrictedFINActiveOrHistoricCurrencyAndAmount
    CreditDebitIndicator CreditDebitCode
    OriginalCurrencyAndOrderedAmount IsoRestrictedFINActiveOrHistoricCurrencyAndAmount
}
AmountAndDirection58 *-- "0..1" ForeignExchangeTerms27 : ForeignExchangeDetails
%% AmountAndDirection58 recursion level 1 with max 1
class AmountAndDirection58{
    Amount IsoRestrictedFINActiveOrHistoricCurrencyAndAmount
    CreditDebitIndicator CreditDebitCode
    OriginalCurrencyAndOrderedAmount IsoRestrictedFINActiveOrHistoricCurrencyAndAmount
}
AmountAndDirection58 *-- "0..1" ForeignExchangeTerms27 : ForeignExchangeDetails
%% AmountAndDirection58 recursion level 1 with max 1
class AmountAndDirection58{
    Amount IsoRestrictedFINActiveOrHistoricCurrencyAndAmount
    CreditDebitIndicator CreditDebitCode
    OriginalCurrencyAndOrderedAmount IsoRestrictedFINActiveOrHistoricCurrencyAndAmount
}
AmountAndDirection58 *-- "0..1" ForeignExchangeTerms27 : ForeignExchangeDetails
%% AmountAndDirection58 recursion level 1 with max 1
class AmountAndDirection58{
    Amount IsoRestrictedFINActiveOrHistoricCurrencyAndAmount
    CreditDebitIndicator CreditDebitCode
    OriginalCurrencyAndOrderedAmount IsoRestrictedFINActiveOrHistoricCurrencyAndAmount
}
AmountAndDirection58 *-- "0..1" ForeignExchangeTerms27 : ForeignExchangeDetails
%% AmountAndDirection58 recursion level 1 with max 1
class AmountAndDirection58{
    Amount IsoRestrictedFINActiveOrHistoricCurrencyAndAmount
    CreditDebitIndicator CreditDebitCode
    OriginalCurrencyAndOrderedAmount IsoRestrictedFINActiveOrHistoricCurrencyAndAmount
}
AmountAndDirection58 *-- "0..1" ForeignExchangeTerms27 : ForeignExchangeDetails
%% AmountAndDirection58 recursion level 1 with max 1
class AmountAndDirection58{
    Amount IsoRestrictedFINActiveOrHistoricCurrencyAndAmount
    CreditDebitIndicator CreditDebitCode
    OriginalCurrencyAndOrderedAmount IsoRestrictedFINActiveOrHistoricCurrencyAndAmount
}
AmountAndDirection58 *-- "0..1" ForeignExchangeTerms27 : ForeignExchangeDetails
%% AmountAndDirection58 recursion level 1 with max 1
class AmountAndDirection58{
    Amount IsoRestrictedFINActiveOrHistoricCurrencyAndAmount
    CreditDebitIndicator CreditDebitCode
    OriginalCurrencyAndOrderedAmount IsoRestrictedFINActiveOrHistoricCurrencyAndAmount
}
AmountAndDirection58 *-- "0..1" ForeignExchangeTerms27 : ForeignExchangeDetails
%% AmountAndDirection58 recursion level 1 with max 1
class AmountAndDirection58{
    Amount IsoRestrictedFINActiveOrHistoricCurrencyAndAmount
    CreditDebitIndicator CreditDebitCode
    OriginalCurrencyAndOrderedAmount IsoRestrictedFINActiveOrHistoricCurrencyAndAmount
}
AmountAndDirection58 *-- "0..1" ForeignExchangeTerms27 : ForeignExchangeDetails
%% AmountAndDirection58 recursion level 1 with max 1
class AmountAndDirection58{
    Amount IsoRestrictedFINActiveOrHistoricCurrencyAndAmount
    CreditDebitIndicator CreditDebitCode
    OriginalCurrencyAndOrderedAmount IsoRestrictedFINActiveOrHistoricCurrencyAndAmount
}
AmountAndDirection58 *-- "0..1" ForeignExchangeTerms27 : ForeignExchangeDetails
%% AmountAndDirection58 recursion level 1 with max 1
class AmountAndDirection58{
    Amount IsoRestrictedFINActiveOrHistoricCurrencyAndAmount
    CreditDebitIndicator CreditDebitCode
    OriginalCurrencyAndOrderedAmount IsoRestrictedFINActiveOrHistoricCurrencyAndAmount
}
AmountAndDirection58 *-- "0..1" ForeignExchangeTerms27 : ForeignExchangeDetails
%% AmountAndDirection58 recursion level 1 with max 1
class AmountAndDirection58{
    Amount IsoRestrictedFINActiveOrHistoricCurrencyAndAmount
    CreditDebitIndicator CreditDebitCode
    OriginalCurrencyAndOrderedAmount IsoRestrictedFINActiveOrHistoricCurrencyAndAmount
}
AmountAndDirection58 *-- "0..1" ForeignExchangeTerms27 : ForeignExchangeDetails
%% AmountAndDirection58 recursion level 1 with max 1
class AmountAndDirection58{
    Amount IsoRestrictedFINActiveOrHistoricCurrencyAndAmount
    CreditDebitIndicator CreditDebitCode
    OriginalCurrencyAndOrderedAmount IsoRestrictedFINActiveOrHistoricCurrencyAndAmount
}
AmountAndDirection58 *-- "0..1" ForeignExchangeTerms27 : ForeignExchangeDetails
%% AmountAndDirection58 recursion level 1 with max 1
class AmountAndDirection58{
    Amount IsoRestrictedFINActiveOrHistoricCurrencyAndAmount
    CreditDebitIndicator CreditDebitCode
    OriginalCurrencyAndOrderedAmount IsoRestrictedFINActiveOrHistoricCurrencyAndAmount
}
AmountAndDirection58 *-- "0..1" ForeignExchangeTerms27 : ForeignExchangeDetails
%% AmountAndDirection58 recursion level 1 with max 1
class AmountAndDirection58{
    Amount IsoRestrictedFINActiveOrHistoricCurrencyAndAmount
    CreditDebitIndicator CreditDebitCode
    OriginalCurrencyAndOrderedAmount IsoRestrictedFINActiveOrHistoricCurrencyAndAmount
}
AmountAndDirection58 *-- "0..1" ForeignExchangeTerms27 : ForeignExchangeDetails
%% AmountAndDirection58 recursion level 1 with max 1
class AmountAndDirection58{
    Amount IsoRestrictedFINActiveOrHistoricCurrencyAndAmount
    CreditDebitIndicator CreditDebitCode
    OriginalCurrencyAndOrderedAmount IsoRestrictedFINActiveOrHistoricCurrencyAndAmount
}
AmountAndDirection58 *-- "0..1" ForeignExchangeTerms27 : ForeignExchangeDetails
%% AmountAndDirection58 recursion level 1 with max 1
class AmountAndDirection58{
    Amount IsoRestrictedFINActiveOrHistoricCurrencyAndAmount
    CreditDebitIndicator CreditDebitCode
    OriginalCurrencyAndOrderedAmount IsoRestrictedFINActiveOrHistoricCurrencyAndAmount
}
AmountAndDirection58 *-- "0..1" ForeignExchangeTerms27 : ForeignExchangeDetails
%% AmountAndDirection58 recursion level 1 with max 1
class AmountAndDirection58{
    Amount IsoRestrictedFINActiveOrHistoricCurrencyAndAmount
    CreditDebitIndicator CreditDebitCode
    OriginalCurrencyAndOrderedAmount IsoRestrictedFINActiveOrHistoricCurrencyAndAmount
}
AmountAndDirection58 *-- "0..1" ForeignExchangeTerms27 : ForeignExchangeDetails
%% AmountAndDirection58 recursion level 1 with max 1
class AmountAndDirection58{
    Amount IsoRestrictedFINActiveOrHistoricCurrencyAndAmount
    CreditDebitIndicator CreditDebitCode
    OriginalCurrencyAndOrderedAmount IsoRestrictedFINActiveOrHistoricCurrencyAndAmount
}
AmountAndDirection58 *-- "0..1" ForeignExchangeTerms27 : ForeignExchangeDetails
%% AmountAndDirection58 recursion level 1 with max 1
class AmountAndDirection58{
    Amount IsoRestrictedFINActiveOrHistoricCurrencyAndAmount
    CreditDebitIndicator CreditDebitCode
    OriginalCurrencyAndOrderedAmount IsoRestrictedFINActiveOrHistoricCurrencyAndAmount
}
AmountAndDirection58 *-- "0..1" ForeignExchangeTerms27 : ForeignExchangeDetails
%% AmountAndDirection58 recursion level 1 with max 1
class AmountAndDirection58{
    Amount IsoRestrictedFINActiveOrHistoricCurrencyAndAmount
    CreditDebitIndicator CreditDebitCode
    OriginalCurrencyAndOrderedAmount IsoRestrictedFINActiveOrHistoricCurrencyAndAmount
}
AmountAndDirection58 *-- "0..1" ForeignExchangeTerms27 : ForeignExchangeDetails
%% AmountAndDirection58 recursion level 1 with max 1
class AmountAndDirection58{
    Amount IsoRestrictedFINActiveOrHistoricCurrencyAndAmount
    CreditDebitIndicator CreditDebitCode
    OriginalCurrencyAndOrderedAmount IsoRestrictedFINActiveOrHistoricCurrencyAndAmount
}
AmountAndDirection58 *-- "0..1" ForeignExchangeTerms27 : ForeignExchangeDetails
%% AmountAndDirection58 recursion level 1 with max 1
class AmountAndDirection58{
    Amount IsoRestrictedFINActiveOrHistoricCurrencyAndAmount
    CreditDebitIndicator CreditDebitCode
    OriginalCurrencyAndOrderedAmount IsoRestrictedFINActiveOrHistoricCurrencyAndAmount
}
AmountAndDirection58 *-- "0..1" ForeignExchangeTerms27 : ForeignExchangeDetails
%% AmountAndDirection58 recursion level 1 with max 1
class AmountAndDirection58{
    Amount IsoRestrictedFINActiveOrHistoricCurrencyAndAmount
    CreditDebitIndicator CreditDebitCode
    OriginalCurrencyAndOrderedAmount IsoRestrictedFINActiveOrHistoricCurrencyAndAmount
}
AmountAndDirection58 *-- "0..1" ForeignExchangeTerms27 : ForeignExchangeDetails
  

OtherAmounts35 members

Member name Description Data Type / Multiplicity
AccruedInterestAmount Interest amount that has accrued in between coupon payment periods. AmountAndDirection58 - Optional 0..1
ChargesFees Amount of money paid for the provision of financial services that cannot be categorised by another qualifier. AmountAndDirection58 - Optional 0..1
CountryNationalFederalTax Amount of country, national or federal tax charged by the jurisdiction in which the account servicer is located. AmountAndDirection58 - Optional 0..1
TradeAmount Principal amount of a trade (price multiplied by quantity). AmountAndDirection58 - Optional 0..1
ExecutingBrokerAmount Amount of money paid to an executing broker as a commission. AmountAndDirection58 - Optional 0..1
IssueDiscountAllowance Amount of money defined as a discount on a new issue or on a tranche of an existing issue. AmountAndDirection58 - Optional 0..1
PaymentLevyTax Amount of payment levy tax. AmountAndDirection58 - Optional 0..1
LocalTax Tax charged by the jurisdiction in which the financial instrument settles. AmountAndDirection58 - Optional 0..1
LocalTaxCountrySpecific Local tax country specific. AmountAndDirection58 - Optional 0..1
LocalBrokerCommission Amount of commission paid to a local broker. AmountAndDirection58 - Optional 0..1
Margin Amount of money deposited by the trading party in a margin account. AmountAndDirection58 - Optional 0..1
Other An amount that is not indicated by a known business denomination. AmountAndDirection58 - Optional 0..1
RegulatoryAmount Amount of money charged by a regulatory authority, for example, Securities and Exchange fees. AmountAndDirection58 - Optional 0..1
ShippingAmount All costs related to the physical delivery of documents such as stamps, postage, carrier fees, insurances or messenger services. AmountAndDirection58 - Optional 0..1
SpecialConcession Amount of drawdown or other reduction from or in addition to the deal price. AmountAndDirection58 - Optional 0..1
StampDuty Amount of stamp duty. AmountAndDirection58 - Optional 0..1
StockExchangeTax Amount of stock exchange tax. AmountAndDirection58 - Optional 0..1
TransferTax Amount of tax levied on a transfer of ownership of financial instrument. AmountAndDirection58 - Optional 0..1
TransactionTax Amount of transaction tax. AmountAndDirection58 - Optional 0..1
ValueAddedTax Amount of value-added tax. AmountAndDirection58 - Optional 0..1
WithholdingTax Amount of money that will be withheld by a tax authority. AmountAndDirection58 - Optional 0..1
NetGainLoss Amount representing the difference between the cost and the current price of a security. In the context of securities settlement, it is the amount paid or received when the instructions are netted or paired off. AmountAndDirection58 - Optional 0..1
ConsumptionTax Amount of consumption tax. AmountAndDirection58 - Optional 0..1
AccruedCapitalisationAmount Amount of unpaid interest (on bonds which have defaulted and have subsequently restructured), which is capitalized and added to the original principal amount of the bond.

OtherBusinessParties building block

Other business parties relevant to the transaction. Other parties information. For comparison, see the ISO20022 official specification

classDiagram
   direction tb
%% OtherParties29 recursion level 0 with max 1
OtherParties29 *-- "0..0" PartyIdentificationAndAccount135 : Investor
OtherParties29 *-- "0..1" PartyIdentificationAndAccount136 : QualifiedForeignIntermediary
OtherParties29 *-- "0..1" PartyIdentificationAndAccount137 : StockExchange
OtherParties29 *-- "0..1" PartyIdentificationAndAccount137 : TradeRegulator
OtherParties29 *-- "0..1" PartyIdentificationAndAccount136 : TripartyAgent
OtherParties29 *-- "0..1" PartyIdentificationAndAccount136 : Broker
%% PartyIdentificationAndAccount135 recursion level 1 with max 1
class PartyIdentificationAndAccount135{
    LEI IsoLEIIdentifier
    Nationality CountryCode
    SafekeepingAccount IsoRestrictedFINXMax35Text
    ProcessingIdentification IsoRestrictedFINXMax16Text
}
PartyIdentificationAndAccount135 *-- "0..1" IPartyIdentification104Choice : Identification
PartyIdentificationAndAccount135 *-- "0..1" AlternatePartyIdentification9 : AlternateIdentification
PartyIdentificationAndAccount135 *-- "0..1" PartyTextInformation3 : AdditionalInformation
%% PartyIdentificationAndAccount136 recursion level 1 with max 1
class PartyIdentificationAndAccount136{
    LEI IsoLEIIdentifier
    SafekeepingAccount IsoRestrictedFINXMax35Text
    ProcessingIdentification IsoRestrictedFINXMax16Text
}
PartyIdentificationAndAccount136 *-- "1..1" IPartyIdentification104Choice : Identification
PartyIdentificationAndAccount136 *-- "0..1" AlternatePartyIdentification9 : AlternateIdentification
PartyIdentificationAndAccount136 *-- "0..1" PartyTextInformation3 : AdditionalInformation
%% PartyIdentificationAndAccount137 recursion level 1 with max 1
class PartyIdentificationAndAccount137{
    LEI IsoLEIIdentifier
    ProcessingIdentification IsoRestrictedFINXMax16Text
}
PartyIdentificationAndAccount137 *-- "1..1" IPartyIdentification104Choice : Identification
PartyIdentificationAndAccount137 *-- "0..1" AlternatePartyIdentification9 : AlternateIdentification
PartyIdentificationAndAccount137 *-- "0..1" PartyTextInformation3 : AdditionalInformation
%% PartyIdentificationAndAccount137 recursion level 1 with max 1
class PartyIdentificationAndAccount137{
    LEI IsoLEIIdentifier
    ProcessingIdentification IsoRestrictedFINXMax16Text
}
PartyIdentificationAndAccount137 *-- "1..1" IPartyIdentification104Choice : Identification
PartyIdentificationAndAccount137 *-- "0..1" AlternatePartyIdentification9 : AlternateIdentification
PartyIdentificationAndAccount137 *-- "0..1" PartyTextInformation3 : AdditionalInformation
%% PartyIdentificationAndAccount136 recursion level 1 with max 1
class PartyIdentificationAndAccount136{
    LEI IsoLEIIdentifier
    SafekeepingAccount IsoRestrictedFINXMax35Text
    ProcessingIdentification IsoRestrictedFINXMax16Text
}
PartyIdentificationAndAccount136 *-- "1..1" IPartyIdentification104Choice : Identification
PartyIdentificationAndAccount136 *-- "0..1" AlternatePartyIdentification9 : AlternateIdentification
PartyIdentificationAndAccount136 *-- "0..1" PartyTextInformation3 : AdditionalInformation
%% PartyIdentificationAndAccount136 recursion level 1 with max 1
class PartyIdentificationAndAccount136{
    LEI IsoLEIIdentifier
    SafekeepingAccount IsoRestrictedFINXMax35Text
    ProcessingIdentification IsoRestrictedFINXMax16Text
}
PartyIdentificationAndAccount136 *-- "1..1" IPartyIdentification104Choice : Identification
PartyIdentificationAndAccount136 *-- "0..1" AlternatePartyIdentification9 : AlternateIdentification
PartyIdentificationAndAccount136 *-- "0..1" PartyTextInformation3 : AdditionalInformation
  

OtherParties29 members

Member name Description Data Type / Multiplicity
Investor Party, either an individual or organisation, whose assets are being invested. PartyIdentificationAndAccount135 - Unknown 0..0
QualifiedForeignIntermediary Foreign Financial Institution which has been authorised by local authorities to act as account management institution in the country. PartyIdentificationAndAccount136 - Optional 0..1
StockExchange Identification of the stock exchange to which transaction reporting will be done. PartyIdentificationAndAccount137 - Optional 0..1
TradeRegulator Institution to which a trade must be reported. PartyIdentificationAndAccount137 - Optional 0..1
TripartyAgent Party responsible for the administration of a tri-party collateral transaction including collateral allocation, marking to market and substitution of collateral. PartyIdentificationAndAccount136 - Optional 0..1
Broker Party that identifies a broker when required (for example, authorised broker, prime broker, etc). PartyIdentificationAndAccount136 - Optional 0..1

SupplementaryData building block

Additional information that cannot be captured in the structured elements 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 SecuritiesFinancingInstruction002V06 implementation follows a specific implementaiton pattern. First of all, SecuritiesFinancingInstruction002V06 impleemnts IOuterRecord indicating it is the outermost logical part of the message definition. Like all message wrappers, SecuritiesFinancingInstruction002V06Document implements IOuterDocument. Because SecuritiesFinancingInstruction002V06 implements IOuterDocument, it is a suitable template parameter for IOuterDocument, and causes the internal ‘Message’ to be of type SecuritiesFinancingInstruction002V06.

classDiagram
    class IOuterRecord
    SecuritiesFinancingInstruction002V06 --|> IOuterRecord : Implements
    SecuritiesFinancingInstruction002V06Document --|> IOuterDocument~SecuritiesFinancingInstruction002V06~ : Implements
    class IOuterDocument~SecuritiesFinancingInstruction002V06~ {
        SecuritiesFinancingInstruction002V06 Message
     }
  

Document wrapper for serialization

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

classDiagram
    SecuritiesFinancingInstruction002V06Document *-- SecuritiesFinancingInstruction002V06 : 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:sese.033.002.06">
    <SctiesFincgInstr>
        <TxId>
            <!-- TransactionIdentification inner content -->
        </TxId>
        <TxTpAndAddtlParams>
            <!-- TransactionTypeAndAdditionalParameters inner content -->
        </TxTpAndAddtlParams>
        <NbCounts>
            <!-- NumberCounts inner content -->
        </NbCounts>
        <Lnkgs>
            <!-- Linkages inner content -->
        </Lnkgs>
        <TradDtls>
            <!-- TradeDetails inner content -->
        </TradDtls>
        <FinInstrmId>
            <!-- FinancialInstrumentIdentification inner content -->
        </FinInstrmId>
        <FinInstrmAttrbts>
            <!-- FinancialInstrumentAttributes inner content -->
        </FinInstrmAttrbts>
        <QtyAndAcctDtls>
            <!-- QuantityAndAccountDetails inner content -->
        </QtyAndAcctDtls>
        <SctiesFincgDtls>
            <!-- SecuritiesFinancingDetails inner content -->
        </SctiesFincgDtls>
        <SttlmParams>
            <!-- SettlementParameters inner content -->
        </SttlmParams>
        <StgSttlmInstrDtls>
            <!-- StandingSettlementInstructionDetails inner content -->
        </StgSttlmInstrDtls>
        <DlvrgSttlmPties>
            <!-- DeliveringSettlementParties inner content -->
        </DlvrgSttlmPties>
        <RcvgSttlmPties>
            <!-- ReceivingSettlementParties inner content -->
        </RcvgSttlmPties>
        <CshPties>
            <!-- CashParties inner content -->
        </CshPties>
        <OpngSttlmAmt>
            <!-- OpeningSettlementAmount inner content -->
        </OpngSttlmAmt>
        <OthrAmts>
            <!-- OtherAmounts inner content -->
        </OthrAmts>
        <OthrBizPties>
            <!-- OtherBusinessParties inner content -->
        </OthrBizPties>
        <SplmtryData>
            <!-- SupplementaryData inner content -->
        </SplmtryData>
    </SctiesFincgInstr>
</Document>

Data from ISO specification

This is the technical data from the specification document.

<messageDefinition
  xmi:id="_5xk_k5NLEeWGlc8L7oPDIg"
  nextVersions="_y9mmU5w0EeazcsnODTksnQ"
  name="SecuritiesFinancingInstruction002V06"
  definition="Scope&#xD;&#xA;An account owner sends a SecuritiesFinancingInstruction to a securities financing transaction account servicer to notify the securities financing transaction account servicer of the details of a repurchase agreement, reverse repurchase agreement, securities lending or securities borrowing transaction to allow the account servicer to manage the settlement and follow-up of the opening and closing leg of the transaction.&#xD;&#xA;The account owner/servicer relationship may be:&#xD;&#xA;- a global custodian which has an account with a local custodian, or&#xD;&#xA;- an investment management institution which manage a fund account opened at a custodian, or&#xD;&#xA;- a broker which has an account with a custodian, or&#xD;&#xA;- a central securities depository participant which has an account with a central securities depository, or&#xD;&#xA;- a central securities depository which has an account with a custodian, another central securities depository or another settlement market infrastructure, or&#xD;&#xA;- a central counterparty or a stock exchange or a trade matching utility which need to instruct the settlement of securities financing transactions to a central securities depository or another settlement market infrastructure.&#xD;&#xA;&#xD;&#xA;Usage&#xD;&#xA;The message may also be used to:&#xD;&#xA;- re-send a message previously sent,&#xD;&#xA;- provide a third party with a copy of a message for information,&#xD;&#xA;- re-send to a third party a copy of a message for information&#xD;&#xA;using the relevant elements in the Business Application Header."
  registrationStatus="Registered"
  messageSet="_urpIICeJEeOCeO5e7islRQ"
  xmlTag="SctiesFincgInstr"
  rootElement="Document"
  xmlns:xmi="http://www.omg.org/XMI">
  <constraint
    xmi:id="_5xk_lZNLEeWGlc8L7oPDIg"
    name="SettlementAmountRule"
    definition="If the Transaction is against payment, then OpeningSettlementAmount must be present.&#xD;&#xA;"
    registrationStatus="Provisionally Registered"
    expression="&lt;RuleDefinition&gt;&lt;ComplexRule xmlns:xsi=&quot;http://www.w3.org/2001/XMLSchema-instance&quot; xsi:type=&quot;ComplexRule&quot;&gt;&lt;mustBe&gt;&lt;connector&gt;AND&lt;/connector&gt;&lt;BooleanRule xsi:type=&quot;Presence&quot;&gt;&lt;leftOperand&gt;/OpeningSettlementAmount&lt;/leftOperand&gt;&lt;/BooleanRule&gt;&lt;/mustBe&gt;&lt;onCondition&gt;&lt;connector&gt;AND&lt;/connector&gt;&lt;BooleanRule xsi:type=&quot;EqualToValue&quot;&gt;&lt;leftOperand&gt;/TransactionTypeAndAdditionalParameters/Payment&lt;/leftOperand&gt;&lt;rightOperand&gt;AgainstPaymentSettlement&lt;/rightOperand&gt;&lt;/BooleanRule&gt;&lt;/onCondition&gt;&lt;/ComplexRule&gt;&lt;/RuleDefinition&gt;" />
  <constraint
    xmi:id="_5xk_l5NLEeWGlc8L7oPDIg"
    name="SellerSSI2Rule"
    definition="If standing settlement instruction applies and the transaction is a securities borrowing, then Seller must be present.&#xD;&#xA;"
    registrationStatus="Provisionally Registered"
    expression="&lt;RuleDefinition&gt;&lt;ComplexRule xmlns:xsi=&quot;http://www.w3.org/2001/XMLSchema-instance&quot; xsi:type=&quot;ComplexRule&quot;&gt;&lt;mustBe&gt;&lt;connector&gt;AND&lt;/connector&gt;&lt;BooleanRule xsi:type=&quot;Presence&quot;&gt;&lt;leftOperand&gt;/StandingSettlementInstructionDetails/Counterparty/Seller&lt;/leftOperand&gt;&lt;/BooleanRule&gt;&lt;/mustBe&gt;&lt;onCondition&gt;&lt;connector&gt;AND&lt;/connector&gt;&lt;BooleanRule xsi:type=&quot;EqualToValue&quot;&gt;&lt;leftOperand&gt;/TransactionTypeAndAdditionalParameters/SecuritiesFinancingTransactionType&lt;/leftOperand&gt;&lt;rightOperand&gt;SecuritiesBorrowing&lt;/rightOperand&gt;&lt;/BooleanRule&gt;&lt;BooleanRule xsi:type=&quot;Presence&quot;&gt;&lt;leftOperand&gt;/StandingSettlementInstructionDetails&lt;/leftOperand&gt;&lt;/BooleanRule&gt;&lt;/onCondition&gt;&lt;/ComplexRule&gt;&lt;/RuleDefinition&gt;" />
  <constraint
    xmi:id="_5xk_mZNLEeWGlc8L7oPDIg"
    name="BuyerSSI2Rule"
    definition="If standing settlement instruction applies and the transaction is a securities lending, then Buyer must be present.&#xD;&#xA;"
    registrationStatus="Provisionally Registered"
    expression="&lt;RuleDefinition&gt;&lt;ComplexRule xmlns:xsi=&quot;http://www.w3.org/2001/XMLSchema-instance&quot; xsi:type=&quot;ComplexRule&quot;&gt;&lt;mustBe&gt;&lt;connector&gt;AND&lt;/connector&gt;&lt;BooleanRule xsi:type=&quot;Presence&quot;&gt;&lt;leftOperand&gt;/StandingSettlementInstructionDetails/Counterparty/Buyer&lt;/leftOperand&gt;&lt;/BooleanRule&gt;&lt;/mustBe&gt;&lt;onCondition&gt;&lt;connector&gt;AND&lt;/connector&gt;&lt;BooleanRule xsi:type=&quot;EqualToValue&quot;&gt;&lt;leftOperand&gt;/TransactionTypeAndAdditionalParameters/SecuritiesFinancingTransactionType&lt;/leftOperand&gt;&lt;rightOperand&gt;SecuritiesLending&lt;/rightOperand&gt;&lt;/BooleanRule&gt;&lt;BooleanRule xsi:type=&quot;Presence&quot;&gt;&lt;leftOperand&gt;/StandingSettlementInstructionDetails&lt;/leftOperand&gt;&lt;/BooleanRule&gt;&lt;/onCondition&gt;&lt;/ComplexRule&gt;&lt;/RuleDefinition&gt;" />
  <constraint
    xmi:id="_5xk_m5NLEeWGlc8L7oPDIg"
    name="DeliveringDepositoryAndParty1Part1Rule"
    definition="If the transaction is a reverse repo and no standing settlement instruction applies, then DeliveringDepository and Party1 must be present."
    registrationStatus="Provisionally Registered"
    expression="&lt;RuleDefinition&gt;&lt;ComplexRule xmlns:xsi=&quot;http://www.w3.org/2001/XMLSchema-instance&quot; xsi:type=&quot;ComplexRule&quot;&gt;&lt;mustBe&gt;&lt;connector&gt;AND&lt;/connector&gt;&lt;BooleanRule xsi:type=&quot;Presence&quot;&gt;&lt;leftOperand&gt;/DeliveringSettlementParties/Depository&lt;/leftOperand&gt;&lt;/BooleanRule&gt;&lt;BooleanRule xsi:type=&quot;Presence&quot;&gt;&lt;leftOperand&gt;/DeliveringSettlementParties/Party1&lt;/leftOperand&gt;&lt;/BooleanRule&gt;&lt;/mustBe&gt;&lt;onCondition&gt;&lt;connector&gt;AND&lt;/connector&gt;&lt;BooleanRule xsi:type=&quot;EqualToValue&quot;&gt;&lt;leftOperand&gt;/TransactionTypeAndAdditionalParameters/SecuritiesFinancingTransactionType&lt;/leftOperand&gt;&lt;rightOperand&gt;ReverseRepo&lt;/rightOperand&gt;&lt;/BooleanRule&gt;&lt;BooleanRule xsi:type=&quot;Absence&quot;&gt;&lt;leftOperand&gt;/StandingSettlementInstructionDetails&lt;/leftOperand&gt;&lt;/BooleanRule&gt;&lt;/onCondition&gt;&lt;/ComplexRule&gt;&lt;/RuleDefinition&gt;" />
  <constraint
    xmi:id="_5xk_nZNLEeWGlc8L7oPDIg"
    name="ReceivingDepositoryAndParty1Part1Rule"
    definition="If the transaction is a repo and no standing settlement instruction applies, then ReceivingDepository and Party1 must be present.&#xD;&#xA;"
    registrationStatus="Provisionally Registered"
    expression="&lt;RuleDefinition&gt;&lt;ComplexRule xmlns:xsi=&quot;http://www.w3.org/2001/XMLSchema-instance&quot; xsi:type=&quot;ComplexRule&quot;&gt;&lt;mustBe&gt;&lt;connector&gt;AND&lt;/connector&gt;&lt;BooleanRule xsi:type=&quot;Presence&quot;&gt;&lt;leftOperand&gt;/ReceivingSettlementParties/Depository&lt;/leftOperand&gt;&lt;/BooleanRule&gt;&lt;BooleanRule xsi:type=&quot;Presence&quot;&gt;&lt;leftOperand&gt;/ReceivingSettlementParties/Party1&lt;/leftOperand&gt;&lt;/BooleanRule&gt;&lt;/mustBe&gt;&lt;onCondition&gt;&lt;connector&gt;AND&lt;/connector&gt;&lt;BooleanRule xsi:type=&quot;EqualToValue&quot;&gt;&lt;leftOperand&gt;/TransactionTypeAndAdditionalParameters/SecuritiesFinancingTransactionType&lt;/leftOperand&gt;&lt;rightOperand&gt;Repo&lt;/rightOperand&gt;&lt;/BooleanRule&gt;&lt;BooleanRule xsi:type=&quot;Absence&quot;&gt;&lt;leftOperand&gt;/StandingSettlementInstructionDetails&lt;/leftOperand&gt;&lt;/BooleanRule&gt;&lt;/onCondition&gt;&lt;/ComplexRule&gt;&lt;/RuleDefinition&gt;" />
  <constraint
    xmi:id="_5xk_n5NLEeWGlc8L7oPDIg"
    name="DeliveringDepositoryAndParty1Part2Rule"
    definition="If the transaction is a securities borrowing and no standing settlement instruction applies, then DeliveringDepository and Party1 must be present."
    registrationStatus="Provisionally Registered"
    expression="&lt;RuleDefinition&gt;&lt;ComplexRule xmlns:xsi=&quot;http://www.w3.org/2001/XMLSchema-instance&quot; xsi:type=&quot;ComplexRule&quot;&gt;&lt;mustBe&gt;&lt;connector&gt;AND&lt;/connector&gt;&lt;BooleanRule xsi:type=&quot;Presence&quot;&gt;&lt;leftOperand&gt;/DeliveringSettlementParties/Depository&lt;/leftOperand&gt;&lt;/BooleanRule&gt;&lt;BooleanRule xsi:type=&quot;Presence&quot;&gt;&lt;leftOperand&gt;/DeliveringSettlementParties/Party1&lt;/leftOperand&gt;&lt;/BooleanRule&gt;&lt;/mustBe&gt;&lt;onCondition&gt;&lt;connector&gt;AND&lt;/connector&gt;&lt;BooleanRule xsi:type=&quot;EqualToValue&quot;&gt;&lt;leftOperand&gt;/TransactionTypeAndAdditionalParameters/SecuritiesFinancingTransactionType&lt;/leftOperand&gt;&lt;rightOperand&gt;SecuritiesBorrowing&lt;/rightOperand&gt;&lt;/BooleanRule&gt;&lt;BooleanRule xsi:type=&quot;Absence&quot;&gt;&lt;leftOperand&gt;/StandingSettlementInstructionDetails&lt;/leftOperand&gt;&lt;/BooleanRule&gt;&lt;/onCondition&gt;&lt;/ComplexRule&gt;&lt;/RuleDefinition&gt;" />
  <constraint
    xmi:id="_5xlmoZNLEeWGlc8L7oPDIg"
    name="ReceivingDepositoryAndParty1Part2Rule"
    definition="If the transaction is a securities lending and no standing settlement instruction applies, then ReceivingDepository and Party1 must be present.&#xD;&#xA;"
    registrationStatus="Provisionally Registered"
    expression="&lt;RuleDefinition&gt;&lt;ComplexRule xmlns:xsi=&quot;http://www.w3.org/2001/XMLSchema-instance&quot; xsi:type=&quot;ComplexRule&quot;&gt;&lt;mustBe&gt;&lt;connector&gt;AND&lt;/connector&gt;&lt;BooleanRule xsi:type=&quot;Presence&quot;&gt;&lt;leftOperand&gt;/ReceivingSettlementParties/Depository&lt;/leftOperand&gt;&lt;/BooleanRule&gt;&lt;BooleanRule xsi:type=&quot;Presence&quot;&gt;&lt;leftOperand&gt;/ReceivingSettlementParties/Party1&lt;/leftOperand&gt;&lt;/BooleanRule&gt;&lt;/mustBe&gt;&lt;onCondition&gt;&lt;connector&gt;AND&lt;/connector&gt;&lt;BooleanRule xsi:type=&quot;EqualToValue&quot;&gt;&lt;leftOperand&gt;/TransactionTypeAndAdditionalParameters/SecuritiesFinancingTransactionType&lt;/leftOperand&gt;&lt;rightOperand&gt;SecuritiesLending&lt;/rightOperand&gt;&lt;/BooleanRule&gt;&lt;BooleanRule xsi:type=&quot;Absence&quot;&gt;&lt;leftOperand&gt;/StandingSettlementInstructionDetails&lt;/leftOperand&gt;&lt;/BooleanRule&gt;&lt;/onCondition&gt;&lt;/ComplexRule&gt;&lt;/RuleDefinition&gt;" />
  <constraint
    xmi:id="_5xlmo5NLEeWGlc8L7oPDIg"
    name="SecuritiesMarketPracticeGroupGuideline"
    definition="The Securities Market Practice Group (SMPG) has published market practice recommendations on the use of this message.&#xD;&#xA;These market practices are available on www.smpg.info."
    registrationStatus="Provisionally Registered" />
  <constraint
    xmi:id="_5xlmpZNLEeWGlc8L7oPDIg"
    name="SellerSSI1Rule"
    definition="If standing settlement instruction applies and the transaction is a reverse repo, then Seller must be present.&#xD;&#xA;"
    registrationStatus="Provisionally Registered"
    expression="&lt;RuleDefinition&gt;&lt;ComplexRule xmlns:xsi=&quot;http://www.w3.org/2001/XMLSchema-instance&quot; xsi:type=&quot;ComplexRule&quot;&gt;&lt;mustBe&gt;&lt;connector&gt;AND&lt;/connector&gt;&lt;BooleanRule xsi:type=&quot;Presence&quot;&gt;&lt;leftOperand&gt;/StandingSettlementInstructionDetails/Counterparty/Seller&lt;/leftOperand&gt;&lt;/BooleanRule&gt;&lt;/mustBe&gt;&lt;onCondition&gt;&lt;connector&gt;AND&lt;/connector&gt;&lt;BooleanRule xsi:type=&quot;EqualToValue&quot;&gt;&lt;leftOperand&gt;/TransactionTypeAndAdditionalParameters/SecuritiesFinancingTransactionType&lt;/leftOperand&gt;&lt;rightOperand&gt;ReverseRepo&lt;/rightOperand&gt;&lt;/BooleanRule&gt;&lt;BooleanRule xsi:type=&quot;Presence&quot;&gt;&lt;leftOperand&gt;/StandingSettlementInstructionDetails&lt;/leftOperand&gt;&lt;/BooleanRule&gt;&lt;/onCondition&gt;&lt;/ComplexRule&gt;&lt;/RuleDefinition&gt;" />
  <constraint
    xmi:id="_5xlmp5NLEeWGlc8L7oPDIg"
    name="BuyerSSI1Rule"
    definition="If standing settlement instruction applies and the transaction is a repo, then Buyer must be present.&#xD;&#xA;"
    registrationStatus="Provisionally Registered"
    expression="&lt;RuleDefinition&gt;&lt;ComplexRule xmlns:xsi=&quot;http://www.w3.org/2001/XMLSchema-instance&quot; xsi:type=&quot;ComplexRule&quot;&gt;&lt;mustBe&gt;&lt;connector&gt;AND&lt;/connector&gt;&lt;BooleanRule xsi:type=&quot;Presence&quot;&gt;&lt;leftOperand&gt;/StandingSettlementInstructionDetails/Counterparty/Buyer&lt;/leftOperand&gt;&lt;/BooleanRule&gt;&lt;/mustBe&gt;&lt;onCondition&gt;&lt;connector&gt;AND&lt;/connector&gt;&lt;BooleanRule xsi:type=&quot;EqualToValue&quot;&gt;&lt;leftOperand&gt;/TransactionTypeAndAdditionalParameters/SecuritiesFinancingTransactionType&lt;/leftOperand&gt;&lt;rightOperand&gt;Repo&lt;/rightOperand&gt;&lt;/BooleanRule&gt;&lt;BooleanRule xsi:type=&quot;Presence&quot;&gt;&lt;leftOperand&gt;/StandingSettlementInstructionDetails&lt;/leftOperand&gt;&lt;/BooleanRule&gt;&lt;/onCondition&gt;&lt;/ComplexRule&gt;&lt;/RuleDefinition&gt;" />
  <messageBuildingBlock
    xmi:id="_5xlmqZNLEeWGlc8L7oPDIg"
    name="TransactionIdentification"
    definition="Unambiguous identification of the transaction as know by the instructing party."
    registrationStatus="Provisionally Registered"
    maxOccurs="1"
    minOccurs="1"
    xmlTag="TxId"
    simpleType="_XZJV2Np-Ed-ak6NoX_4Aeg_-1555155859" />
  <messageBuildingBlock
    xmi:id="_5xlmq5NLEeWGlc8L7oPDIg"
    name="TransactionTypeAndAdditionalParameters"
    definition="Securities financing transaction identification information, type (repurchase agreement, reverse repurchase agreement, securities lending or securities borrowing) and other parameters."
    registrationStatus="Provisionally Registered"
    maxOccurs="1"
    minOccurs="1"
    xmlTag="TxTpAndAddtlParams"
    complexType="_5xlmz5NLEeWGlc8L7oPDIg" />
  <messageBuildingBlock
    xmi:id="_5xlmrZNLEeWGlc8L7oPDIg"
    name="NumberCounts"
    definition="Count of the number of transactions linked."
    registrationStatus="Provisionally Registered"
    maxOccurs="1"
    minOccurs="0"
    xmlTag="NbCounts"
    complexType="_QrsmZ9p-Ed-ak6NoX_4Aeg_994582654" />
  <messageBuildingBlock
    xmi:id="_5xlmr5NLEeWGlc8L7oPDIg"
    name="Linkages"
    definition="Link to another transaction that must be processed after, before or at the same time."
    registrationStatus="Provisionally Registered"
    minOccurs="0"
    xmlTag="Lnkgs"
    complexType="_5xlm-ZNLEeWGlc8L7oPDIg" />
  <messageBuildingBlock
    xmi:id="_5xlmsZNLEeWGlc8L7oPDIg"
    name="TradeDetails"
    definition="Details of the securities financing deal."
    registrationStatus="Provisionally Registered"
    maxOccurs="1"
    minOccurs="1"
    xmlTag="TradDtls"
    complexType="_5xmN3ZNLEeWGlc8L7oPDIg" />
  <messageBuildingBlock
    xmi:id="_5xlms5NLEeWGlc8L7oPDIg"
    name="FinancialInstrumentIdentification"
    definition="Financial instrument representing a sum of rights of the investor vis-a-vis the issuer."
    registrationStatus="Provisionally Registered"
    maxOccurs="1"
    minOccurs="1"
    xmlTag="FinInstrmId"
    complexType="_cdRCO5KQEeWHWpTQn1FFVg" />
  <messageBuildingBlock
    xmi:id="_5xlmtZNLEeWGlc8L7oPDIg"
    name="FinancialInstrumentAttributes"
    definition="Elements characterising a financial instrument."
    registrationStatus="Provisionally Registered"
    maxOccurs="1"
    minOccurs="0"
    xmlTag="FinInstrmAttrbts"
    complexType="_5TG65ZNLEeWGlc8L7oPDIg" />
  <messageBuildingBlock
    xmi:id="_5xlmt5NLEeWGlc8L7oPDIg"
    name="QuantityAndAccountDetails"
    definition="Details related to the account and quantity involved in the transaction."
    registrationStatus="Provisionally Registered"
    maxOccurs="1"
    minOccurs="1"
    xmlTag="QtyAndAcctDtls"
    complexType="_5xoqgZNLEeWGlc8L7oPDIg" />
  <messageBuildingBlock
    xmi:id="_5xlmuZNLEeWGlc8L7oPDIg"
    name="SecuritiesFinancingDetails"
    definition="Details for the closing of the securities financing transaction."
    registrationStatus="Provisionally Registered"
    maxOccurs="1"
    minOccurs="1"
    xmlTag="SctiesFincgDtls"
    complexType="_5mw2zZNLEeWGlc8L7oPDIg" />
  <messageBuildingBlock
    xmi:id="_5xlmu5NLEeWGlc8L7oPDIg"
    name="SettlementParameters"
    definition="Parameters which explicitly state the conditions that must be fulfilled before a particular transaction of a financial instrument can be settled. These parameters are defined by the instructing party in compliance with settlement rules in the market the transaction will settle in."
    registrationStatus="Provisionally Registered"
    maxOccurs="1"
    minOccurs="0"
    xmlTag="SttlmParams"
    complexType="_5xqfv5NLEeWGlc8L7oPDIg" />
  <messageBuildingBlock
    xmi:id="_5xlmvZNLEeWGlc8L7oPDIg"
    name="StandingSettlementInstructionDetails"
    definition="Specifies what settlement standing instruction database is to be used to derive the settlement parties involved in the transaction."
    registrationStatus="Provisionally Registered"
    maxOccurs="1"
    minOccurs="0"
    xmlTag="StgSttlmInstrDtls"
    complexType="_5mxerpNLEeWGlc8L7oPDIg" />
  <messageBuildingBlock
    xmi:id="_5xlmv5NLEeWGlc8L7oPDIg"
    name="DeliveringSettlementParties"
    definition="Identifies the chain of delivering settlement parties."
    registrationStatus="Provisionally Registered"
    maxOccurs="1"
    minOccurs="0"
    xmlTag="DlvrgSttlmPties"
    complexType="_5TKlmZNLEeWGlc8L7oPDIg" />
  <messageBuildingBlock
    xmi:id="_5xlmwZNLEeWGlc8L7oPDIg"
    name="ReceivingSettlementParties"
    definition="Identifies the chain of receiving settlement parties."
    registrationStatus="Provisionally Registered"
    maxOccurs="1"
    minOccurs="0"
    xmlTag="RcvgSttlmPties"
    complexType="_5TKlmZNLEeWGlc8L7oPDIg" />
  <messageBuildingBlock
    xmi:id="_5xlmw5NLEeWGlc8L7oPDIg"
    name="CashParties"
    definition="Cash parties involved in the transaction if different for the securities settlement parties."
    registrationStatus="Provisionally Registered"
    maxOccurs="1"
    minOccurs="0"
    xmlTag="CshPties"
    complexType="_5nBVr5NLEeWGlc8L7oPDIg" />
  <messageBuildingBlock
    xmi:id="_5xlmxZNLEeWGlc8L7oPDIg"
    name="OpeningSettlementAmount"
    definition="Total amount of money to be paid or received in exchange for the securities at the opening of a securities financing transaction."
    registrationStatus="Provisionally Registered"
    maxOccurs="1"
    minOccurs="0"
    xmlTag="OpngSttlmAmt"
    complexType="_5nEY0ZNLEeWGlc8L7oPDIg" />
  <messageBuildingBlock
    xmi:id="_5xlmx5NLEeWGlc8L7oPDIg"
    name="OtherAmounts"
    definition="Other amounts than the settlement amount."
    registrationStatus="Provisionally Registered"
    maxOccurs="1"
    minOccurs="0"
    xmlTag="OthrAmts"
    complexType="_5x8zWZNLEeWGlc8L7oPDIg" />
  <messageBuildingBlock
    xmi:id="_5xlmyZNLEeWGlc8L7oPDIg"
    name="OtherBusinessParties"
    definition="Other business parties relevant to the transaction."
    registrationStatus="Provisionally Registered"
    maxOccurs="1"
    minOccurs="0"
    xmlTag="OthrBizPties"
    complexType="_5nIEFZNLEeWGlc8L7oPDIg" />
  <messageBuildingBlock
    xmi:id="_5xlmy5NLEeWGlc8L7oPDIg"
    name="SupplementaryData"
    definition="Additional information that cannot be captured in the structured elements and/or any other specific block."
    registrationStatus="Provisionally Registered"
    minOccurs="0"
    xmlTag="SplmtryData"
    complexType="_Qn0zC9p-Ed-ak6NoX_4Aeg_468227563" />
  <messageDefinitionIdentifier
    businessArea="sese"
    messageFunctionality="033"
    flavour="002"
    version="06" />
</messageDefinition>

ISO Building Blocks

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