Skip to main content

CMA Set Hierarchy

Data Dictionary - Entity Table: CMA_Set_Hierarchy#

Capital Market Assumptions (CMA) represent the risk and return assumptions for a distinct group of assets. The CMA hierarchy allows flexible construction of risk assumptions based on different scenarios grouped together under the hierarchy e.g. Equity-> Global Equity -> Global Equity in Strong Bear Market or Best case COVID recovery -> Equity/FI/Commodity -> Europe/US/APAC.

Primary Key ('id').ENGINE = InnoDB..
Column NameData TypePK Primary Key, NN-Not Null, NullExampleComments
idBIGINT(12)PK, NN1PrimaryKey-ID, Not Null (auto creates)
ParentBIGINT(12)NULL1Top of hierarchy (parent) of CMA Set
ChildBIGINT(12)NULL1Under parent hierarchy (child)of CMA Set
CONSTRAINTFOREIGN KEYREFERENCESON DELETEON UPDATE
Parent(Parent)CMA_Set (id)NO ACTIONNO ACTION
Child( Child)CMA_Set (id)NO ACTIONNO ACTION
CREATE INDEXONASCVISIBLE.
Parent_idxCMA_Set_Hierarchy(Parent ASC)VISIBLE.
Child_idxCMA_Set_Hierarchy(Child ASC)VISIBLE.