Australia Post · Schema

AttachmentVO

Image attachments showing details of a delivery (e.g. for damaged article).

Address ValidationClick and CollectDeliveryE-CommerceLabelsLocationsLogisticsParcel LockerPostalPostageShippingTracking

Properties

Name Type Description
attachment_content string A base64 encoded PNG image of the recipients signature. Restricted to 10240 bytes.
content_type string The type of image format of the attachment content.
View JSON Schema on GitHub

JSON Schema

delivery-partner-attachmentvo.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "AttachmentVO",
  "description": "Image attachments showing details of a delivery (e.g. for damaged article).",
  "required": [
    "attachment_content",
    "content_type"
  ],
  "type": "object",
  "properties": {
    "attachment_content": {
      "type": "string",
      "description": "A base64 encoded PNG image of the recipients signature. Restricted to 10240 bytes.",
      "example": "VGhpcyB3b3VsZCBiZSBhIHNhbXBsZSBQTkcgaW1hZ2UgYmluYXJ5..."
    },
    "content_type": {
      "type": "string",
      "description": "The type of image format of the attachment content.",
      "example": "image/png"
    }
  }
}