Amadeus · Schema

LoyaltyNumber

LoyaltyNumber schema from Transfer Booking

TravelTravel TechnologyReservationsFlightsHotelsAirlinesHospitalityTours and ActivitiesCars and TransfersDestination ContentItinerary ManagementTrip PlanningArtificial IntelligenceMarket Insights

Properties

Name Type Description
program string loyalty program name
value string loyalty number value
View JSON Schema on GitHub

JSON Schema

transfer-book-loyalty-number-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amadeus/refs/heads/main/json-schema/transfer-book-loyalty-number-schema.json",
  "title": "LoyaltyNumber",
  "description": "LoyaltyNumber schema from Transfer Booking",
  "type": "object",
  "properties": {
    "program": {
      "type": "string",
      "description": "loyalty program name",
      "example": "string-value"
    },
    "value": {
      "type": "string",
      "description": "loyalty number value",
      "example": "string-value"
    }
  }
}