Australia Post · Schema

DeliveryVO

Delivery details.

Address ValidationClick and CollectDeliveryE-CommerceLabelsLocationsLogisticsParcel LockerPostalPostageShippingTracking

Properties

Name Type Description
destination_postcode string The 4-digit Australian Postcode to where the article has been sent
proof_of_delivery object
View JSON Schema on GitHub

JSON Schema

delivery-partner-deliveryvo.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "DeliveryVO",
  "description": "Delivery details.",
  "type": "object",
  "properties": {
    "destination_postcode": {
      "maxLength": 4,
      "minLength": 4,
      "pattern": "^\\d{4}$",
      "type": "string",
      "description": "The 4-digit Australian Postcode to where the article has been sent",
      "example": "3204"
    },
    "proof_of_delivery": {
      "$ref": "#/components/schemas/ProofOfDeliveryVO"
    }
  }
}