Currency
CurrencyFNDA unit of monetary value issued by a sovereign or supranational authority and used to denominate transactions, holdings, and prices.
Datasets representing this concept
1 dataset| Dataset | Role | Pure |
|---|---|---|
| currency | 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/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];
}