ArcBest · Schema

TrackingStatus

LogisticsFreightLTLSupply ChainShippingTransportation

Properties

Name Type Description
proNumber string PRO number
status string Current shipment status
lastLocation string Last known location
estimatedDelivery string Estimated delivery date
events array
View JSON Schema on GitHub

JSON Schema

arcbest-api-tracking-status-schema.json Raw ↑
{
  "type": "object",
  "properties": {
    "proNumber": {
      "type": "string",
      "description": "PRO number",
      "example": "PRO-123456789"
    },
    "status": {
      "type": "string",
      "description": "Current shipment status",
      "enum": [
        "BOOKED",
        "PICKED_UP",
        "IN_TRANSIT",
        "OUT_FOR_DELIVERY",
        "DELIVERED",
        "EXCEPTION"
      ],
      "example": "IN_TRANSIT"
    },
    "lastLocation": {
      "type": "string",
      "description": "Last known location",
      "example": "Kansas City, MO"
    },
    "estimatedDelivery": {
      "type": "string",
      "format": "date",
      "description": "Estimated delivery date",
      "example": "2026-04-22"
    },
    "events": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "date": {},
          "description": {},
          "location": {}
        }
      }
    }
  },
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/arcbest/refs/heads/main/json-schema/arcbest-api-tracking-status-schema.json",
  "title": "TrackingStatus"
}