Currency

Basis-PlanStartupBusiness-Plan
Name Type Description
currencies.name.short String Short currency name (i.e. dollar)
currencies.name.full String Full currency name (i.e. United States dollar)
currencies.code String ISO 4217 currency code
currencies.symbol String Currency symbol (notice: use UTF-8 to properly display all the symbols)
currencies.subunit.name String Singular noun of the currency subunit
currencies.subunit.ratio int Defines how many subunits are in the one (base) unit
currencies.denominations.type String COIN or BANKNOTE
currencies.denominations.value int Value in subunits
currencies.denominations.displayAs String How the actual value is presented on the coin/banknote. Notice that sometimes coins would read 1/2 of the base currency instead of 50 subunits, if the subunit.ratio is 100 (ex. Algerian dinar has a values of 1/4 or 1/2 dinars)
currencies.denominations.isSubunit String Whether displayAs value is in subunits or not
Basis-PlanStartupBusiness-Plan
Name Type Description
textual.title String Currency category name
textual.sections.id[SUMMARY].body String Country currency, symbol and code
textual.sections.id[DENOMINATIONS].body String Denominations (banknotes & coins)
{
  "currencies": [
    {
      "name": {
        "short": "euro",
        "full": "euro"
      },
      "code": "EUR",
      "symbol": "€",
      "subunit": {
        "name": "Cent",
        "ratio": 100
      },
      "denominations": [
        {
          "type": "COIN",
          "value": 1,
          "displayAs": "1",
          "isSubunit": true
        },
        {
          "type": "COIN",
          "value": 2,
          "displayAs": "2",
          "isSubunit": true
        },
        {
          "type": "COIN",
          "value": 5,
          "displayAs": "5",
          "isSubunit": true
        },
        {
          "type": "COIN",
          "value": 10,
          "displayAs": "10",
          "isSubunit": true
        },
        {
          "type": "COIN",
          "value": 20,
          "displayAs": "20",
          "isSubunit": true
        },
        {
          "type": "COIN",
          "value": 50,
          "displayAs": "50",
          "isSubunit": true
        },
        {
          "type": "COIN",
          "value": 100,
          "displayAs": "1",
          "isSubunit": false
        },
        {
          "type": "COIN",
          "value": 200,
          "displayAs": "2",
          "isSubunit": false
        },
        {
          "type": "BANKNOTE",
          "value": 500,
          "displayAs": "5",
          "isSubunit": false
        },
        {
          "type": "BANKNOTE",
          "value": 1000,
          "displayAs": "10",
          "isSubunit": false
        },
        {
          "type": "BANKNOTE",
          "value": 2000,
          "displayAs": "20",
          "isSubunit": false
        },
        {
          "type": "BANKNOTE",
          "value": 5000,
          "displayAs": "50",
          "isSubunit": false
        },
        {
          "type": "BANKNOTE",
          "value": 10000,
          "displayAs": "100",
          "isSubunit": false
        },
        {
          "type": "BANKNOTE",
          "value": 20000,
          "displayAs": "200",
          "isSubunit": false
        },
        {
          "type": "BANKNOTE",
          "value": 50000,
          "displayAs": "500",
          "isSubunit": false
        }
      ]
    }
  ],
  "textual": {
    "title": "Currency",
    "sections": [
      {
        "id": "SUMMARY",
        "body": [
          "France uses the euro (symbol: €), code EUR."
        ]
      },
      {
        "id": "DENOMINATIONS",
        "body": [
          "Banknotes come in denominations of 500, 200, 100, 50, 20, 10 and 5 euro. Euro is subdivided into 100 cents. Coins come in denominations of 2 and 1 euros and 50, 20, 10, 5, 2 and 1 cents."
        ]
      }
    ]
  }
}