Skip to main content

Restriction Definition

Data Dictionary - Entity Table: Restriction_Definition#

This table contains the restrictions metrics which are associated with specific investment strategy, e.g. weight of the instrument should not exceed specified share. If the restriction is violated by a certain position in the portfolio or by a proposed transaction, then respective warning may be displayed to the user.

Primary Key ('id').ENGINE = InnoDB..
Column NameData TypePK Primary Key, NN-Not Null, NullExampleComments
idBIGINT(12)PK, NN1PrimaryKey-ID, Not Null (auto creates)
Restriction_TypeBIGINT(12)NULL1Id from Restriction Type table. This column links to the Asset Classification/Instrument Attribute to which the restriction is applied.
OperatorENUM("=", ">", "<", ">=", "<=", "<>")NULL<=Operator of the restriction
ValueVARCHAR(45)NULL0.02Restrictions threshold, e.g. <= 2% of portfolio
CONSTRAINTFOREIGN KEYREFERENCESON DELETEON UPDATE
RestrictionType(Restriction_Type)Restriction_Type (id)NO ACTIONNO ACTION
CREATE INDEXONASCVISIBLE.
id_idxRestriction_Definition(Restriction_Type ASC)VISIBLE.