Amadeus Solutions · Schema

LoyaltyProgram

loyalty program information

AirlinesBookingFlightsGDSHotelsTravelTravel Technology

Properties

Name Type Description
programOwner string loyalty program airline code
id string loyalty program number
View JSON Schema on GitHub

JSON Schema

seat-map-display-loyalty-program-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amadeus-solutions/refs/heads/main/json-schema/seat-map-display-loyalty-program-schema.json",
  "title": "LoyaltyProgram",
  "description": "loyalty program information",
  "type": "object",
  "properties": {
    "programOwner": {
      "type": "string",
      "description": "loyalty program airline code",
      "example": "AF"
    },
    "id": {
      "type": "string",
      "description": "loyalty program number",
      "example": "12357466574"
    }
  }
}