Currency
A context representing an individual Currency.
Type
fdc3.currency
Schema
https://fdc3.finos.org/schemas/next/context/currency.schema.json
Details
Property | Type | Required | Example Value |
---|---|---|---|
type | string | Yes | 'fdc3.currency' |
name | string | No | 'US Dollar' |
id.CURRENCY_ISOCODE * | string | Yes | 'USD' |
* The CURRENCY_ISOCODE
should conform to 3 character alphabetic codes defined in ISO 4217.
Example
const currency = {
type: 'fdc3.currency',
name: 'US Dollar',
id: {
CURRENCY_ISOCODE: "USD"
}
}