Skip to end of metadata
Go to start of metadata
Structure
Field | Type | Required | Description |
---|
id | Integer | true | Unique identificator of the Currency. |
code | String | true | Code of the Currency (ISO 4217) |
name | String | true | Name of the Currency. |
nameI18n | String | true | Name of the Currency in user language. |
symbol | String | true | The UTF-8 symbol for this currency. |
decimalPlaces | Integer | true | Number of decimals. Example: if decimalPlaces is 2, then a value would look like "2.00€". |
JSON representation
{
"id": 1,
"code": "EUR",
"name": "Euro",
"nameI18n": "Euro",
"symbol": "€",
"decimalPlaces": 2
}