Alaska Airlines · JSON Structure

Alaska Air Mileage Plan Transaction List Structure

List of Mileage Plan transactions

Type: object Properties: 3
AirlinesAviationTravelCargoLoyaltyFlight StatusFortune 500

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

Properties

memberId transactions totalCount

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-mileage-plan-transaction-list-structure.json",
  "name": "TransactionList",
  "type": "object",
  "description": "List of Mileage Plan transactions",
  "properties": {
    "memberId": {
      "type": "string",
      "description": "Member number",
      "example": "12345678"
    },
    "transactions": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Transaction"
      }
    },
    "totalCount": {
      "type": "int32",
      "description": "Total transaction count",
      "example": 42
    }
  }
}