Australia Post · Schema

SystemVO

The System where the event originated.

Address ValidationClick and CollectDeliveryE-CommerceLabelsLocationsLogisticsParcel LockerPostalPostageShippingTracking

Properties

Name Type Description
sender_id string The identifier of the sending system.
sender_name string The name of the sending system.
View JSON Schema on GitHub

JSON Schema

delivery-partner-systemvo.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "SystemVO",
  "description": "The System where the event originated.",
  "required": [
    "sender_id",
    "sender_name"
  ],
  "type": "object",
  "properties": {
    "sender_id": {
      "maxLength": 50,
      "minLength": 1,
      "type": "string",
      "description": "The identifier of the sending system.",
      "example": "DODDLE"
    },
    "sender_name": {
      "maxLength": 50,
      "minLength": 1,
      "type": "string",
      "description": "The name of the sending system.",
      "example": "Doddle"
    }
  }
}