Causeway
Degraded in us-west-2DocsRequest Dataset
<- Back to concepts

Entity Classification

EntityClassificationBE

Assignment of a legal entity to a category in a classification scheme (e.g., a bank classified under the 'Financials' GICS sector).

Datasets representing this concept
1 dataset
DatasetRolePure
legal_entity_classificationprimaryPure Model ->
Pure Class

FIBO-grounded class definition for this concept: properties, multiplicities, and source-column annotations. Per-dataset Mapping and Table blocks live on each dataset's Pure Model tab.

<<Lineage.parquetBacked>>
{Lineage.parquetPath = 'out/parquet/legal_entity_classification.parquet', Lineage.fiboModule = 'BE', Lineage.fiboConcept = 'EntityClassification', Lineage.datasetTitle = 'Legal Entity Classifications'}
// Assignment of each legal entity to industry-classification categories, with point-in-time history.
Class fibo::be::EntityClassification
{
    // LegalEntityIdentifier: Globally unique 20-character code (ISO 17442) assigned to a legal entity for identification in financial transactions.
    lei : String[1];
    // IdentifierScheme: The naming system that defines how identifiers are formed and assigned (e.g., LEI, ISIN, CUSIP, FIGI).
    schemeCode : String[1];
    // Classifier: A specific category within a classification scheme (e.g., the GICS sector \'Financials\' or industry group \'Banks\').
    classificationCode : String[1];
    // ValidFromDate: The date a record\'s information became effective. Together with Valid To Date and Is Current, supports point-in-time history (slowly-changing dimension).
    validFrom : StrictDate[1];
    // ValidToDate: The date a record\'s information stopped being effective. NULL means still in force.
    validTo : StrictDate[0..1];
    // IsCurrent: Flag indicating whether a versioned record is the currently active version for its natural key.
    isCurrent : Boolean[1];
}