Amadeus · Schema

ExtendedPricingOptions

fare filter options

TravelTravel TechnologyReservationsFlightsHotelsAirlinesHospitalityTours and ActivitiesCars and TransfersDestination ContentItinerary ManagementTrip PlanningArtificial IntelligenceMarket Insights

Properties

Name Type Description
includedCheckedBagsOnly boolean If true, returns the flight-offers with included checked bags only
refundableFare boolean If true, returns the flight-offers with refundable fares only
noRestrictionFare boolean If true, returns the flight-offers with no restriction fares only
noPenaltyFare boolean If true, returns the flight-offers with no penalty fares only
View JSON Schema on GitHub

JSON Schema

flight-offers-search-extended-pricing-options-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-offers-search-extended-pricing-options-schema.json",
  "title": "ExtendedPricingOptions",
  "description": "fare filter options",
  "type": "object",
  "properties": {
    "includedCheckedBagsOnly": {
      "type": "boolean",
      "description": "If true, returns the flight-offers with included checked bags only",
      "example": true
    },
    "refundableFare": {
      "type": "boolean",
      "description": "If true, returns the flight-offers with refundable fares only",
      "example": true
    },
    "noRestrictionFare": {
      "type": "boolean",
      "description": "If true, returns the flight-offers with no restriction fares only",
      "example": true
    },
    "noPenaltyFare": {
      "type": "boolean",
      "description": "If true, returns the flight-offers with no penalty fares only",
      "example": true
    }
  }
}