Bunq · Schema

ShareDetailReadOnly

Banking

Properties

Name Type Description
view_balance boolean If set to true, the invited user will be able to view the account balance.
view_old_events boolean If set to true, the invited user will be able to view events from before the share was active.
view_new_events boolean If set to true, the invited user will be able to view events starting from the time the share became active.
View JSON Schema on GitHub

JSON Schema

bunq-sharedetailreadonly-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ShareDetailReadOnly",
  "title": "ShareDetailReadOnly",
  "type": "object",
  "properties": {
    "view_balance": {
      "type": "boolean",
      "description": "If set to true, the invited user will be able to view the account balance.",
      "readOnly": false,
      "writeOnly": false
    },
    "view_old_events": {
      "type": "boolean",
      "description": "If set to true, the invited user will be able to view events from before the share was active.",
      "readOnly": false,
      "writeOnly": false
    },
    "view_new_events": {
      "type": "boolean",
      "description": "If set to true, the invited user will be able to view events starting from the time the share became active.",
      "readOnly": false,
      "writeOnly": false
    }
  }
}