Bunq · Schema

AttachmentPublicRead

Banking

Properties

Name Type Description
uuid string The UUID of the attachment.
created string The timestamp of the attachment's creation.
updated string The timestamp of the attachment's last update.
attachment object The attachment.
View JSON Schema on GitHub

JSON Schema

bunq-attachmentpublicread-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AttachmentPublicRead",
  "title": "AttachmentPublicRead",
  "type": "object",
  "properties": {
    "uuid": {
      "type": "string",
      "description": "The UUID of the attachment.",
      "readOnly": true,
      "writeOnly": false
    },
    "created": {
      "type": "string",
      "description": "The timestamp of the attachment's creation.",
      "readOnly": true,
      "writeOnly": false
    },
    "updated": {
      "type": "string",
      "description": "The timestamp of the attachment's last update.",
      "readOnly": true,
      "writeOnly": false
    },
    "attachment": {
      "type": "object",
      "description": "The attachment.",
      "readOnly": true,
      "writeOnly": false,
      "$ref": "#/components/schemas/Attachment"
    }
  }
}