Skip to content

Latest commit

 

History

History
38 lines (25 loc) · 488 Bytes

app-currency.md

File metadata and controls

38 lines (25 loc) · 488 Bytes

app > currency

Path: metadata > app > currency.

Currency definitions.

symbolMap

Object<string, string>

A currency-code => symbol mapping.

Example:

{
    "EUR":"",
    "GBP":"£"
}

list

string[]

A list of currencies available in the system. Values defined as 3-letter currency codes in ISO 4217 standard. Use __APPEND__ to add new currencies w/o deleting existing.

Example:

{
    "list": [
        "__APPEND__",
        "COD"
    ]
}