Stock Split
StockSplitCAEAction that changes the number of shares outstanding by a ratio without changing aggregate value (e.g., 2-for-1 doubles shares, halves price).
Datasets representing this concept
1 dataset| Dataset | Role | Pure |
|---|---|---|
| stock_split | primary | Pure 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/stock_split.parquet', Lineage.fiboModule = 'CAE', Lineage.fiboConcept = 'StockSplit', Lineage.datasetTitle = 'Stock Splits'}
// Split-specific economics for events of type STOCK_SPLIT — ratio of new shares to old.
Class fibo::cae::StockSplit
{
// EventIdentifier: Internal surrogate key for a corporate-action event.
eventId : Integer[1];
// SplitRatio: Ratio of new shares to old shares (e.g., 2:1, 3:2). Numerator is new, denominator is old.
ratioNumerator : Integer[1];
// SplitRatio: Ratio of new shares to old shares (e.g., 2:1, 3:2). Numerator is new, denominator is old.
ratioDenominator : Integer[1];
}