Bunq · Schema

BirdeeInvestmentPortfolioBalance

Banking

Properties

Name Type Description
amount_available object The current valuation of the portfolio, minus any amount pending withdrawal.
amount_deposit_total object The total amount deposited.
amount_withdrawal_total object The total amount withdrawn.
amount_fee_total object The total fee amount.
amount_profit object The difference between the netto deposited amount and the current valuation.
amount_deposit_pending object The amount that's sent to Birdee, but pending investment on the portfolio.
amount_withdrawal_pending object The amount that's sent to Birdee, but pending withdrawal.
View JSON Schema on GitHub

JSON Schema

bunq-birdeeinvestmentportfoliobalance-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/BirdeeInvestmentPortfolioBalance",
  "title": "BirdeeInvestmentPortfolioBalance",
  "type": "object",
  "properties": {
    "amount_available": {
      "type": "object",
      "description": "The current valuation of the portfolio, minus any amount pending withdrawal.",
      "readOnly": true,
      "writeOnly": false,
      "$ref": "#/components/schemas/Amount"
    },
    "amount_deposit_total": {
      "type": "object",
      "description": "The total amount deposited.",
      "readOnly": true,
      "writeOnly": false,
      "$ref": "#/components/schemas/Amount"
    },
    "amount_withdrawal_total": {
      "type": "object",
      "description": "The total amount withdrawn.",
      "readOnly": true,
      "writeOnly": false,
      "$ref": "#/components/schemas/Amount"
    },
    "amount_fee_total": {
      "type": "object",
      "description": "The total fee amount.",
      "readOnly": true,
      "writeOnly": false,
      "$ref": "#/components/schemas/Amount"
    },
    "amount_profit": {
      "type": "object",
      "description": "The difference between the netto deposited amount and the current valuation.",
      "readOnly": true,
      "writeOnly": false,
      "$ref": "#/components/schemas/Amount"
    },
    "amount_deposit_pending": {
      "type": "object",
      "description": "The amount that's sent to Birdee, but pending investment on the portfolio.",
      "readOnly": true,
      "writeOnly": false,
      "$ref": "#/components/schemas/Amount"
    },
    "amount_withdrawal_pending": {
      "type": "object",
      "description": "The amount that's sent to Birdee, but pending withdrawal.",
      "readOnly": true,
      "writeOnly": false,
      "$ref": "#/components/schemas/Amount"
    }
  }
}