Alaska Airlines · Schema

Dimensions

Package dimensions

AirlinesAviationTravelCargoLoyaltyFlight StatusFortune 500

Properties

Name Type Description
length number Package length
width number Package width
height number Package height
unit string Dimension unit
View JSON Schema on GitHub

JSON Schema

alaska-air-cargo-dimensions-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/alaska-air/refs/heads/main/json-schema/alaska-air-cargo-dimensions-schema.json",
  "title": "Dimensions",
  "description": "Package dimensions",
  "type": "object",
  "properties": {
    "length": {
      "type": "number",
      "description": "Package length",
      "example": 60
    },
    "width": {
      "type": "number",
      "description": "Package width",
      "example": 40
    },
    "height": {
      "type": "number",
      "description": "Package height",
      "example": 30
    },
    "unit": {
      "type": "string",
      "description": "Dimension unit",
      "enum": [
        "CM",
        "IN"
      ],
      "example": "CM"
    }
  }
}