Australia Post · Schema

ServiceActionsVO

Elements relating to the specific Product Service Codes, e.g. Service Codes 81, 82 and 83 are for alcohol and require ID to be presented in some Australian States

Address ValidationClick and CollectDeliveryE-CommerceLabelsLocationsLogisticsParcel LockerPostalPostageShippingTracking

Properties

Name Type Description
type_id string The type of ID presented. Valid types are: Australian Driver License,Red or Orange MyPost card with address, Keypass or other Government-issued Proof of Age card, Australian or international passport,
id_available string Was ID of the receiver made available at the time of delivery?
sight_id string Was ID of the receiver sighted by the person making the delivery?
over_18 string Was the recipient over 18? Relevant where the Service Code on the manifest is one of 81, 82, 83.
View JSON Schema on GitHub

JSON Schema

delivery-partner-serviceactionsvo.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "ServiceActionsVO",
  "description": "Elements relating to the specific Product Service Codes, e.g. Service Codes 81, 82 and 83 are for alcohol and require ID to be presented in some Australian States",
  "type": "object",
  "properties": {
    "type_id": {
      "maxLength": 50,
      "minLength": 0,
      "type": "string",
      "description": "The type of ID presented. Valid types are: Australian Driver License,Red or Orange MyPost card with address, Keypass or other Government-issued Proof of Age card, Australian or international passport, Digital iD."
    },
    "id_available": {
      "pattern": "X|N",
      "type": "string",
      "description": "Was ID of the receiver made available at the time of delivery?",
      "example": "X"
    },
    "sight_id": {
      "pattern": "X|N",
      "type": "string",
      "description": "Was ID of the receiver sighted by the person making the delivery?",
      "example": "X"
    },
    "over_18": {
      "pattern": "X|N",
      "type": "string",
      "description": "Was the recipient over 18? Relevant where the Service Code on the manifest is one of 81, 82, 83.",
      "example": "X"
    }
  }
}