Bunq · Schema

NoteAttachmentAdyenCardTransaction

Banking

Properties

Name Type Description
description string Optional description of the attachment.
attachment_id integer The reference to the uploaded file to attach to this note.
View JSON Schema on GitHub

JSON Schema

bunq-noteattachmentadyencardtransaction-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/NoteAttachmentAdyenCardTransaction",
  "title": "NoteAttachmentAdyenCardTransaction",
  "type": "object",
  "properties": {
    "description": {
      "type": "string",
      "description": "Optional description of the attachment.",
      "readOnly": false,
      "writeOnly": false
    },
    "attachment_id": {
      "type": "integer",
      "description": "The reference to the uploaded file to attach to this note.",
      "readOnly": false,
      "writeOnly": true
    }
  },
  "required": [
    "attachment_id"
  ]
}