Bunq · Schema

AttachmentPublic

Banking

Properties

Name Type Description
uuid string The uuid of the attachment.
description string The description of the attachment.
content_type string The content type of the attachment's file.
View JSON Schema on GitHub

JSON Schema

bunq-attachmentpublic-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AttachmentPublic",
  "title": "AttachmentPublic",
  "type": "object",
  "properties": {
    "uuid": {
      "type": "string",
      "description": "The uuid of the attachment.",
      "readOnly": true,
      "writeOnly": false
    },
    "description": {
      "type": "string",
      "description": "The description of the attachment.",
      "readOnly": true,
      "writeOnly": false
    },
    "content_type": {
      "type": "string",
      "description": "The content type of the attachment's file.",
      "readOnly": true,
      "writeOnly": false
    }
  }
}