Amadeus · Schema

OtherMethod

other payment method

TravelTravel TechnologyReservationsFlightsHotelsAirlinesHospitalityTours and ActivitiesCars and TransfersDestination ContentItinerary ManagementTrip PlanningArtificial IntelligenceMarket Insights

Properties

Name Type Description
method string other payment method
flightOfferIds array Id of the concern flightOffers
View JSON Schema on GitHub

JSON Schema

flight-order-management-other-method-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/flight-order-management-other-method-schema.json",
  "title": "OtherMethod",
  "description": "other payment method",
  "type": "object",
  "properties": {
    "method": {
      "description": "other payment method",
      "type": "string",
      "enum": [
        "ACCOUNT",
        "CHECK",
        "CASH",
        "NONREFUNDABLE"
      ],
      "example": "CASH"
    },
    "flightOfferIds": {
      "description": "Id of the concern flightOffers",
      "type": "array",
      "minItems": 1,
      "maxItems": 6,
      "items": {
        "type": "string"
      },
      "example": "1"
    }
  }
}