Bunq · Schema

MonetaryAccountCardRead

Banking

Properties

Name Type Description
id integer The id of the MonetaryAccountCard.
created string The timestamp of the MonetaryAccountCard's creation.
updated string The timestamp of the MonetaryAccountCard's last update.
currency string The currency of the MonetaryAccountCard as an ISO 4217 formatted currency code.
description string The description of the MonetaryAccountCard. Defaults to 'prepaid credit card'.
daily_limit object The daily spending limit Amount of the MonetaryAccountCard.
balance object The current available balance Amount of the MonetaryAccountCard.
alias array The Aliases for the MonetaryAccountCard.
public_uuid string The MonetaryAccountCard's public UUID.
status string The status of the MonetaryAccountCard.
sub_status string The sub-status of the MonetaryAccountCard providing extra information regarding the status.
user_id integer The id of the User who owns the MonetaryAccountCard.
View JSON Schema on GitHub

JSON Schema

bunq-monetaryaccountcardread-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/MonetaryAccountCardRead",
  "title": "MonetaryAccountCardRead",
  "type": "object",
  "properties": {
    "id": {
      "type": "integer",
      "description": "The id of the MonetaryAccountCard.",
      "readOnly": true,
      "writeOnly": false
    },
    "created": {
      "type": "string",
      "description": "The timestamp of the MonetaryAccountCard's creation.",
      "readOnly": true,
      "writeOnly": false
    },
    "updated": {
      "type": "string",
      "description": "The timestamp of the MonetaryAccountCard's last update.",
      "readOnly": true,
      "writeOnly": false
    },
    "currency": {
      "type": "string",
      "description": "The currency of the MonetaryAccountCard as an ISO 4217 formatted currency code.",
      "readOnly": true,
      "writeOnly": false
    },
    "description": {
      "type": "string",
      "description": "The description of the MonetaryAccountCard. Defaults to 'prepaid credit card'.",
      "readOnly": true,
      "writeOnly": false
    },
    "daily_limit": {
      "type": "object",
      "description": "The daily spending limit Amount of the MonetaryAccountCard.",
      "readOnly": true,
      "writeOnly": false,
      "$ref": "#/components/schemas/Amount"
    },
    "balance": {
      "type": "object",
      "description": "The current available balance Amount of the MonetaryAccountCard.",
      "readOnly": true,
      "writeOnly": false,
      "$ref": "#/components/schemas/Amount"
    },
    "alias": {
      "type": "array",
      "description": "The Aliases for the MonetaryAccountCard.",
      "readOnly": true,
      "writeOnly": false,
      "items": {
        "$ref": "#/components/schemas/Pointer"
      }
    },
    "public_uuid": {
      "type": "string",
      "description": "The MonetaryAccountCard's public UUID.",
      "readOnly": true,
      "writeOnly": false
    },
    "status": {
      "type": "string",
      "description": "The status of the MonetaryAccountCard.",
      "readOnly": true,
      "writeOnly": false
    },
    "sub_status": {
      "type": "string",
      "description": "The sub-status of the MonetaryAccountCard providing extra information regarding the status.",
      "readOnly": true,
      "writeOnly": false
    },
    "user_id": {
      "type": "integer",
      "description": "The id of the User who owns the MonetaryAccountCard.",
      "readOnly": true,
      "writeOnly": false
    }
  }
}