United States Postal Service · JSON Structure

Carrier Pickup Pickup Response Structure

Carrier pickup confirmation response.

Type: object Properties: 4
GovernmentPostal ServiceShippingLogisticsAddress ValidationPackage Tracking

PickupResponse is a JSON Structure definition published by United States Postal Service, describing 4 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

confirmationNumber dayOfWeek pickupDate address

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/united-states-postal-service/refs/heads/main/json-structure/carrier-pickup-pickup-response-structure.json",
  "name": "PickupResponse",
  "description": "Carrier pickup confirmation response.",
  "properties": {
    "confirmationNumber": {
      "description": "Unique confirmation number for the pickup.",
      "example": "WTC123456789",
      "type": "string"
    },
    "dayOfWeek": {
      "description": "Day of the week for the scheduled pickup.",
      "example": "Monday",
      "type": "string"
    },
    "pickupDate": {
      "description": "Date of the scheduled pickup.",
      "example": "2025-03-17",
      "type": "date"
    },
    "address": {
      "$ref": "#/components/schemas/PickupAddress"
    }
  },
  "type": "object"
}