Currency
Currency reference data with ISO codes and country association
6 properties
Schema
Properties
| Property | Type | Mode | Description | Required |
|---|---|---|---|---|
| code | string | stored | ISO 4217 three-letter currency code Example: | Required |
| numericCode | string | stored | ISO 4217 numeric currency code Example: | Optional |
| name | string | stored | Currency name Example: | Required |
| symbol | string | stored | Currency symbol Example: | Optional |
| decimalDigits | number | stored | Number of decimal places typically used Example: | Optional |
| countries | Country[] | stored | Countries that use this currency | Optional |
Examples
Example 1
{
"@type": "Currency",
"code": "USD",
"numericCode": "840",
"name": "United States Dollar",
"symbol": "$",
"decimalDigits": 2,
"countries": [
{
"@type": "Country",
"code": "US",
"name": "United States of America",
"demonym": "American"
}
]
}Example 2
{
"@type": "Currency",
"code": "EUR",
"numericCode": "978",
"name": "Euro",
"symbol": "€",
"decimalDigits": 2,
"countries": [
{
"@type": "Country",
"code": "FR",
"name": "France",
"demonym": "French"
},
{
"@type": "Country",
"code": "DE",
"name": "Germany",
"demonym": "German"
}
]
}Example 3
{
"@type": "Currency",
"code": "GBP",
"numericCode": "826",
"name": "British Pound Sterling",
"symbol": "£",
"decimalDigits": 2,
"countries": [
{
"@type": "Country",
"code": "GB",
"name": "United Kingdom",
"demonym": "British"
}
]
}Example 4
{
"@type": "Currency",
"code": "JPY",
"numericCode": "392",
"name": "Japanese Yen",
"symbol": "¥",
"decimalDigits": 0,
"countries": [
{
"@type": "Country",
"code": "JP",
"name": "Japan",
"demonym": "Japanese"
}
]
}