Bunq · Schema

MonetaryAccountProfileDrain

Banking

Properties

Name Type Description
status string The status of the profile.
balance_preferred object The goal balance.
balance_threshold_high object The high threshold balance.
savings_account_alias object The savings monetary account.
View JSON Schema on GitHub

JSON Schema

bunq-monetaryaccountprofiledrain-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/MonetaryAccountProfileDrain",
  "title": "MonetaryAccountProfileDrain",
  "type": "object",
  "properties": {
    "status": {
      "type": "string",
      "description": "The status of the profile.",
      "readOnly": false,
      "writeOnly": false
    },
    "balance_preferred": {
      "type": "object",
      "description": "The goal balance.",
      "readOnly": false,
      "writeOnly": false,
      "$ref": "#/components/schemas/Amount"
    },
    "balance_threshold_high": {
      "type": "object",
      "description": "The high threshold balance.",
      "readOnly": false,
      "writeOnly": false,
      "$ref": "#/components/schemas/Amount"
    },
    "savings_account_alias": {
      "type": "object",
      "description": "The savings monetary account.",
      "readOnly": false,
      "writeOnly": false,
      "$ref": "#/components/schemas/LabelMonetaryAccount"
    }
  }
}