Bunq · Schema

ExportStatementCardPdf

Banking

Properties

Name Type Description
date_start string The start date for making statements.
date_end string The end date for making statements.
View JSON Schema on GitHub

JSON Schema

bunq-exportstatementcardpdf-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ExportStatementCardPdf",
  "title": "ExportStatementCardPdf",
  "type": "object",
  "properties": {
    "date_start": {
      "type": "string",
      "description": "The start date for making statements.",
      "readOnly": false,
      "writeOnly": false
    },
    "date_end": {
      "type": "string",
      "description": "The end date for making statements.",
      "readOnly": false,
      "writeOnly": false
    }
  },
  "required": [
    "date_start",
    "date_end"
  ]
}