Australia Post · Schema

LocationVO

Location details

Address ValidationClick and CollectDeliveryE-CommerceLabelsLocationsLogisticsParcel LockerPostalPostageShippingTracking

Properties

Name Type Description
work_centre_code string Work Centre Code.
location_name string Location Name.
View JSON Schema on GitHub

JSON Schema

delivery-partner-locationvo.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "LocationVO",
  "description": "Location details",
  "required": [
    "location_name",
    "work_centre_code"
  ],
  "type": "object",
  "properties": {
    "work_centre_code": {
      "maxLength": 10,
      "minLength": 1,
      "type": "string",
      "description": "Work Centre Code.",
      "example": "123456"
    },
    "location_name": {
      "maxLength": 50,
      "minLength": 1,
      "type": "string",
      "description": "Location Name.",
      "example": "ABBOTSFORD"
    }
  }
}