currency
S3 / causeway-data / dev / main / fibo / currency
About the Pure Model
Concept: CurrencyAuto-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/currency.parquet', Lineage.fiboModule = 'FND', Lineage.fiboConcept = 'Currency', Lineage.datasetTitle = 'Currencies'}
// Master list of currencies recognized by the system, keyed by ISO 4217 code, with display name and decimal-place convention.
Class fibo::fnd::Currency
{
// ISO4217CurrencyCode: Three-letter code (e.g., USD, EUR, JPY) that uniquely identifies a currency under ISO 4217.
currencyCode : String[1];
// Currency: A unit of monetary value issued by a sovereign or supranational authority and used to denominate transactions, holdings, and prices.
name : String[1];
// MinorUnit: Number of decimal places used when expressing amounts in a currency (e.g., 2 for USD, 0 for JPY).
minorUnit : Integer[1];
// Active: Flag indicating whether a reference-data record is currently in use.
isActive : Boolean[1];
}Table (parquet store)
// parquet: out/parquet/currency.parquet
Table currency (currency_code VARCHAR(255) PRIMARY KEY, name VARCHAR(255), minor_unit INT, is_active BIT)Mapping — column-level lineage
fibo::fnd::Currency : Relational
{
~mainTable [FiboParquet]currency
currencyCode : [FiboParquet]currency.currency_code,
name : [FiboParquet]currency.name,
minorUnit : [FiboParquet]currency.minor_unit,
isActive : [FiboParquet]currency.is_active
}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'
)