Australia Post · Schema

PointsResponse

Address ValidationClick and CollectDeliveryE-CommerceLabelsLocationsLogisticsParcel LockerPostalPostageShippingTracking

Properties

Name Type Description
points array An array of point objects. A point object is a data structure returned from calls to Locations API endpoints, and represents the location of a specific Australia Post outlet or facility. The number of
View JSON Schema on GitHub

JSON Schema

locations-pointsresponse.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "PointsResponse",
  "description": "",
  "properties": {
    "points": {
      "type": "array",
      "description": "An array of point objects. A point object is a data structure returned from calls to Locations API endpoints, and represents the location of a specific Australia Post outlet or facility. The number of point objects returned depends on the endpoint used, and the parameters provided in the request.",
      "items": {
        "allOf": [
          {
            "$ref": "#/components/schemas/Point"
          }
        ]
      }
    }
  }
}