LoyaltyNumber

LoyaltyNumber schema

BookingFlightsHotelsReservationsTravel

Properties

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

JSON Schema

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