Bunq · Schema

ExportAnnualOverviewRead

Banking

Properties

Name Type Description
id integer The id of the annual overview as created on the server.
created string The timestamp of the annual overview 's creation.
updated string The timestamp of the annual overview 's last update.
year integer The year for which the overview is.
alias_user object The user to which this annual overview belongs.
View JSON Schema on GitHub

JSON Schema

bunq-exportannualoverviewread-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ExportAnnualOverviewRead",
  "title": "ExportAnnualOverviewRead",
  "type": "object",
  "properties": {
    "id": {
      "type": "integer",
      "description": "The id of the annual overview as created on the server.",
      "readOnly": true,
      "writeOnly": false
    },
    "created": {
      "type": "string",
      "description": "The timestamp of the annual overview 's creation.",
      "readOnly": true,
      "writeOnly": false
    },
    "updated": {
      "type": "string",
      "description": "The timestamp of the annual overview 's last update.",
      "readOnly": true,
      "writeOnly": false
    },
    "year": {
      "type": "integer",
      "description": "The year for which the overview is.",
      "readOnly": true,
      "writeOnly": false
    },
    "alias_user": {
      "type": "object",
      "description": "The user to which this annual overview belongs.",
      "readOnly": true,
      "writeOnly": false,
      "$ref": "#/components/schemas/LabelUser"
    }
  }
}