allocation
S3 / causeway-data / dev / main / fibo / allocation
About the Pure Model
Concept: AllocationAuto-generated from fibo-data-gen/pure/ — column-level lineage from the FIBO-grounded class to its physical store. Structured mappings point at parquet columns; Object mappings point at object-storage paths for audio, video, documents, and transcripts.
Profile
// AUTO-GENERATED by generators/pure_export.py — do not edit by hand.
// Source: metadata/datasets/*.json
###Pure
Profile fibo::Lineage
{
stereotypes: [parquetBacked, objectBacked];
tags: [parquetPath, fiboModule, fiboConcept, datasetTitle, glossaryTerm, objectPath, mediaTypes];
}Class
<<Lineage.parquetBacked>>
{Lineage.parquetPath = 'out/parquet/allocation.parquet', Lineage.fiboModule = 'FBC', Lineage.fiboConcept = 'Allocation', Lineage.datasetTitle = 'Allocations'}
// Assignment of executed quantity to specific accounts (often after a block execution is split among funds).
Class fibo::fbc::Allocation
{
// AllocationIdentifier: Internal surrogate key for an allocation.
allocationId : Integer[1];
// ExecutionIdentifier: Internal surrogate key for a trade execution.
executionId : Integer[1];
// AccountIdentifier: Internal surrogate key uniquely identifying an account within this system.
accountId : Integer[1];
// Quantity: Number of units (shares, contracts, face value) held or traded.
quantity : Decimal[1];
// AsOfDate: The business date as of which a snapshot was taken (positions, prices, NAV, etc.).
allocationTimestamp : DateTime[1];
}Table (parquet store)
// parquet: out/parquet/allocation.parquet
Table allocation (allocation_id INT PRIMARY KEY, execution_id INT, account_id INT, quantity DECIMAL(20,6), allocation_timestamp TIMESTAMP)Mapping — column-level lineage
fibo::fbc::Allocation : Relational
{
~mainTable [FiboParquet]allocation
allocationId : [FiboParquet]allocation.allocation_id,
executionId : [FiboParquet]allocation.execution_id,
accountId : [FiboParquet]allocation.account_id,
quantity : [FiboParquet]allocation.quantity,
allocationTimestamp : [FiboParquet]allocation.allocation_timestamp
}UNSTRUCTURED — OBJECT STORAGE
Object Store (S3 / object backend)
// AUTO-GENERATED by generators/pure_export.py — do not edit by hand.
Store store::object::CausewayObjectStore
(
backend: S3
bucket: 'causeway-data'
region: 'us-east-1'
)