Amadeus Solutions · Schema
ExtendedPricingOptions
fare filter options
AirlinesBookingFlightsGDSHotelsTravelTravel Technology
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 |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/amadeus-solutions/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
}
}
}