Bunq · Schema

CurrencyConversionListing

Banking

Properties

Name Type Description
id integer The id of the conversion.
created string The timestamp of the conversion's creation.
updated string The timestamp of the conversion's last update.
status string The status of the conversion.
date_delivery_expected string The expected delivery date of the conversion.
rate string The rate of the conversion.
amount object The amount of the conversion.
counter_amount object The amount of the counter conversion.
group_uuid string The group uuid of the conversion.
type string The type of this conversion.
order_type string The order type, buying or selling.
label_monetary_account object The label of the monetary account.
counter_label_monetary_account object The label of the counter monetary account.
payment object The payment associated with this conversion.
View JSON Schema on GitHub

JSON Schema

bunq-currencyconversionlisting-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CurrencyConversionListing",
  "title": "CurrencyConversionListing",
  "type": "object",
  "properties": {
    "id": {
      "type": "integer",
      "description": "The id of the conversion.",
      "readOnly": true,
      "writeOnly": false
    },
    "created": {
      "type": "string",
      "description": "The timestamp of the conversion's creation.",
      "readOnly": true,
      "writeOnly": false
    },
    "updated": {
      "type": "string",
      "description": "The timestamp of the conversion's last update.",
      "readOnly": true,
      "writeOnly": false
    },
    "status": {
      "type": "string",
      "description": "The status of the conversion.",
      "readOnly": true,
      "writeOnly": false
    },
    "date_delivery_expected": {
      "type": "string",
      "description": "The expected delivery date of the conversion.",
      "readOnly": true,
      "writeOnly": false
    },
    "rate": {
      "type": "string",
      "description": "The rate of the conversion.",
      "readOnly": true,
      "writeOnly": false
    },
    "amount": {
      "type": "object",
      "description": "The amount of the conversion.",
      "readOnly": true,
      "writeOnly": false,
      "$ref": "#/components/schemas/Amount"
    },
    "counter_amount": {
      "type": "object",
      "description": "The amount of the counter conversion.",
      "readOnly": true,
      "writeOnly": false,
      "$ref": "#/components/schemas/Amount"
    },
    "group_uuid": {
      "type": "string",
      "description": "The group uuid of the conversion.",
      "readOnly": true,
      "writeOnly": false
    },
    "type": {
      "type": "string",
      "description": "The type of this conversion.",
      "readOnly": true,
      "writeOnly": false
    },
    "order_type": {
      "type": "string",
      "description": "The order type, buying or selling.",
      "readOnly": true,
      "writeOnly": false
    },
    "label_monetary_account": {
      "type": "object",
      "description": "The label of the monetary account.",
      "readOnly": true,
      "writeOnly": false,
      "$ref": "#/components/schemas/LabelMonetaryAccount"
    },
    "counter_label_monetary_account": {
      "type": "object",
      "description": "The label of the counter monetary account.",
      "readOnly": true,
      "writeOnly": false,
      "$ref": "#/components/schemas/LabelMonetaryAccount"
    },
    "payment": {
      "type": "object",
      "description": "The payment associated with this conversion.",
      "readOnly": true,
      "writeOnly": false,
      "$ref": "#/components/schemas/Payment"
    }
  }
}