Bunq · Schema

ExportStatementRead

Banking

Properties

Name Type Description
id integer The id of the customer statement model.
created string The timestamp of the statement model's creation.
updated string The timestamp of the statement model's last update.
date_start string The date from when this statement shows transactions.
date_end string The date until which statement shows transactions.
status string The status of the export.
statement_number integer MT940 Statement number. Unique per monetary account.
statement_format string The format of statement.
regional_format string The regional format of a CSV statement.
alias_monetary_account object The monetary account for which this statement was created.
View JSON Schema on GitHub

JSON Schema

bunq-exportstatementread-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ExportStatementRead",
  "title": "ExportStatementRead",
  "type": "object",
  "properties": {
    "id": {
      "type": "integer",
      "description": "The id of the customer statement model.",
      "readOnly": true,
      "writeOnly": false
    },
    "created": {
      "type": "string",
      "description": "The timestamp of the statement model's creation.",
      "readOnly": true,
      "writeOnly": false
    },
    "updated": {
      "type": "string",
      "description": "The timestamp of the statement model's last update.",
      "readOnly": true,
      "writeOnly": false
    },
    "date_start": {
      "type": "string",
      "description": "The date from when this statement shows transactions.",
      "readOnly": true,
      "writeOnly": false
    },
    "date_end": {
      "type": "string",
      "description": "The date until which statement shows transactions.",
      "readOnly": true,
      "writeOnly": false
    },
    "status": {
      "type": "string",
      "description": "The status of the export.",
      "readOnly": true,
      "writeOnly": false
    },
    "statement_number": {
      "type": "integer",
      "description": "MT940 Statement number. Unique per monetary account.",
      "readOnly": true,
      "writeOnly": false
    },
    "statement_format": {
      "type": "string",
      "description": "The format of statement.",
      "readOnly": true,
      "writeOnly": false
    },
    "regional_format": {
      "type": "string",
      "description": "The regional format of a CSV statement.",
      "readOnly": true,
      "writeOnly": false
    },
    "alias_monetary_account": {
      "type": "object",
      "description": "The monetary account for which this statement was created.",
      "readOnly": true,
      "writeOnly": false,
      "$ref": "#/components/schemas/LabelMonetaryAccount"
    }
  }
}