Bunq · Schema

Amount

Banking

Properties

Name Type Description
value string The amount formatted to two decimal places.
currency string The currency of the amount. It is an ISO 4217 formatted currency code.
View JSON Schema on GitHub

JSON Schema

bunq-amount-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Amount",
  "title": "Amount",
  "type": "object",
  "properties": {
    "value": {
      "type": "string",
      "description": "The amount formatted to two decimal places.",
      "readOnly": false,
      "writeOnly": false
    },
    "currency": {
      "type": "string",
      "description": "The currency of the amount. It is an ISO 4217 formatted currency code.",
      "readOnly": false,
      "writeOnly": false
    }
  }
}