United States Postal Service · Schema
TrackingEvent
A single tracking scan event for a package.
GovernmentPostal ServiceShippingLogisticsAddress ValidationPackage Tracking
Properties
| Name | Type | Description |
|---|---|---|
| EventTime | string | Time of the tracking event. |
| EventDate | string | Date of the tracking event. |
| Event | string | Description of the tracking event. |
| EventCity | string | City where the event occurred. |
| EventState | string | State where the event occurred. |
| EventZIPCode | string | ZIP Code of the event location. |
| EventCountry | string | Country where the event occurred (empty for domestic). |
| FirmName | string | Company name for business deliveries. |
| Name | string | Recipient name if available. |
| AuthorizedAgent | string | Whether delivered to an authorized agent. |
| DeliveryAttributeCode | string | Code indicating delivery type or condition. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/united-states-postal-service/refs/heads/main/json-schema/tracking-tracking-event-schema.json",
"title": "TrackingEvent",
"description": "A single tracking scan event for a package.",
"type": "object",
"properties": {
"EventTime": {
"type": "string",
"description": "Time of the tracking event.",
"example": "8:00 am"
},
"EventDate": {
"type": "string",
"description": "Date of the tracking event.",
"example": "March 14, 2025"
},
"Event": {
"type": "string",
"description": "Description of the tracking event.",
"example": "DELIVERED"
},
"EventCity": {
"type": "string",
"description": "City where the event occurred.",
"example": "WASHINGTON"
},
"EventState": {
"type": "string",
"description": "State where the event occurred.",
"example": "DC"
},
"EventZIPCode": {
"type": "string",
"description": "ZIP Code of the event location.",
"example": "20212"
},
"EventCountry": {
"type": "string",
"description": "Country where the event occurred (empty for domestic).",
"example": ""
},
"FirmName": {
"type": "string",
"description": "Company name for business deliveries.",
"example": ""
},
"Name": {
"type": "string",
"description": "Recipient name if available.",
"example": "JOHN DOE"
},
"AuthorizedAgent": {
"type": "string",
"description": "Whether delivered to an authorized agent.",
"example": "false"
},
"DeliveryAttributeCode": {
"type": "string",
"description": "Code indicating delivery type or condition.",
"example": "01"
}
}
}