Alaska Airlines · JSON Structure

Alaska Air Cargo Shipment Tracking Structure

Shipment tracking details with event history

Type: object Properties: 7
AirlinesAviationTravelCargoLoyaltyFlight StatusFortune 500

ShipmentTracking is a JSON Structure definition published by Alaska Airlines, describing 7 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

awbNumber status origin destination currentLocation estimatedDelivery events

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/alaska-air/refs/heads/main/json-structure/alaska-air-cargo-shipment-tracking-structure.json",
  "name": "ShipmentTracking",
  "type": "object",
  "description": "Shipment tracking details with event history",
  "properties": {
    "awbNumber": {
      "type": "string",
      "description": "Air Waybill number",
      "example": "027-12345678"
    },
    "status": {
      "type": "string",
      "description": "Current status",
      "example": "In Transit"
    },
    "origin": {
      "type": "string",
      "description": "Origin airport IATA code",
      "example": "SEA"
    },
    "destination": {
      "type": "string",
      "description": "Destination airport IATA code",
      "example": "HNL"
    },
    "currentLocation": {
      "type": "string",
      "description": "Current location IATA code",
      "example": "SEA"
    },
    "estimatedDelivery": {
      "type": "date",
      "description": "Estimated delivery date",
      "example": "2026-04-21"
    },
    "events": {
      "type": "array",
      "description": "Tracking event history",
      "items": {
        "$ref": "#/components/schemas/TrackingEvent"
      }
    }
  }
}