Alaska Airlines · JSON Structure

Alaska Air Cargo Rate Request Structure

Request for cargo rate estimate

Type: object Properties: 6 Required: 4
AirlinesAviationTravelCargoLoyaltyFlight StatusFortune 500

RateRequest is a JSON Structure definition published by Alaska Airlines, describing 6 properties, of which 4 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

origin destination shipDate weight weightUnit pieces

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-rate-request-structure.json",
  "name": "RateRequest",
  "type": "object",
  "description": "Request for cargo rate estimate",
  "properties": {
    "origin": {
      "type": "string",
      "description": "Origin airport IATA code",
      "example": "SEA"
    },
    "destination": {
      "type": "string",
      "description": "Destination airport IATA code",
      "example": "HNL"
    },
    "shipDate": {
      "type": "date",
      "description": "Desired ship date",
      "example": "2026-04-20"
    },
    "weight": {
      "type": "double",
      "description": "Shipment weight",
      "example": 45.5
    },
    "weightUnit": {
      "type": "string",
      "description": "Weight unit",
      "enum": [
        "KG",
        "LB"
      ],
      "example": "KG"
    },
    "pieces": {
      "type": "int32",
      "description": "Number of pieces",
      "example": 3
    }
  },
  "required": [
    "origin",
    "destination",
    "shipDate",
    "weight"
  ]
}