- Created by Uliana Arefina, last modified on 17.05.2023
Overview
An example of end-to-end scenario based on on operation flow and user story
searchFlightsJourney → book (Flight) → reprice without PNR → reprice with PNR → seatMap → demandTickets (ETK) S7 agent wants to buy one way flight from Moscow (DME) to Saint Petersburg (LED) for adult and child travelers. He also wants to select seat for both passengers. He chooses direct S7 flight.Operation flow
User story
Scenario
The general process for buying a trip such as this is:
Initial search for flight solutions: S7 Agent executes a searchFlightsJourney operation with itinerary criteria and passenger types count;
Book a reservation: S7 Agent executes a book operation with passenger details and itinerary info of chosen solution from search results;
Request for informative reservation pricing: S7 Agent executes a reprice operation with itinerary info of chosen solution;
Request for reservation pricing: S7 Agent executes a reprice operation with itinerary info of chosen solution;
Request for ancillaries pricing: S7 Agent executes a setaMap operation with the whole journey details and cabin type;
Issue tickets with free seat for each passenger: S7 Agent executes a demandTickets operation with reservation reference, seats codes and pricing details for air and seats.
Table of contents:
Step 1: Initial search for flight solutions
S7 Agent executes a searchFlightsJourney operation with itinerary criteria and passenger types count
<Envelope xmlns="http://schemas.xmlsoap.org/soap/envelope/"> <Header /> <Body> <AirShoppingRQ xmlns="http://www.iata.org/IATA/EDIST" Version="1.0"> <Document /> <Party> <Sender> <AgentUserSender> <PseudoCity>S7AGN8224</PseudoCity> <AgentUserID>test</AgentUserID> </AgentUserSender> </Sender> </Party> <Parameters> <CurrCodes> <CurrCode>RUB</CurrCode> </CurrCodes> </Parameters> <Travelers> <Traveler> <AnonymousTraveler> <PTC Quantity="1">ADT</PTC> </AnonymousTraveler> </Traveler> <Traveler> <AnonymousTraveler> <PTC Quantity="2">CHD</PTC> </AnonymousTraveler> </Traveler> </Travelers> <CoreQuery> <OriginDestinations> <OriginDestination> <Departure> <AirportCode>DME</AirportCode> <Date>2023-09-20</Date> </Departure> <Arrival> <AirportCode>LED</AirportCode> </Arrival> </OriginDestination> </OriginDestinations> </CoreQuery> </AirShoppingRQ> </Body> </Envelope>
<?xml version="1.0" encoding="UTF-8" standalone="yes"?> <ns2:Envelope xmlns:ns2="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns3="http://www.iata.org/IATA/EDIST"> <ns2:Body> <ns3:AirShoppingRS Version="2.000"> <ns3:Document> <ns3:Name>1.0</ns3:Name> </ns3:Document> <ns3:Success/> <ns3:AirShoppingProcessing/> <ns3:OffersGroup> <ns3:AirlineOffers> <ns3:Owner>S7</ns3:Owner> <ns3:AirlineOffer> <ns3:OfferID Owner="S7">OF1</ns3:OfferID> <ns3:TotalPrice> <ns3:DetailCurrencyPrice> <ns3:Total Code="RUB">12624</ns3:Total> <ns3:Details> <ns3:Detail> <ns3:SubTotal Code="RUB">11800</ns3:SubTotal> <ns3:Application>Fare</ns3:Application> </ns3:Detail> </ns3:Details> <ns3:Taxes> <ns3:Total Code="RUB">824</ns3:Total> </ns3:Taxes> </ns3:DetailCurrencyPrice> </ns3:TotalPrice> <ns3:Disclosure> <ns3:Description> <ns3:Text>BASIC ECONOMY</ns3:Text> </ns3:Description> </ns3:Disclosure> <ns3:PricedOffer> <ns3:OfferPrice OfferItemID="OF1SL1"> <ns3:RequestedDate> <ns3:PriceDetail> <ns3:TotalAmount> <ns3:DetailCurrencyPrice> <ns3:Total Code="RUB">12624</ns3:Total> <ns3:Taxes> <ns3:Total Code="RUB">824</ns3:Total> </ns3:Taxes> </ns3:DetailCurrencyPrice> </ns3:TotalAmount> <ns3:BaseAmount Code="RUB">11800</ns3:BaseAmount> </ns3:PriceDetail> <ns3:Associations> <ns3:OtherAssociation> <ns3:OtherAssociation> <ns3:Type>SEG1 DME-LED</ns3:Type> <ns3:ReferenceValue>Meal_O</ns3:ReferenceValue> </ns3:OtherAssociation> </ns3:OtherAssociation> </ns3:Associations> <ns3:Associations> <ns3:AssociatedTraveler> <ns3:TravelerReferences>SH1</ns3:TravelerReferences> </ns3:AssociatedTraveler> <ns3:ApplicableFlight> <ns3:OriginDestinationReferences>OD1</ns3:OriginDestinationReferences> <ns3:FlightSegmentReference ref="SEG1"> <ns3:Cabin> <ns3:CabinDesignator>Y</ns3:CabinDesignator> <ns3:MarketingName>BASIC ECONOMY</ns3:MarketingName> </ns3:Cabin> </ns3:FlightSegmentReference> <ns3:FlightSegmentReference ref="SEG1"> <ns3:ClassOfService> <ns3:Code SeatsLeft="9">N</ns3:Code> <ns3:MarketingName>NBSOW</ns3:MarketingName> </ns3:ClassOfService> <ns3:BagDetailAssociation> <ns3:CheckedBagReferences>BG1</ns3:CheckedBagReferences> <ns3:CarryOnReferences>CO1</ns3:CarryOnReferences> </ns3:BagDetailAssociation> </ns3:FlightSegmentReference> </ns3:ApplicableFlight> <ns3:OtherAssociation> <ns3:OtherAssociation> <ns3:Type>NBSOW</ns3:Type> <ns3:ReferenceValue>PL1</ns3:ReferenceValue> </ns3:OtherAssociation> </ns3:OtherAssociation> </ns3:Associations> <ns3:Associations> <ns3:AssociatedTraveler> <ns3:TravelerReferences>SH2</ns3:TravelerReferences> </ns3:AssociatedTraveler> <ns3:ApplicableFlight> <ns3:OriginDestinationReferences>OD1</ns3:OriginDestinationReferences> <ns3:FlightSegmentReference ref="SEG1"> <ns3:Cabin> <ns3:CabinDesignator>Y</ns3:CabinDesignator> <ns3:MarketingName>BASIC ECONOMY</ns3:MarketingName> </ns3:Cabin> </ns3:FlightSegmentReference> <ns3:FlightSegmentReference ref="SEG1"> <ns3:ClassOfService> <ns3:Code SeatsLeft="9">N</ns3:Code> <ns3:MarketingName>NBSOW</ns3:MarketingName> </ns3:ClassOfService> <ns3:BagDetailAssociation> <ns3:CheckedBagReferences>BG1</ns3:CheckedBagReferences> <ns3:CarryOnReferences>CO1</ns3:CarryOnReferences> </ns3:BagDetailAssociation> </ns3:FlightSegmentReference> </ns3:ApplicableFlight> <ns3:OtherAssociation> <ns3:OtherAssociation> <ns3:Type>NBSOW</ns3:Type> <ns3:ReferenceValue>PL1</ns3:ReferenceValue> </ns3:OtherAssociation> </ns3:OtherAssociation> </ns3:Associations> </ns3:RequestedDate> <ns3:FareDetail> <ns3:FareComponent refs="SH1" ObjectKey="FC1"> <ns3:Parameters Quantity="1"/> <ns3:PriceBreakdown> <ns3:Price> <ns3:BaseAmount Code="RUB">4370</ns3:BaseAmount> <ns3:Taxes> <ns3:Total Code="RUB">412</ns3:Total> <ns3:Breakdown> <ns3:Tax> <ns3:Amount Code="RUB">180</ns3:Amount> <ns3:TaxCode>RI</ns3:TaxCode> <ns3:Description>Terminal Use Charge</ns3:Description> </ns3:Tax> <ns3:Tax> <ns3:Amount Code="RUB">232</ns3:Amount> <ns3:TaxCode>RI</ns3:TaxCode> <ns3:Description>Terminal Use Charge</ns3:Description> </ns3:Tax> </ns3:Breakdown> </ns3:Taxes> </ns3:Price> </ns3:PriceBreakdown> </ns3:FareComponent> <ns3:FareComponent refs="SH2" ObjectKey="FC2"> <ns3:Parameters Quantity="1"/> <ns3:PriceBreakdown> <ns3:Price> <ns3:BaseAmount Code="RUB">3715</ns3:BaseAmount> <ns3:Taxes> <ns3:Total Code="RUB">206</ns3:Total> <ns3:Breakdown> <ns3:Tax> <ns3:Amount Code="RUB">90</ns3:Amount> <ns3:TaxCode>RI</ns3:TaxCode> <ns3:Description>Terminal Use Charge</ns3:Description> </ns3:Tax> <ns3:Tax> <ns3:Amount Code="RUB">116</ns3:Amount> <ns3:TaxCode>RI</ns3:TaxCode> <ns3:Description>Terminal Use Charge</ns3:Description> </ns3:Tax> </ns3:Breakdown> </ns3:Taxes> </ns3:Price> </ns3:PriceBreakdown> </ns3:FareComponent> </ns3:FareDetail> </ns3:OfferPrice> </ns3:PricedOffer> </ns3:AirlineOffer> <ns3:AirlineOffer> <ns3:OfferID Owner="S7">OF2</ns3:OfferID> <ns3:TotalPrice> <ns3:DetailCurrencyPrice> <ns3:Total Code="RUB">18294</ns3:Total> <ns3:Details> <ns3:Detail> <ns3:SubTotal Code="RUB">17470</ns3:SubTotal> <ns3:Application>Fare</ns3:Application> </ns3:Detail> </ns3:Details> <ns3:Taxes> <ns3:Total Code="RUB">824</ns3:Total> </ns3:Taxes> </ns3:DetailCurrencyPrice> </ns3:TotalPrice> <ns3:Disclosure> <ns3:Description> <ns3:Text>STANDARD ECONOMY</ns3:Text> </ns3:Description> </ns3:Disclosure> <ns3:PricedOffer> <ns3:OfferPrice OfferItemID="OF2SL1"> <ns3:RequestedDate> <ns3:PriceDetail> <ns3:TotalAmount> <ns3:DetailCurrencyPrice> <ns3:Total Code="RUB">18294</ns3:Total> <ns3:Taxes> <ns3:Total Code="RUB">824</ns3:Total> </ns3:Taxes> </ns3:DetailCurrencyPrice> </ns3:TotalAmount> <ns3:BaseAmount Code="RUB">17470</ns3:BaseAmount> </ns3:PriceDetail> <ns3:Associations> <ns3:OtherAssociation> <ns3:OtherAssociation> <ns3:Type>SEG1 DME-LED</ns3:Type> <ns3:ReferenceValue>Meal_O</ns3:ReferenceValue> </ns3:OtherAssociation> </ns3:OtherAssociation> </ns3:Associations> <ns3:Associations> <ns3:AssociatedTraveler> <ns3:TravelerReferences>SH1</ns3:TravelerReferences> </ns3:AssociatedTraveler> <ns3:ApplicableFlight> <ns3:OriginDestinationReferences>OD1</ns3:OriginDestinationReferences> <ns3:FlightSegmentReference ref="SEG1"> <ns3:Cabin> <ns3:CabinDesignator>Y</ns3:CabinDesignator> <ns3:MarketingName>STANDARD ECONOMY</ns3:MarketingName> </ns3:Cabin> </ns3:FlightSegmentReference> <ns3:FlightSegmentReference ref="SEG1"> <ns3:ClassOfService> <ns3:Code SeatsLeft="9">N</ns3:Code> <ns3:MarketingName>NSTOW</ns3:MarketingName> </ns3:ClassOfService> <ns3:BagDetailAssociation> <ns3:CheckedBagReferences>BG2</ns3:CheckedBagReferences> <ns3:CarryOnReferences>CO1</ns3:CarryOnReferences> </ns3:BagDetailAssociation> </ns3:FlightSegmentReference> </ns3:ApplicableFlight> <ns3:OtherAssociation> <ns3:OtherAssociation> <ns3:Type>NSTOW</ns3:Type> <ns3:ReferenceValue>PL2</ns3:ReferenceValue> </ns3:OtherAssociation> </ns3:OtherAssociation> </ns3:Associations> <ns3:Associations> <ns3:AssociatedTraveler> <ns3:TravelerReferences>SH2</ns3:TravelerReferences> </ns3:AssociatedTraveler> <ns3:ApplicableFlight> <ns3:OriginDestinationReferences>OD1</ns3:OriginDestinationReferences> <ns3:FlightSegmentReference ref="SEG1"> <ns3:Cabin> <ns3:CabinDesignator>Y</ns3:CabinDesignator> <ns3:MarketingName>STANDARD ECONOMY</ns3:MarketingName> </ns3:Cabin> </ns3:FlightSegmentReference> <ns3:FlightSegmentReference ref="SEG1"> <ns3:ClassOfService> <ns3:Code SeatsLeft="9">N</ns3:Code> <ns3:MarketingName>NSTOW</ns3:MarketingName> </ns3:ClassOfService> <ns3:BagDetailAssociation> <ns3:CheckedBagReferences>BG2</ns3:CheckedBagReferences> <ns3:CarryOnReferences>CO1</ns3:CarryOnReferences> </ns3:BagDetailAssociation> </ns3:FlightSegmentReference> </ns3:ApplicableFlight> <ns3:OtherAssociation> <ns3:OtherAssociation> <ns3:Type>NSTOW</ns3:Type> <ns3:ReferenceValue>PL2</ns3:ReferenceValue> </ns3:OtherAssociation> </ns3:OtherAssociation> </ns3:Associations> </ns3:RequestedDate> <ns3:FareDetail> <ns3:FareComponent refs="SH1" ObjectKey="FC3"> <ns3:Parameters Quantity="1"/> <ns3:PriceBreakdown> <ns3:Price> <ns3:BaseAmount Code="RUB">6470</ns3:BaseAmount> <ns3:Taxes> <ns3:Total Code="RUB">412</ns3:Total> <ns3:Breakdown> <ns3:Tax> <ns3:Amount Code="RUB">180</ns3:Amount> <ns3:TaxCode>RI</ns3:TaxCode> <ns3:Description>Terminal Use Charge</ns3:Description> </ns3:Tax> <ns3:Tax> <ns3:Amount Code="RUB">232</ns3:Amount> <ns3:TaxCode>RI</ns3:TaxCode> <ns3:Description>Terminal Use Charge</ns3:Description> </ns3:Tax> </ns3:Breakdown> </ns3:Taxes> </ns3:Price> </ns3:PriceBreakdown> </ns3:FareComponent> <ns3:FareComponent refs="SH2" ObjectKey="FC4"> <ns3:Parameters Quantity="1"/> <ns3:PriceBreakdown> <ns3:Price> <ns3:BaseAmount Code="RUB">5500</ns3:BaseAmount> <ns3:Taxes> <ns3:Total Code="RUB">206</ns3:Total> <ns3:Breakdown> <ns3:Tax> <ns3:Amount Code="RUB">90</ns3:Amount> <ns3:TaxCode>RI</ns3:TaxCode> <ns3:Description>Terminal Use Charge</ns3:Description> </ns3:Tax> <ns3:Tax> <ns3:Amount Code="RUB">116</ns3:Amount> <ns3:TaxCode>RI</ns3:TaxCode> <ns3:Description>Terminal Use Charge</ns3:Description> </ns3:Tax> </ns3:Breakdown> </ns3:Taxes> </ns3:Price> </ns3:PriceBreakdown> </ns3:FareComponent> </ns3:FareDetail> </ns3:OfferPrice> </ns3:PricedOffer> </ns3:AirlineOffer> <ns3:AirlineOffer> <ns3:OfferID Owner="S7">OF3</ns3:OfferID> <ns3:TotalPrice> <ns3:DetailCurrencyPrice> <ns3:Total Code="RUB">35984</ns3:Total> <ns3:Details> <ns3:Detail> <ns3:SubTotal Code="RUB">35160</ns3:SubTotal> <ns3:Application>Fare</ns3:Application> </ns3:Detail> </ns3:Details> <ns3:Taxes> <ns3:Total Code="RUB">824</ns3:Total> </ns3:Taxes> </ns3:DetailCurrencyPrice> </ns3:TotalPrice> <ns3:Disclosure> <ns3:Description> <ns3:Text>PLUS ECONOMY</ns3:Text> </ns3:Description> </ns3:Disclosure> <ns3:PricedOffer> <ns3:OfferPrice OfferItemID="OF3SL1"> <ns3:RequestedDate> <ns3:PriceDetail> <ns3:TotalAmount> <ns3:DetailCurrencyPrice> <ns3:Total Code="RUB">35984</ns3:Total> <ns3:Taxes> <ns3:Total Code="RUB">824</ns3:Total> </ns3:Taxes> </ns3:DetailCurrencyPrice> </ns3:TotalAmount> <ns3:BaseAmount Code="RUB">35160</ns3:BaseAmount> </ns3:PriceDetail> <ns3:Associations> <ns3:OtherAssociation> <ns3:OtherAssociation> <ns3:Type>SEG1 DME-LED</ns3:Type> <ns3:ReferenceValue>Meal_O</ns3:ReferenceValue> </ns3:OtherAssociation> </ns3:OtherAssociation> </ns3:Associations> <ns3:Associations> <ns3:AssociatedTraveler> <ns3:TravelerReferences>SH1</ns3:TravelerReferences> </ns3:AssociatedTraveler> <ns3:ApplicableFlight> <ns3:OriginDestinationReferences>OD1</ns3:OriginDestinationReferences> <ns3:FlightSegmentReference ref="SEG1"> <ns3:Cabin> <ns3:CabinDesignator>Y</ns3:CabinDesignator> <ns3:MarketingName>PLUS ECONOMY</ns3:MarketingName> </ns3:Cabin> </ns3:FlightSegmentReference> <ns3:FlightSegmentReference ref="SEG1"> <ns3:ClassOfService> <ns3:Code SeatsLeft="9">N</ns3:Code> <ns3:MarketingName>NPLOW</ns3:MarketingName> </ns3:ClassOfService> <ns3:BagDetailAssociation> <ns3:CheckedBagReferences>BG3</ns3:CheckedBagReferences> <ns3:CarryOnReferences>CO1</ns3:CarryOnReferences> </ns3:BagDetailAssociation> </ns3:FlightSegmentReference> </ns3:ApplicableFlight> </ns3:Associations> <ns3:Associations> <ns3:AssociatedTraveler> <ns3:TravelerReferences>SH2</ns3:TravelerReferences> </ns3:AssociatedTraveler> <ns3:ApplicableFlight> <ns3:OriginDestinationReferences>OD1</ns3:OriginDestinationReferences> <ns3:FlightSegmentReference ref="SEG1"> <ns3:Cabin> <ns3:CabinDesignator>Y</ns3:CabinDesignator> <ns3:MarketingName>PLUS ECONOMY</ns3:MarketingName> </ns3:Cabin> </ns3:FlightSegmentReference> <ns3:FlightSegmentReference ref="SEG1"> <ns3:ClassOfService> <ns3:Code SeatsLeft="9">N</ns3:Code> <ns3:MarketingName>NPLOW</ns3:MarketingName> </ns3:ClassOfService> <ns3:BagDetailAssociation> <ns3:CheckedBagReferences>BG3</ns3:CheckedBagReferences> <ns3:CarryOnReferences>CO1</ns3:CarryOnReferences> </ns3:BagDetailAssociation> </ns3:FlightSegmentReference> </ns3:ApplicableFlight> </ns3:Associations> </ns3:RequestedDate> <ns3:FareDetail> <ns3:FareComponent refs="SH1" ObjectKey="FC5"> <ns3:Parameters Quantity="1"/> <ns3:PriceBreakdown> <ns3:Price> <ns3:BaseAmount Code="RUB">13020</ns3:BaseAmount> <ns3:Taxes> <ns3:Total Code="RUB">412</ns3:Total> <ns3:Breakdown> <ns3:Tax> <ns3:Amount Code="RUB">180</ns3:Amount> <ns3:TaxCode>RI</ns3:TaxCode> <ns3:Description>Terminal Use Charge</ns3:Description> </ns3:Tax> <ns3:Tax> <ns3:Amount Code="RUB">232</ns3:Amount> <ns3:TaxCode>RI</ns3:TaxCode> <ns3:Description>Terminal Use Charge</ns3:Description> </ns3:Tax> </ns3:Breakdown> </ns3:Taxes> </ns3:Price> </ns3:PriceBreakdown> </ns3:FareComponent> <ns3:FareComponent refs="SH2" ObjectKey="FC6"> <ns3:Parameters Quantity="1"/> <ns3:PriceBreakdown> <ns3:Price> <ns3:BaseAmount Code="RUB">11070</ns3:BaseAmount> <ns3:Taxes> <ns3:Total Code="RUB">206</ns3:Total> <ns3:Breakdown> <ns3:Tax> <ns3:Amount Code="RUB">90</ns3:Amount> <ns3:TaxCode>RI</ns3:TaxCode> <ns3:Description>Terminal Use Charge</ns3:Description> </ns3:Tax> <ns3:Tax> <ns3:Amount Code="RUB">116</ns3:Amount> <ns3:TaxCode>RI</ns3:TaxCode> <ns3:Description>Terminal Use Charge</ns3:Description> </ns3:Tax> </ns3:Breakdown> </ns3:Taxes> </ns3:Price> </ns3:PriceBreakdown> </ns3:FareComponent> </ns3:FareDetail> </ns3:OfferPrice> </ns3:PricedOffer> </ns3:AirlineOffer> </ns3:AirlineOffers> <ns3:AirlineOffers> <ns3:Owner>S7</ns3:Owner> <ns3:AirlineOffer> <ns3:OfferID Owner="S7">OF1</ns3:OfferID> <ns3:TotalPrice> <ns3:DetailCurrencyPrice> <ns3:Total Code="RUB">12624</ns3:Total> <ns3:Details> <ns3:Detail> <ns3:SubTotal Code="RUB">11800</ns3:SubTotal> <ns3:Application>Fare</ns3:Application> </ns3:Detail> </ns3:Details> <ns3:Taxes> <ns3:Total Code="RUB">824</ns3:Total> </ns3:Taxes> </ns3:DetailCurrencyPrice> </ns3:TotalPrice> <ns3:Disclosure> <ns3:Description> <ns3:Text>BASIC ECONOMY</ns3:Text> </ns3:Description> </ns3:Disclosure> <ns3:PricedOffer> <ns3:OfferPrice OfferItemID="OF1SL1"> <ns3:RequestedDate> <ns3:PriceDetail> <ns3:TotalAmount> <ns3:DetailCurrencyPrice> <ns3:Total Code="RUB">12624</ns3:Total> <ns3:Taxes> <ns3:Total Code="RUB">824</ns3:Total> </ns3:Taxes> </ns3:DetailCurrencyPrice> </ns3:TotalAmount> <ns3:BaseAmount Code="RUB">11800</ns3:BaseAmount> </ns3:PriceDetail> <ns3:Associations> <ns3:OtherAssociation> <ns3:OtherAssociation> <ns3:Type>SEG2 DME-LED</ns3:Type> <ns3:ReferenceValue>Meal_O</ns3:ReferenceValue> </ns3:OtherAssociation> </ns3:OtherAssociation> </ns3:Associations> <ns3:Associations> <ns3:AssociatedTraveler> <ns3:TravelerReferences>SH1</ns3:TravelerReferences> </ns3:AssociatedTraveler> <ns3:ApplicableFlight> <ns3:OriginDestinationReferences>OD2</ns3:OriginDestinationReferences> <ns3:FlightSegmentReference ref="SEG2"> <ns3:Cabin> <ns3:CabinDesignator>Y</ns3:CabinDesignator> <ns3:MarketingName>BASIC ECONOMY</ns3:MarketingName> </ns3:Cabin> </ns3:FlightSegmentReference> <ns3:FlightSegmentReference ref="SEG2"> <ns3:ClassOfService> <ns3:Code SeatsLeft="9">N</ns3:Code> <ns3:MarketingName>NBSOW</ns3:MarketingName> </ns3:ClassOfService> <ns3:BagDetailAssociation> <ns3:CheckedBagReferences>BG1</ns3:CheckedBagReferences> <ns3:CarryOnReferences>CO1</ns3:CarryOnReferences> </ns3:BagDetailAssociation> </ns3:FlightSegmentReference> </ns3:ApplicableFlight> <ns3:OtherAssociation> <ns3:OtherAssociation> <ns3:Type>NBSOW</ns3:Type> <ns3:ReferenceValue>PL1</ns3:ReferenceValue> </ns3:OtherAssociation> </ns3:OtherAssociation> </ns3:Associations> <ns3:Associations> <ns3:AssociatedTraveler> <ns3:TravelerReferences>SH2</ns3:TravelerReferences> </ns3:AssociatedTraveler> <ns3:ApplicableFlight> <ns3:OriginDestinationReferences>OD2</ns3:OriginDestinationReferences> <ns3:FlightSegmentReference ref="SEG2"> <ns3:Cabin> <ns3:CabinDesignator>Y</ns3:CabinDesignator> <ns3:MarketingName>BASIC ECONOMY</ns3:MarketingName> </ns3:Cabin> </ns3:FlightSegmentReference> <ns3:FlightSegmentReference ref="SEG2"> <ns3:ClassOfService> <ns3:Code SeatsLeft="9">N</ns3:Code> <ns3:MarketingName>NBSOW</ns3:MarketingName> </ns3:ClassOfService> <ns3:BagDetailAssociation> <ns3:CheckedBagReferences>BG1</ns3:CheckedBagReferences> <ns3:CarryOnReferences>CO1</ns3:CarryOnReferences> </ns3:BagDetailAssociation> </ns3:FlightSegmentReference> </ns3:ApplicableFlight> <ns3:OtherAssociation> <ns3:OtherAssociation> <ns3:Type>NBSOW</ns3:Type> <ns3:ReferenceValue>PL1</ns3:ReferenceValue> </ns3:OtherAssociation> </ns3:OtherAssociation> </ns3:Associations> </ns3:RequestedDate> <ns3:FareDetail> <ns3:FareComponent refs="SH1" ObjectKey="FC7"> <ns3:Parameters Quantity="1"/> <ns3:PriceBreakdown> <ns3:Price> <ns3:BaseAmount Code="RUB">4370</ns3:BaseAmount> <ns3:Taxes> <ns3:Total Code="RUB">412</ns3:Total> <ns3:Breakdown> <ns3:Tax> <ns3:Amount Code="RUB">180</ns3:Amount> <ns3:TaxCode>RI</ns3:TaxCode> <ns3:Description>Terminal Use Charge</ns3:Description> </ns3:Tax> <ns3:Tax> <ns3:Amount Code="RUB">232</ns3:Amount> <ns3:TaxCode>RI</ns3:TaxCode> <ns3:Description>Terminal Use Charge</ns3:Description> </ns3:Tax> </ns3:Breakdown> </ns3:Taxes> </ns3:Price> </ns3:PriceBreakdown> </ns3:FareComponent> <ns3:FareComponent refs="SH2" ObjectKey="FC8"> <ns3:Parameters Quantity="1"/> <ns3:PriceBreakdown> <ns3:Price> <ns3:BaseAmount Code="RUB">3715</ns3:BaseAmount> <ns3:Taxes> <ns3:Total Code="RUB">206</ns3:Total> <ns3:Breakdown> <ns3:Tax> <ns3:Amount Code="RUB">90</ns3:Amount> <ns3:TaxCode>RI</ns3:TaxCode> <ns3:Description>Terminal Use Charge</ns3:Description> </ns3:Tax> <ns3:Tax> <ns3:Amount Code="RUB">116</ns3:Amount> <ns3:TaxCode>RI</ns3:TaxCode> <ns3:Description>Terminal Use Charge</ns3:Description> </ns3:Tax> </ns3:Breakdown> </ns3:Taxes> </ns3:Price> </ns3:PriceBreakdown> </ns3:FareComponent> </ns3:FareDetail> </ns3:OfferPrice> </ns3:PricedOffer> </ns3:AirlineOffer> <ns3:AirlineOffer> <ns3:OfferID Owner="S7">OF2</ns3:OfferID> <ns3:TotalPrice> <ns3:DetailCurrencyPrice> <ns3:Total Code="RUB">18294</ns3:Total> <ns3:Details> <ns3:Detail> <ns3:SubTotal Code="RUB">17470</ns3:SubTotal> <ns3:Application>Fare</ns3:Application> </ns3:Detail> </ns3:Details> <ns3:Taxes> <ns3:Total Code="RUB">824</ns3:Total> </ns3:Taxes> </ns3:DetailCurrencyPrice> </ns3:TotalPrice> <ns3:Disclosure> <ns3:Description> <ns3:Text>STANDARD ECONOMY</ns3:Text> </ns3:Description> </ns3:Disclosure> <ns3:PricedOffer> <ns3:OfferPrice OfferItemID="OF2SL1"> <ns3:RequestedDate> <ns3:PriceDetail> <ns3:TotalAmount> <ns3:DetailCurrencyPrice> <ns3:Total Code="RUB">18294</ns3:Total> <ns3:Taxes> <ns3:Total Code="RUB">824</ns3:Total> </ns3:Taxes> </ns3:DetailCurrencyPrice> </ns3:TotalAmount> <ns3:BaseAmount Code="RUB">17470</ns3:BaseAmount> </ns3:PriceDetail> <ns3:Associations> <ns3:OtherAssociation> <ns3:OtherAssociation> <ns3:Type>SEG2 DME-LED</ns3:Type> <ns3:ReferenceValue>Meal_O</ns3:ReferenceValue> </ns3:OtherAssociation> </ns3:OtherAssociation> </ns3:Associations> <ns3:Associations> <ns3:AssociatedTraveler> <ns3:TravelerReferences>SH1</ns3:TravelerReferences> </ns3:AssociatedTraveler> <ns3:ApplicableFlight> <ns3:OriginDestinationReferences>OD2</ns3:OriginDestinationReferences> <ns3:FlightSegmentReference ref="SEG2"> <ns3:Cabin> <ns3:CabinDesignator>Y</ns3:CabinDesignator> <ns3:MarketingName>STANDARD ECONOMY</ns3:MarketingName> </ns3:Cabin> </ns3:FlightSegmentReference> <ns3:FlightSegmentReference ref="SEG2"> <ns3:ClassOfService> <ns3:Code SeatsLeft="9">N</ns3:Code> <ns3:MarketingName>NSTOW</ns3:MarketingName> </ns3:ClassOfService> <ns3:BagDetailAssociation> <ns3:CheckedBagReferences>BG2</ns3:CheckedBagReferences> <ns3:CarryOnReferences>CO1</ns3:CarryOnReferences> </ns3:BagDetailAssociation> </ns3:FlightSegmentReference> </ns3:ApplicableFlight> <ns3:OtherAssociation> <ns3:OtherAssociation> <ns3:Type>NSTOW</ns3:Type> <ns3:ReferenceValue>PL2</ns3:ReferenceValue> </ns3:OtherAssociation> </ns3:OtherAssociation> </ns3:Associations> <ns3:Associations> <ns3:AssociatedTraveler> <ns3:TravelerReferences>SH2</ns3:TravelerReferences> </ns3:AssociatedTraveler> <ns3:ApplicableFlight> <ns3:OriginDestinationReferences>OD2</ns3:OriginDestinationReferences> <ns3:FlightSegmentReference ref="SEG2"> <ns3:Cabin> <ns3:CabinDesignator>Y</ns3:CabinDesignator> <ns3:MarketingName>STANDARD ECONOMY</ns3:MarketingName> </ns3:Cabin> </ns3:FlightSegmentReference> <ns3:FlightSegmentReference ref="SEG2"> <ns3:ClassOfService> <ns3:Code SeatsLeft="9">N</ns3:Code> <ns3:MarketingName>NSTOW</ns3:MarketingName> </ns3:ClassOfService> <ns3:BagDetailAssociation> <ns3:CheckedBagReferences>BG2</ns3:CheckedBagReferences> <ns3:CarryOnReferences>CO1</ns3:CarryOnReferences> </ns3:BagDetailAssociation> </ns3:FlightSegmentReference> </ns3:ApplicableFlight> <ns3:OtherAssociation> <ns3:OtherAssociation> <ns3:Type>NSTOW</ns3:Type> <ns3:ReferenceValue>PL2</ns3:ReferenceValue> </ns3:OtherAssociation> </ns3:OtherAssociation> </ns3:Associations> </ns3:RequestedDate> <ns3:FareDetail> <ns3:FareComponent refs="SH1" ObjectKey="FC9"> <ns3:Parameters Quantity="1"/> <ns3:PriceBreakdown> <ns3:Price> <ns3:BaseAmount Code="RUB">6470</ns3:BaseAmount> <ns3:Taxes> <ns3:Total Code="RUB">412</ns3:Total> <ns3:Breakdown> <ns3:Tax> <ns3:Amount Code="RUB">180</ns3:Amount> <ns3:TaxCode>RI</ns3:TaxCode> <ns3:Description>Terminal Use Charge</ns3:Description> </ns3:Tax> <ns3:Tax> <ns3:Amount Code="RUB">232</ns3:Amount> <ns3:TaxCode>RI</ns3:TaxCode> <ns3:Description>Terminal Use Charge</ns3:Description> </ns3:Tax> </ns3:Breakdown> </ns3:Taxes> </ns3:Price> </ns3:PriceBreakdown> </ns3:FareComponent> <ns3:FareComponent refs="SH2" ObjectKey="FC10"> <ns3:Parameters Quantity="1"/> <ns3:PriceBreakdown> <ns3:Price> <ns3:BaseAmount Code="RUB">5500</ns3:BaseAmount> <ns3:Taxes> <ns3:Total Code="RUB">206</ns3:Total> <ns3:Breakdown> <ns3:Tax> <ns3:Amount Code="RUB">90</ns3:Amount> <ns3:TaxCode>RI</ns3:TaxCode> <ns3:Description>Terminal Use Charge</ns3:Description> </ns3:Tax> <ns3:Tax> <ns3:Amount Code="RUB">116</ns3:Amount> <ns3:TaxCode>RI</ns3:TaxCode> <ns3:Description>Terminal Use Charge</ns3:Description> </ns3:Tax> </ns3:Breakdown> </ns3:Taxes> </ns3:Price> </ns3:PriceBreakdown> </ns3:FareComponent> </ns3:FareDetail> </ns3:OfferPrice> </ns3:PricedOffer> </ns3:AirlineOffer> <ns3:AirlineOffer> <ns3:OfferID Owner="S7">OF3</ns3:OfferID> <ns3:TotalPrice> <ns3:DetailCurrencyPrice> <ns3:Total Code="RUB">35984</ns3:Total> <ns3:Details> <ns3:Detail> <ns3:SubTotal Code="RUB">35160</ns3:SubTotal> <ns3:Application>Fare</ns3:Application> </ns3:Detail> </ns3:Details> <ns3:Taxes> <ns3:Total Code="RUB">824</ns3:Total> </ns3:Taxes> </ns3:DetailCurrencyPrice> </ns3:TotalPrice> <ns3:Disclosure> <ns3:Description> <ns3:Text>PLUS ECONOMY</ns3:Text> </ns3:Description> </ns3:Disclosure> <ns3:PricedOffer> <ns3:OfferPrice OfferItemID="OF3SL1"> <ns3:RequestedDate> <ns3:PriceDetail> <ns3:TotalAmount> <ns3:DetailCurrencyPrice> <ns3:Total Code="RUB">35984</ns3:Total> <ns3:Taxes> <ns3:Total Code="RUB">824</ns3:Total> </ns3:Taxes> </ns3:DetailCurrencyPrice> </ns3:TotalAmount> <ns3:BaseAmount Code="RUB">35160</ns3:BaseAmount> </ns3:PriceDetail> <ns3:Associations> <ns3:OtherAssociation> <ns3:OtherAssociation> <ns3:Type>SEG2 DME-LED</ns3:Type> <ns3:ReferenceValue>Meal_O</ns3:ReferenceValue> </ns3:OtherAssociation> </ns3:OtherAssociation> </ns3:Associations> <ns3:Associations> <ns3:AssociatedTraveler> <ns3:TravelerReferences>SH1</ns3:TravelerReferences> </ns3:AssociatedTraveler> <ns3:ApplicableFlight> <ns3:OriginDestinationReferences>OD2</ns3:OriginDestinationReferences> <ns3:FlightSegmentReference ref="SEG2"> <ns3:Cabin> <ns3:CabinDesignator>Y</ns3:CabinDesignator> <ns3:MarketingName>PLUS ECONOMY</ns3:MarketingName> </ns3:Cabin> </ns3:FlightSegmentReference> <ns3:FlightSegmentReference ref="SEG2"> <ns3:ClassOfService> <ns3:Code SeatsLeft="9">N</ns3:Code> <ns3:MarketingName>NPLOW</ns3:MarketingName> </ns3:ClassOfService> <ns3:BagDetailAssociation> <ns3:CheckedBagReferences>BG3</ns3:CheckedBagReferences> <ns3:CarryOnReferences>CO1</ns3:CarryOnReferences> </ns3:BagDetailAssociation> </ns3:FlightSegmentReference> </ns3:ApplicableFlight> </ns3:Associations> <ns3:Associations> <ns3:AssociatedTraveler> <ns3:TravelerReferences>SH2</ns3:TravelerReferences> </ns3:AssociatedTraveler> <ns3:ApplicableFlight> <ns3:OriginDestinationReferences>OD2</ns3:OriginDestinationReferences> <ns3:FlightSegmentReference ref="SEG2"> <ns3:Cabin> <ns3:CabinDesignator>Y</ns3:CabinDesignator> <ns3:MarketingName>PLUS ECONOMY</ns3:MarketingName> </ns3:Cabin> </ns3:FlightSegmentReference> <ns3:FlightSegmentReference ref="SEG2"> <ns3:ClassOfService> <ns3:Code SeatsLeft="9">N</ns3:Code> <ns3:MarketingName>NPLOW</ns3:MarketingName> </ns3:ClassOfService> <ns3:BagDetailAssociation> <ns3:CheckedBagReferences>BG3</ns3:CheckedBagReferences> <ns3:CarryOnReferences>CO1</ns3:CarryOnReferences> </ns3:BagDetailAssociation> </ns3:FlightSegmentReference> </ns3:ApplicableFlight> </ns3:Associations> </ns3:RequestedDate> <ns3:FareDetail> <ns3:FareComponent refs="SH1" ObjectKey="FC11"> <ns3:Parameters Quantity="1"/> <ns3:PriceBreakdown> <ns3:Price> <ns3:BaseAmount Code="RUB">13020</ns3:BaseAmount> <ns3:Taxes> <ns3:Total Code="RUB">412</ns3:Total> <ns3:Breakdown> <ns3:Tax> <ns3:Amount Code="RUB">180</ns3:Amount> <ns3:TaxCode>RI</ns3:TaxCode> <ns3:Description>Terminal Use Charge</ns3:Description> </ns3:Tax> <ns3:Tax> <ns3:Amount Code="RUB">232</ns3:Amount> <ns3:TaxCode>RI</ns3:TaxCode> <ns3:Description>Terminal Use Charge</ns3:Description> </ns3:Tax> </ns3:Breakdown> </ns3:Taxes> </ns3:Price> </ns3:PriceBreakdown> </ns3:FareComponent> <ns3:FareComponent refs="SH2" ObjectKey="FC12"> <ns3:Parameters Quantity="1"/> <ns3:PriceBreakdown> <ns3:Price> <ns3:BaseAmount Code="RUB">11070</ns3:BaseAmount> <ns3:Taxes> <ns3:Total Code="RUB">206</ns3:Total> <ns3:Breakdown> <ns3:Tax> <ns3:Amount Code="RUB">90</ns3:Amount> <ns3:TaxCode>RI</ns3:TaxCode> <ns3:Description>Terminal Use Charge</ns3:Description> </ns3:Tax> <ns3:Tax> <ns3:Amount Code="RUB">116</ns3:Amount> <ns3:TaxCode>RI</ns3:TaxCode> <ns3:Description>Terminal Use Charge</ns3:Description> </ns3:Tax> </ns3:Breakdown> </ns3:Taxes> </ns3:Price> </ns3:PriceBreakdown> </ns3:FareComponent> </ns3:FareDetail> </ns3:OfferPrice> </ns3:PricedOffer> </ns3:AirlineOffer> </ns3:AirlineOffers> <ns3:AirlineOffers> <ns3:Owner>S7</ns3:Owner> <ns3:AirlineOffer> <ns3:OfferID Owner="S7">OF1</ns3:OfferID> <ns3:TotalPrice> <ns3:DetailCurrencyPrice> <ns3:Total Code="RUB">12624</ns3:Total> <ns3:Details> <ns3:Detail> <ns3:SubTotal Code="RUB">11800</ns3:SubTotal> <ns3:Application>Fare</ns3:Application> </ns3:Detail> </ns3:Details> <ns3:Taxes> <ns3:Total Code="RUB">824</ns3:Total> </ns3:Taxes> </ns3:DetailCurrencyPrice> </ns3:TotalPrice> <ns3:Disclosure> <ns3:Description> <ns3:Text>BASIC ECONOMY</ns3:Text> </ns3:Description> </ns3:Disclosure> <ns3:PricedOffer> <ns3:OfferPrice OfferItemID="OF1SL1"> <ns3:RequestedDate> <ns3:PriceDetail> <ns3:TotalAmount> <ns3:DetailCurrencyPrice> <ns3:Total Code="RUB">12624</ns3:Total> <ns3:Taxes> <ns3:Total Code="RUB">824</ns3:Total> </ns3:Taxes> </ns3:DetailCurrencyPrice> </ns3:TotalAmount> <ns3:BaseAmount Code="RUB">11800</ns3:BaseAmount> </ns3:PriceDetail> <ns3:Associations> <ns3:OtherAssociation> <ns3:OtherAssociation> <ns3:Type>SEG3 DME-LED</ns3:Type> <ns3:ReferenceValue>Meal_O</ns3:ReferenceValue> </ns3:OtherAssociation> </ns3:OtherAssociation> </ns3:Associations> <ns3:Associations> <ns3:AssociatedTraveler> <ns3:TravelerReferences>SH1</ns3:TravelerReferences> </ns3:AssociatedTraveler> <ns3:ApplicableFlight> <ns3:OriginDestinationReferences>OD3</ns3:OriginDestinationReferences> <ns3:FlightSegmentReference ref="SEG3"> <ns3:Cabin> <ns3:CabinDesignator>Y</ns3:CabinDesignator> <ns3:MarketingName>BASIC ECONOMY</ns3:MarketingName> </ns3:Cabin> </ns3:FlightSegmentReference> <ns3:FlightSegmentReference ref="SEG3"> <ns3:ClassOfService> <ns3:Code SeatsLeft="9">N</ns3:Code> <ns3:MarketingName>NBSOW</ns3:MarketingName> </ns3:ClassOfService> <ns3:BagDetailAssociation> <ns3:CheckedBagReferences>BG1</ns3:CheckedBagReferences> <ns3:CarryOnReferences>CO1</ns3:CarryOnReferences> </ns3:BagDetailAssociation> </ns3:FlightSegmentReference> </ns3:ApplicableFlight> <ns3:OtherAssociation> <ns3:OtherAssociation> <ns3:Type>NBSOW</ns3:Type> <ns3:ReferenceValue>PL1</ns3:ReferenceValue> </ns3:OtherAssociation> </ns3:OtherAssociation> </ns3:Associations> <ns3:Associations> <ns3:AssociatedTraveler> <ns3:TravelerReferences>SH2</ns3:TravelerReferences> </ns3:AssociatedTraveler> <ns3:ApplicableFlight> <ns3:OriginDestinationReferences>OD3</ns3:OriginDestinationReferences> <ns3:FlightSegmentReference ref="SEG3"> <ns3:Cabin> <ns3:CabinDesignator>Y</ns3:CabinDesignator> <ns3:MarketingName>BASIC ECONOMY</ns3:MarketingName> </ns3:Cabin> </ns3:FlightSegmentReference> <ns3:FlightSegmentReference ref="SEG3"> <ns3:ClassOfService> <ns3:Code SeatsLeft="9">N</ns3:Code> <ns3:MarketingName>NBSOW</ns3:MarketingName> </ns3:ClassOfService> <ns3:BagDetailAssociation> <ns3:CheckedBagReferences>BG1</ns3:CheckedBagReferences> <ns3:CarryOnReferences>CO1</ns3:CarryOnReferences> </ns3:BagDetailAssociation> </ns3:FlightSegmentReference> </ns3:ApplicableFlight> <ns3:OtherAssociation> <ns3:OtherAssociation> <ns3:Type>NBSOW</ns3:Type> <ns3:ReferenceValue>PL1</ns3:ReferenceValue> </ns3:OtherAssociation> </ns3:OtherAssociation> </ns3:Associations> </ns3:RequestedDate> <ns3:FareDetail> <ns3:FareComponent refs="SH1" ObjectKey="FC13"> <ns3:Parameters Quantity="1"/> <ns3:PriceBreakdown> <ns3:Price> <ns3:BaseAmount Code="RUB">4370</ns3:BaseAmount> <ns3:Taxes> <ns3:Total Code="RUB">412</ns3:Total> <ns3:Breakdown> <ns3:Tax> <ns3:Amount Code="RUB">180</ns3:Amount> <ns3:TaxCode>RI</ns3:TaxCode> <ns3:Description>Terminal Use Charge</ns3:Description> </ns3:Tax> <ns3:Tax> <ns3:Amount Code="RUB">232</ns3:Amount> <ns3:TaxCode>RI</ns3:TaxCode> <ns3:Description>Terminal Use Charge</ns3:Description> </ns3:Tax> </ns3:Breakdown> </ns3:Taxes> </ns3:Price> </ns3:PriceBreakdown> </ns3:FareComponent> <ns3:FareComponent refs="SH2" ObjectKey="FC14"> <ns3:Parameters Quantity="1"/> <ns3:PriceBreakdown> <ns3:Price> <ns3:BaseAmount Code="RUB">3715</ns3:BaseAmount> <ns3:Taxes> <ns3:Total Code="RUB">206</ns3:Total> <ns3:Breakdown> <ns3:Tax> <ns3:Amount Code="RUB">90</ns3:Amount> <ns3:TaxCode>RI</ns3:TaxCode> <ns3:Description>Terminal Use Charge</ns3:Description> </ns3:Tax> <ns3:Tax> <ns3:Amount Code="RUB">116</ns3:Amount> <ns3:TaxCode>RI</ns3:TaxCode> <ns3:Description>Terminal Use Charge</ns3:Description> </ns3:Tax> </ns3:Breakdown> </ns3:Taxes> </ns3:Price> </ns3:PriceBreakdown> </ns3:FareComponent> </ns3:FareDetail> </ns3:OfferPrice> </ns3:PricedOffer> </ns3:AirlineOffer> <ns3:AirlineOffer> <ns3:OfferID Owner="S7">OF2</ns3:OfferID> <ns3:TotalPrice> <ns3:DetailCurrencyPrice> <ns3:Total Code="RUB">18294</ns3:Total> <ns3:Details> <ns3:Detail> <ns3:SubTotal Code="RUB">17470</ns3:SubTotal> <ns3:Application>Fare</ns3:Application> </ns3:Detail> </ns3:Details> <ns3:Taxes> <ns3:Total Code="RUB">824</ns3:Total> </ns3:Taxes> </ns3:DetailCurrencyPrice> </ns3:TotalPrice> <ns3:Disclosure> <ns3:Description> <ns3:Text>STANDARD ECONOMY</ns3:Text> </ns3:Description> </ns3:Disclosure> <ns3:PricedOffer> <ns3:OfferPrice OfferItemID="OF2SL1"> <ns3:RequestedDate> <ns3:PriceDetail> <ns3:TotalAmount> <ns3:DetailCurrencyPrice> <ns3:Total Code="RUB">18294</ns3:Total> <ns3:Taxes> <ns3:Total Code="RUB">824</ns3:Total> </ns3:Taxes> </ns3:DetailCurrencyPrice> </ns3:TotalAmount> <ns3:BaseAmount Code="RUB">17470</ns3:BaseAmount> </ns3:PriceDetail> <ns3:Associations> <ns3:OtherAssociation> <ns3:OtherAssociation> <ns3:Type>SEG3 DME-LED</ns3:Type> <ns3:ReferenceValue>Meal_O</ns3:ReferenceValue> </ns3:OtherAssociation> </ns3:OtherAssociation> </ns3:Associations> <ns3:Associations> <ns3:AssociatedTraveler> <ns3:TravelerReferences>SH1</ns3:TravelerReferences> </ns3:AssociatedTraveler> <ns3:ApplicableFlight> <ns3:OriginDestinationReferences>OD3</ns3:OriginDestinationReferences> <ns3:FlightSegmentReference ref="SEG3"> <ns3:Cabin> <ns3:CabinDesignator>Y</ns3:CabinDesignator> <ns3:MarketingName>STANDARD ECONOMY</ns3:MarketingName> </ns3:Cabin> </ns3:FlightSegmentReference> <ns3:FlightSegmentReference ref="SEG3"> <ns3:ClassOfService> <ns3:Code SeatsLeft="9">N</ns3:Code> <ns3:MarketingName>NSTOW</ns3:MarketingName> </ns3:ClassOfService> <ns3:BagDetailAssociation> <ns3:CheckedBagReferences>BG2</ns3:CheckedBagReferences> <ns3:CarryOnReferences>CO1</ns3:CarryOnReferences> </ns3:BagDetailAssociation> </ns3:FlightSegmentReference> </ns3:ApplicableFlight> <ns3:OtherAssociation> <ns3:OtherAssociation> <ns3:Type>NSTOW</ns3:Type> <ns3:ReferenceValue>PL2</ns3:ReferenceValue> </ns3:OtherAssociation> </ns3:OtherAssociation> </ns3:Associations> <ns3:Associations> <ns3:AssociatedTraveler> <ns3:TravelerReferences>SH2</ns3:TravelerReferences> </ns3:AssociatedTraveler> <ns3:ApplicableFlight> <ns3:OriginDestinationReferences>OD3</ns3:OriginDestinationReferences> <ns3:FlightSegmentReference ref="SEG3"> <ns3:Cabin> <ns3:CabinDesignator>Y</ns3:CabinDesignator> <ns3:MarketingName>STANDARD ECONOMY</ns3:MarketingName> </ns3:Cabin> </ns3:FlightSegmentReference> <ns3:FlightSegmentReference ref="SEG3"> <ns3:ClassOfService> <ns3:Code SeatsLeft="9">N</ns3:Code> <ns3:MarketingName>NSTOW</ns3:MarketingName> </ns3:ClassOfService> <ns3:BagDetailAssociation> <ns3:CheckedBagReferences>BG2</ns3:CheckedBagReferences> <ns3:CarryOnReferences>CO1</ns3:CarryOnReferences> </ns3:BagDetailAssociation> </ns3:FlightSegmentReference> </ns3:ApplicableFlight> <ns3:OtherAssociation> <ns3:OtherAssociation> <ns3:Type>NSTOW</ns3:Type> <ns3:ReferenceValue>PL2</ns3:ReferenceValue> </ns3:OtherAssociation> </ns3:OtherAssociation> </ns3:Associations> </ns3:RequestedDate> <ns3:FareDetail> <ns3:FareComponent refs="SH1" ObjectKey="FC15"> <ns3:Parameters Quantity="1"/> <ns3:PriceBreakdown> <ns3:Price> <ns3:BaseAmount Code="RUB">6470</ns3:BaseAmount> <ns3:Taxes> <ns3:Total Code="RUB">412</ns3:Total> <ns3:Breakdown> <ns3:Tax> <ns3:Amount Code="RUB">180</ns3:Amount> <ns3:TaxCode>RI</ns3:TaxCode> <ns3:Description>Terminal Use Charge</ns3:Description> </ns3:Tax> <ns3:Tax> <ns3:Amount Code="RUB">232</ns3:Amount> <ns3:TaxCode>RI</ns3:TaxCode> <ns3:Description>Terminal Use Charge</ns3:Description> </ns3:Tax> </ns3:Breakdown> </ns3:Taxes> </ns3:Price> </ns3:PriceBreakdown> </ns3:FareComponent> <ns3:FareComponent refs="SH2" ObjectKey="FC16"> <ns3:Parameters Quantity="1"/> <ns3:PriceBreakdown> <ns3:Price> <ns3:BaseAmount Code="RUB">5500</ns3:BaseAmount> <ns3:Taxes> <ns3:Total Code="RUB">206</ns3:Total> <ns3:Breakdown> <ns3:Tax> <ns3:Amount Code="RUB">90</ns3:Amount> <ns3:TaxCode>RI</ns3:TaxCode> <ns3:Description>Terminal Use Charge</ns3:Description> </ns3:Tax> <ns3:Tax> <ns3:Amount Code="RUB">116</ns3:Amount> <ns3:TaxCode>RI</ns3:TaxCode> <ns3:Description>Terminal Use Charge</ns3:Description> </ns3:Tax> </ns3:Breakdown> </ns3:Taxes> </ns3:Price> </ns3:PriceBreakdown> </ns3:FareComponent> </ns3:FareDetail> </ns3:OfferPrice> </ns3:PricedOffer> </ns3:AirlineOffer> <ns3:AirlineOffer> <ns3:OfferID Owner="S7">OF3</ns3:OfferID> <ns3:TotalPrice> <ns3:DetailCurrencyPrice> <ns3:Total Code="RUB">35984</ns3:Total> <ns3:Details> <ns3:Detail> <ns3:SubTotal Code="RUB">35160</ns3:SubTotal> <ns3:Application>Fare</ns3:Application> </ns3:Detail> </ns3:Details> <ns3:Taxes> <ns3:Total Code="RUB">824</ns3:Total> </ns3:Taxes> </ns3:DetailCurrencyPrice> </ns3:TotalPrice> <ns3:Disclosure> <ns3:Description> <ns3:Text>PLUS ECONOMY</ns3:Text> </ns3:Description> </ns3:Disclosure> <ns3:PricedOffer> <ns3:OfferPrice OfferItemID="OF3SL1"> <ns3:RequestedDate> <ns3:PriceDetail> <ns3:TotalAmount> <ns3:DetailCurrencyPrice> <ns3:Total Code="RUB">35984</ns3:Total> <ns3:Taxes> <ns3:Total Code="RUB">824</ns3:Total> </ns3:Taxes> </ns3:DetailCurrencyPrice> </ns3:TotalAmount> <ns3:BaseAmount Code="RUB">35160</ns3:BaseAmount> </ns3:PriceDetail> <ns3:Associations> <ns3:OtherAssociation> <ns3:OtherAssociation> <ns3:Type>SEG3 DME-LED</ns3:Type> <ns3:ReferenceValue>Meal_O</ns3:ReferenceValue> </ns3:OtherAssociation> </ns3:OtherAssociation> </ns3:Associations> <ns3:Associations> <ns3:AssociatedTraveler> <ns3:TravelerReferences>SH1</ns3:TravelerReferences> </ns3:AssociatedTraveler> <ns3:ApplicableFlight> <ns3:OriginDestinationReferences>OD3</ns3:OriginDestinationReferences> <ns3:FlightSegmentReference ref="SEG3"> <ns3:Cabin> <ns3:CabinDesignator>Y</ns3:CabinDesignator> <ns3:MarketingName>PLUS ECONOMY</ns3:MarketingName> </ns3:Cabin> </ns3:FlightSegmentReference> <ns3:FlightSegmentReference ref="SEG3"> <ns3:ClassOfService> <ns3:Code SeatsLeft="9">N</ns3:Code> <ns3:MarketingName>NPLOW</ns3:MarketingName> </ns3:ClassOfService> <ns3:BagDetailAssociation> <ns3:CheckedBagReferences>BG3</ns3:CheckedBagReferences> <ns3:CarryOnReferences>CO1</ns3:CarryOnReferences> </ns3:BagDetailAssociation> </ns3:FlightSegmentReference> </ns3:ApplicableFlight> </ns3:Associations> <ns3:Associations> <ns3:AssociatedTraveler> <ns3:TravelerReferences>SH2</ns3:TravelerReferences> </ns3:AssociatedTraveler> <ns3:ApplicableFlight> <ns3:OriginDestinationReferences>OD3</ns3:OriginDestinationReferences> <ns3:FlightSegmentReference ref="SEG3"> <ns3:Cabin> <ns3:CabinDesignator>Y</ns3:CabinDesignator> <ns3:MarketingName>PLUS ECONOMY</ns3:MarketingName> </ns3:Cabin> </ns3:FlightSegmentReference> <ns3:FlightSegmentReference ref="SEG3"> <ns3:ClassOfService> <ns3:Code SeatsLeft="9">N</ns3:Code> <ns3:MarketingName>NPLOW</ns3:MarketingName> </ns3:ClassOfService> <ns3:BagDetailAssociation> <ns3:CheckedBagReferences>BG3</ns3:CheckedBagReferences> <ns3:CarryOnReferences>CO1</ns3:CarryOnReferences> </ns3:BagDetailAssociation> </ns3:FlightSegmentReference> </ns3:ApplicableFlight> </ns3:Associations> </ns3:RequestedDate> <ns3:FareDetail> <ns3:FareComponent refs="SH1" ObjectKey="FC17"> <ns3:Parameters Quantity="1"/> <ns3:PriceBreakdown> <ns3:Price> <ns3:BaseAmount Code="RUB">13020</ns3:BaseAmount> <ns3:Taxes> <ns3:Total Code="RUB">412</ns3:Total> <ns3:Breakdown> <ns3:Tax> <ns3:Amount Code="RUB">180</ns3:Amount> <ns3:TaxCode>RI</ns3:TaxCode> <ns3:Description>Terminal Use Charge</ns3:Description> </ns3:Tax> <ns3:Tax> <ns3:Amount Code="RUB">232</ns3:Amount> <ns3:TaxCode>RI</ns3:TaxCode> <ns3:Description>Terminal Use Charge</ns3:Description> </ns3:Tax> </ns3:Breakdown> </ns3:Taxes> </ns3:Price> </ns3:PriceBreakdown> </ns3:FareComponent> <ns3:FareComponent refs="SH2" ObjectKey="FC18"> <ns3:Parameters Quantity="1"/> <ns3:PriceBreakdown> <ns3:Price> <ns3:BaseAmount Code="RUB">11070</ns3:BaseAmount> <ns3:Taxes> <ns3:Total Code="RUB">206</ns3:Total> <ns3:Breakdown> <ns3:Tax> <ns3:Amount Code="RUB">90</ns3:Amount> <ns3:TaxCode>RI</ns3:TaxCode> <ns3:Description>Terminal Use Charge</ns3:Description> </ns3:Tax> <ns3:Tax> <ns3:Amount Code="RUB">116</ns3:Amount> <ns3:TaxCode>RI</ns3:TaxCode> <ns3:Description>Terminal Use Charge</ns3:Description> </ns3:Tax> </ns3:Breakdown> </ns3:Taxes> </ns3:Price> </ns3:PriceBreakdown> </ns3:FareComponent> </ns3:FareDetail> </ns3:OfferPrice> </ns3:PricedOffer> </ns3:AirlineOffer> </ns3:AirlineOffers> <ns3:AirlineOffers> <ns3:Owner>S7</ns3:Owner> <ns3:AirlineOffer> <ns3:OfferID Owner="S7">OF1</ns3:OfferID> <ns3:TotalPrice> <ns3:DetailCurrencyPrice> <ns3:Total Code="RUB">12624</ns3:Total> <ns3:Details> <ns3:Detail> <ns3:SubTotal Code="RUB">11800</ns3:SubTotal> <ns3:Application>Fare</ns3:Application> </ns3:Detail> </ns3:Details> <ns3:Taxes> <ns3:Total Code="RUB">824</ns3:Total> </ns3:Taxes> </ns3:DetailCurrencyPrice> </ns3:TotalPrice> <ns3:Disclosure> <ns3:Description> <ns3:Text>BASIC ECONOMY</ns3:Text> </ns3:Description> </ns3:Disclosure> <ns3:PricedOffer> <ns3:OfferPrice OfferItemID="OF1SL1"> <ns3:RequestedDate> <ns3:PriceDetail> <ns3:TotalAmount> <ns3:DetailCurrencyPrice> <ns3:Total Code="RUB">12624</ns3:Total> <ns3:Taxes> <ns3:Total Code="RUB">824</ns3:Total> </ns3:Taxes> </ns3:DetailCurrencyPrice> </ns3:TotalAmount> <ns3:BaseAmount Code="RUB">11800</ns3:BaseAmount> </ns3:PriceDetail> <ns3:Associations> <ns3:OtherAssociation> <ns3:OtherAssociation> <ns3:Type>SEG4 DME-LED</ns3:Type> <ns3:ReferenceValue>Meal_O</ns3:ReferenceValue> </ns3:OtherAssociation> </ns3:OtherAssociation> </ns3:Associations> <ns3:Associations> <ns3:AssociatedTraveler> <ns3:TravelerReferences>SH1</ns3:TravelerReferences> </ns3:AssociatedTraveler> <ns3:ApplicableFlight> <ns3:OriginDestinationReferences>OD4</ns3:OriginDestinationReferences> <ns3:FlightSegmentReference ref="SEG4"> <ns3:Cabin> <ns3:CabinDesignator>Y</ns3:CabinDesignator> <ns3:MarketingName>BASIC ECONOMY</ns3:MarketingName> </ns3:Cabin> </ns3:FlightSegmentReference> <ns3:FlightSegmentReference ref="SEG4"> <ns3:ClassOfService> <ns3:Code SeatsLeft="9">N</ns3:Code> <ns3:MarketingName>NBSOW</ns3:MarketingName> </ns3:ClassOfService> <ns3:BagDetailAssociation> <ns3:CheckedBagReferences>BG1</ns3:CheckedBagReferences> <ns3:CarryOnReferences>CO1</ns3:CarryOnReferences> </ns3:BagDetailAssociation> </ns3:FlightSegmentReference> </ns3:ApplicableFlight> <ns3:OtherAssociation> <ns3:OtherAssociation> <ns3:Type>NBSOW</ns3:Type> <ns3:ReferenceValue>PL1</ns3:ReferenceValue> </ns3:OtherAssociation> </ns3:OtherAssociation> </ns3:Associations> <ns3:Associations> <ns3:AssociatedTraveler> <ns3:TravelerReferences>SH2</ns3:TravelerReferences> </ns3:AssociatedTraveler> <ns3:ApplicableFlight> <ns3:OriginDestinationReferences>OD4</ns3:OriginDestinationReferences> <ns3:FlightSegmentReference ref="SEG4"> <ns3:Cabin> <ns3:CabinDesignator>Y</ns3:CabinDesignator> <ns3:MarketingName>BASIC ECONOMY</ns3:MarketingName> </ns3:Cabin> </ns3:FlightSegmentReference> <ns3:FlightSegmentReference ref="SEG4"> <ns3:ClassOfService> <ns3:Code SeatsLeft="9">N</ns3:Code> <ns3:MarketingName>NBSOW</ns3:MarketingName> </ns3:ClassOfService> <ns3:BagDetailAssociation> <ns3:CheckedBagReferences>BG1</ns3:CheckedBagReferences> <ns3:CarryOnReferences>CO1</ns3:CarryOnReferences> </ns3:BagDetailAssociation> </ns3:FlightSegmentReference> </ns3:ApplicableFlight> <ns3:OtherAssociation> <ns3:OtherAssociation> <ns3:Type>NBSOW</ns3:Type> <ns3:ReferenceValue>PL1</ns3:ReferenceValue> </ns3:OtherAssociation> </ns3:OtherAssociation> </ns3:Associations> </ns3:RequestedDate> <ns3:FareDetail> <ns3:FareComponent refs="SH1" ObjectKey="FC19"> <ns3:Parameters Quantity="1"/> <ns3:PriceBreakdown> <ns3:Price> <ns3:BaseAmount Code="RUB">4370</ns3:BaseAmount> <ns3:Taxes> <ns3:Total Code="RUB">412</ns3:Total> <ns3:Breakdown> <ns3:Tax> <ns3:Amount Code="RUB">180</ns3:Amount> <ns3:TaxCode>RI</ns3:TaxCode> <ns3:Description>Terminal Use Charge</ns3:Description> </ns3:Tax> <ns3:Tax> <ns3:Amount Code="RUB">232</ns3:Amount> <ns3:TaxCode>RI</ns3:TaxCode> <ns3:Description>Terminal Use Charge</ns3:Description> </ns3:Tax> </ns3:Breakdown> </ns3:Taxes> </ns3:Price> </ns3:PriceBreakdown> </ns3:FareComponent> <ns3:FareComponent refs="SH2" ObjectKey="FC20"> <ns3:Parameters Quantity="1"/> <ns3:PriceBreakdown> <ns3:Price> <ns3:BaseAmount Code="RUB">3715</ns3:BaseAmount> <ns3:Taxes> <ns3:Total Code="RUB">206</ns3:Total> <ns3:Breakdown> <ns3:Tax> <ns3:Amount Code="RUB">90</ns3:Amount> <ns3:TaxCode>RI</ns3:TaxCode> <ns3:Description>Terminal Use Charge</ns3:Description> </ns3:Tax> <ns3:Tax> <ns3:Amount Code="RUB">116</ns3:Amount> <ns3:TaxCode>RI</ns3:TaxCode> <ns3:Description>Terminal Use Charge</ns3:Description> </ns3:Tax> </ns3:Breakdown> </ns3:Taxes> </ns3:Price> </ns3:PriceBreakdown> </ns3:FareComponent> </ns3:FareDetail> </ns3:OfferPrice> </ns3:PricedOffer> </ns3:AirlineOffer> <ns3:AirlineOffer> <ns3:OfferID Owner="S7">OF2</ns3:OfferID> <ns3:TotalPrice> <ns3:DetailCurrencyPrice> <ns3:Total Code="RUB">18294</ns3:Total> <ns3:Details> <ns3:Detail> <ns3:SubTotal Code="RUB">17470</ns3:SubTotal> <ns3:Application>Fare</ns3:Application> </ns3:Detail> </ns3:Details> <ns3:Taxes> <ns3:Total Code="RUB">824</ns3:Total> </ns3:Taxes> </ns3:DetailCurrencyPrice> </ns3:TotalPrice> <ns3:Disclosure> <ns3:Description> <ns3:Text>STANDARD ECONOMY</ns3:Text> </ns3:Description> </ns3:Disclosure> <ns3:PricedOffer> <ns3:OfferPrice OfferItemID="OF2SL1"> <ns3:RequestedDate> <ns3:PriceDetail> <ns3:TotalAmount> <ns3:DetailCurrencyPrice> <ns3:Total Code="RUB">18294</ns3:Total> <ns3:Taxes> <ns3:Total Code="RUB">824</ns3:Total> </ns3:Taxes> </ns3:DetailCurrencyPrice> </ns3:TotalAmount> <ns3:BaseAmount Code="RUB">17470</ns3:BaseAmount> </ns3:PriceDetail> <ns3:Associations> <ns3:OtherAssociation> <ns3:OtherAssociation> <ns3:Type>SEG4 DME-LED</ns3:Type> <ns3:ReferenceValue>Meal_O</ns3:ReferenceValue> </ns3:OtherAssociation> </ns3:OtherAssociation> </ns3:Associations> <ns3:Associations> <ns3:AssociatedTraveler> <ns3:TravelerReferences>SH1</ns3:TravelerReferences> </ns3:AssociatedTraveler> <ns3:ApplicableFlight> <ns3:OriginDestinationReferences>OD4</ns3:OriginDestinationReferences> <ns3:FlightSegmentReference ref="SEG4"> <ns3:Cabin> <ns3:CabinDesignator>Y</ns3:CabinDesignator> <ns3:MarketingName>STANDARD ECONOMY</ns3:MarketingName> </ns3:Cabin> </ns3:FlightSegmentReference> <ns3:FlightSegmentReference ref="SEG4"> <ns3:ClassOfService> <ns3:Code SeatsLeft="9">N</ns3:Code> <ns3:MarketingName>NSTOW</ns3:MarketingName> </ns3:ClassOfService> <ns3:BagDetailAssociation> <ns3:CheckedBagReferences>BG2</ns3:CheckedBagReferences> <ns3:CarryOnReferences>CO1</ns3:CarryOnReferences> </ns3:BagDetailAssociation> </ns3:FlightSegmentReference> </ns3:ApplicableFlight> <ns3:OtherAssociation> <ns3:OtherAssociation> <ns3:Type>NSTOW</ns3:Type> <ns3:ReferenceValue>PL2</ns3:ReferenceValue> </ns3:OtherAssociation> </ns3:OtherAssociation> </ns3:Associations> <ns3:Associations> <ns3:AssociatedTraveler> <ns3:TravelerReferences>SH2</ns3:TravelerReferences> </ns3:AssociatedTraveler> <ns3:ApplicableFlight> <ns3:OriginDestinationReferences>OD4</ns3:OriginDestinationReferences> <ns3:FlightSegmentReference ref="SEG4"> <ns3:Cabin> <ns3:CabinDesignator>Y</ns3:CabinDesignator> <ns3:MarketingName>STANDARD ECONOMY</ns3:MarketingName> </ns3:Cabin> </ns3:FlightSegmentReference> <ns3:FlightSegmentReference ref="SEG4"> <ns3:ClassOfService> <ns3:Code SeatsLeft="9">N</ns3:Code> <ns3:MarketingName>NSTOW</ns3:MarketingName> </ns3:ClassOfService> <ns3:BagDetailAssociation> <ns3:CheckedBagReferences>BG2</ns3:CheckedBagReferences> <ns3:CarryOnReferences>CO1</ns3:CarryOnReferences> </ns3:BagDetailAssociation> </ns3:FlightSegmentReference> </ns3:ApplicableFlight> <ns3:OtherAssociation> <ns3:OtherAssociation> <ns3:Type>NSTOW</ns3:Type> <ns3:ReferenceValue>PL2</ns3:ReferenceValue> </ns3:OtherAssociation> </ns3:OtherAssociation> </ns3:Associations> </ns3:RequestedDate> <ns3:FareDetail> <ns3:FareComponent refs="SH1" ObjectKey="FC21"> <ns3:Parameters Quantity="1"/> <ns3:PriceBreakdown> <ns3:Price> <ns3:BaseAmount Code="RUB">6470</ns3:BaseAmount> <ns3:Taxes> <ns3:Total Code="RUB">412</ns3:Total> <ns3:Breakdown> <ns3:Tax> <ns3:Amount Code="RUB">180</ns3:Amount> <ns3:TaxCode>RI</ns3:TaxCode> <ns3:Description>Terminal Use Charge</ns3:Description> </ns3:Tax> <ns3:Tax> <ns3:Amount Code="RUB">232</ns3:Amount> <ns3:TaxCode>RI</ns3:TaxCode> <ns3:Description>Terminal Use Charge</ns3:Description> </ns3:Tax> </ns3:Breakdown> </ns3:Taxes> </ns3:Price> </ns3:PriceBreakdown> </ns3:FareComponent> <ns3:FareComponent refs="SH2" ObjectKey="FC22"> <ns3:Parameters Quantity="1"/> <ns3:PriceBreakdown> <ns3:Price> <ns3:BaseAmount Code="RUB">5500</ns3:BaseAmount> <ns3:Taxes> <ns3:Total Code="RUB">206</ns3:Total> <ns3:Breakdown> <ns3:Tax> <ns3:Amount Code="RUB">90</ns3:Amount> <ns3:TaxCode>RI</ns3:TaxCode> <ns3:Description>Terminal Use Charge</ns3:Description> </ns3:Tax> <ns3:Tax> <ns3:Amount Code="RUB">116</ns3:Amount> <ns3:TaxCode>RI</ns3:TaxCode> <ns3:Description>Terminal Use Charge</ns3:Description> </ns3:Tax> </ns3:Breakdown> </ns3:Taxes> </ns3:Price> </ns3:PriceBreakdown> </ns3:FareComponent> </ns3:FareDetail> </ns3:OfferPrice> </ns3:PricedOffer> </ns3:AirlineOffer> <ns3:AirlineOffer> <ns3:OfferID Owner="S7">OF3</ns3:OfferID> <ns3:TotalPrice> <ns3:DetailCurrencyPrice> <ns3:Total Code="RUB">35984</ns3:Total> <ns3:Details> <ns3:Detail> <ns3:SubTotal Code="RUB">35160</ns3:SubTotal> <ns3:Application>Fare</ns3:Application> </ns3:Detail> </ns3:Details> <ns3:Taxes> <ns3:Total Code="RUB">824</ns3:Total> </ns3:Taxes> </ns3:DetailCurrencyPrice> </ns3:TotalPrice> <ns3:Disclosure> <ns3:Description> <ns3:Text>PLUS ECONOMY</ns3:Text> </ns3:Description> </ns3:Disclosure> <ns3:PricedOffer> <ns3:OfferPrice OfferItemID="OF3SL1"> <ns3:RequestedDate> <ns3:PriceDetail> <ns3:TotalAmount> <ns3:DetailCurrencyPrice> <ns3:Total Code="RUB">35984</ns3:Total> <ns3:Taxes> <ns3:Total Code="RUB">824</ns3:Total> </ns3:Taxes> </ns3:DetailCurrencyPrice> </ns3:TotalAmount> <ns3:BaseAmount Code="RUB">35160</ns3:BaseAmount> </ns3:PriceDetail> <ns3:Associations> <ns3:OtherAssociation> <ns3:OtherAssociation> <ns3:Type>SEG4 DME-LED</ns3:Type> <ns3:ReferenceValue>Meal_O</ns3:ReferenceValue> </ns3:OtherAssociation> </ns3:OtherAssociation> </ns3:Associations> <ns3:Associations> <ns3:AssociatedTraveler> <ns3:TravelerReferences>SH1</ns3:TravelerReferences> </ns3:AssociatedTraveler> <ns3:ApplicableFlight> <ns3:OriginDestinationReferences>OD4</ns3:OriginDestinationReferences> <ns3:FlightSegmentReference ref="SEG4"> <ns3:Cabin> <ns3:CabinDesignator>Y</ns3:CabinDesignator> <ns3:MarketingName>PLUS ECONOMY</ns3:MarketingName> </ns3:Cabin> </ns3:FlightSegmentReference> <ns3:FlightSegmentReference ref="SEG4"> <ns3:ClassOfService> <ns3:Code SeatsLeft="9">N</ns3:Code> <ns3:MarketingName>NPLOW</ns3:MarketingName> </ns3:ClassOfService> <ns3:BagDetailAssociation> <ns3:CheckedBagReferences>BG3</ns3:CheckedBagReferences> <ns3:CarryOnReferences>CO1</ns3:CarryOnReferences> </ns3:BagDetailAssociation> </ns3:FlightSegmentReference> </ns3:ApplicableFlight> </ns3:Associations> <ns3:Associations> <ns3:AssociatedTraveler> <ns3:TravelerReferences>SH2</ns3:TravelerReferences> </ns3:AssociatedTraveler> <ns3:ApplicableFlight> <ns3:OriginDestinationReferences>OD4</ns3:OriginDestinationReferences> <ns3:FlightSegmentReference ref="SEG4"> <ns3:Cabin> <ns3:CabinDesignator>Y</ns3:CabinDesignator> <ns3:MarketingName>PLUS ECONOMY</ns3:MarketingName> </ns3:Cabin> </ns3:FlightSegmentReference> <ns3:FlightSegmentReference ref="SEG4"> <ns3:ClassOfService> <ns3:Code SeatsLeft="9">N</ns3:Code> <ns3:MarketingName>NPLOW</ns3:MarketingName> </ns3:ClassOfService> <ns3:BagDetailAssociation> <ns3:CheckedBagReferences>BG3</ns3:CheckedBagReferences> <ns3:CarryOnReferences>CO1</ns3:CarryOnReferences> </ns3:BagDetailAssociation> </ns3:FlightSegmentReference> </ns3:ApplicableFlight> </ns3:Associations> </ns3:RequestedDate> <ns3:FareDetail> <ns3:FareComponent refs="SH1" ObjectKey="FC23"> <ns3:Parameters Quantity="1"/> <ns3:PriceBreakdown> <ns3:Price> <ns3:BaseAmount Code="RUB">13020</ns3:BaseAmount> <ns3:Taxes> <ns3:Total Code="RUB">412</ns3:Total> <ns3:Breakdown> <ns3:Tax> <ns3:Amount Code="RUB">180</ns3:Amount> <ns3:TaxCode>RI</ns3:TaxCode> <ns3:Description>Terminal Use Charge</ns3:Description> </ns3:Tax> <ns3:Tax> <ns3:Amount Code="RUB">232</ns3:Amount> <ns3:TaxCode>RI</ns3:TaxCode> <ns3:Description>Terminal Use Charge</ns3:Description> </ns3:Tax> </ns3:Breakdown> </ns3:Taxes> </ns3:Price> </ns3:PriceBreakdown> </ns3:FareComponent> <ns3:FareComponent refs="SH2" ObjectKey="FC24"> <ns3:Parameters Quantity="1"/> <ns3:PriceBreakdown> <ns3:Price> <ns3:BaseAmount Code="RUB">11070</ns3:BaseAmount> <ns3:Taxes> <ns3:Total Code="RUB">206</ns3:Total> <ns3:Breakdown> <ns3:Tax> <ns3:Amount Code="RUB">90</ns3:Amount> <ns3:TaxCode>RI</ns3:TaxCode> <ns3:Description>Terminal Use Charge</ns3:Description> </ns3:Tax> <ns3:Tax> <ns3:Amount Code="RUB">116</ns3:Amount> <ns3:TaxCode>RI</ns3:TaxCode> <ns3:Description>Terminal Use Charge</ns3:Description> </ns3:Tax> </ns3:Breakdown> </ns3:Taxes> </ns3:Price> </ns3:PriceBreakdown> </ns3:FareComponent> </ns3:FareDetail> </ns3:OfferPrice> </ns3:PricedOffer> </ns3:AirlineOffer> <ns3:AirlineOffer> <ns3:OfferID Owner="S7">OF4</ns3:OfferID> <ns3:TotalPrice> <ns3:DetailCurrencyPrice> <ns3:Total Code="RUB">36779</ns3:Total> <ns3:Details> <ns3:Detail> <ns3:SubTotal Code="RUB">35955</ns3:SubTotal> <ns3:Application>Fare</ns3:Application> </ns3:Detail> </ns3:Details> <ns3:Taxes> <ns3:Total Code="RUB">824</ns3:Total> </ns3:Taxes> </ns3:DetailCurrencyPrice> </ns3:TotalPrice> <ns3:Disclosure> <ns3:Description> <ns3:Text>BASIC BUSINESS</ns3:Text> </ns3:Description> </ns3:Disclosure> <ns3:PricedOffer> <ns3:OfferPrice OfferItemID="OF4SL1"> <ns3:RequestedDate> <ns3:PriceDetail> <ns3:TotalAmount> <ns3:DetailCurrencyPrice> <ns3:Total Code="RUB">36779</ns3:Total> <ns3:Taxes> <ns3:Total Code="RUB">824</ns3:Total> </ns3:Taxes> </ns3:DetailCurrencyPrice> </ns3:TotalAmount> <ns3:BaseAmount Code="RUB">35955</ns3:BaseAmount> </ns3:PriceDetail> <ns3:Associations> <ns3:OtherAssociation> <ns3:OtherAssociation> <ns3:Type>SEG4 DME-LED</ns3:Type> <ns3:ReferenceValue>Meal_H</ns3:ReferenceValue> </ns3:OtherAssociation> </ns3:OtherAssociation> </ns3:Associations> <ns3:Associations> <ns3:AssociatedTraveler> <ns3:TravelerReferences>SH1</ns3:TravelerReferences> </ns3:AssociatedTraveler> <ns3:ApplicableFlight> <ns3:OriginDestinationReferences>OD4</ns3:OriginDestinationReferences> <ns3:FlightSegmentReference ref="SEG4"> <ns3:Cabin> <ns3:CabinDesignator>B</ns3:CabinDesignator> <ns3:MarketingName>BASIC BUSINESS</ns3:MarketingName> </ns3:Cabin> </ns3:FlightSegmentReference> <ns3:FlightSegmentReference ref="SEG4"> <ns3:ClassOfService> <ns3:Code SeatsLeft="4">D</ns3:Code> <ns3:MarketingName>DBSOW</ns3:MarketingName> </ns3:ClassOfService> <ns3:BagDetailAssociation> <ns3:CheckedBagReferences>BG3</ns3:CheckedBagReferences> <ns3:CarryOnReferences>CO2</ns3:CarryOnReferences> </ns3:BagDetailAssociation> </ns3:FlightSegmentReference> </ns3:ApplicableFlight> <ns3:OtherAssociation> <ns3:OtherAssociation> <ns3:Type>DBSOW</ns3:Type> <ns3:ReferenceValue>PL3</ns3:ReferenceValue> </ns3:OtherAssociation> </ns3:OtherAssociation> </ns3:Associations> <ns3:Associations> <ns3:AssociatedTraveler> <ns3:TravelerReferences>SH2</ns3:TravelerReferences> </ns3:AssociatedTraveler> <ns3:ApplicableFlight> <ns3:OriginDestinationReferences>OD4</ns3:OriginDestinationReferences> <ns3:FlightSegmentReference ref="SEG4"> <ns3:Cabin> <ns3:CabinDesignator>B</ns3:CabinDesignator> <ns3:MarketingName>BASIC BUSINESS</ns3:MarketingName> </ns3:Cabin> </ns3:FlightSegmentReference> <ns3:FlightSegmentReference ref="SEG4"> <ns3:ClassOfService> <ns3:Code SeatsLeft="4">D</ns3:Code> <ns3:MarketingName>DBSOW</ns3:MarketingName> </ns3:ClassOfService> <ns3:BagDetailAssociation> <ns3:CheckedBagReferences>BG3</ns3:CheckedBagReferences> <ns3:CarryOnReferences>CO2</ns3:CarryOnReferences> </ns3:BagDetailAssociation> </ns3:FlightSegmentReference> </ns3:ApplicableFlight> <ns3:OtherAssociation> <ns3:OtherAssociation> <ns3:Type>DBSOW</ns3:Type> <ns3:ReferenceValue>PL3</ns3:ReferenceValue> </ns3:OtherAssociation> </ns3:OtherAssociation> </ns3:Associations> </ns3:RequestedDate> <ns3:FareDetail> <ns3:FareComponent refs="SH1" ObjectKey="FC25"> <ns3:Parameters Quantity="1"/> <ns3:PriceBreakdown> <ns3:Price> <ns3:BaseAmount Code="RUB">13315</ns3:BaseAmount> <ns3:Taxes> <ns3:Total Code="RUB">412</ns3:Total> <ns3:Breakdown> <ns3:Tax> <ns3:Amount Code="RUB">180</ns3:Amount> <ns3:TaxCode>RI</ns3:TaxCode> <ns3:Description>Terminal Use Charge</ns3:Description> </ns3:Tax> <ns3:Tax> <ns3:Amount Code="RUB">232</ns3:Amount> <ns3:TaxCode>RI</ns3:TaxCode> <ns3:Description>Terminal Use Charge</ns3:Description> </ns3:Tax> </ns3:Breakdown> </ns3:Taxes> </ns3:Price> </ns3:PriceBreakdown> </ns3:FareComponent> <ns3:FareComponent refs="SH2" ObjectKey="FC26"> <ns3:Parameters Quantity="1"/> <ns3:PriceBreakdown> <ns3:Price> <ns3:BaseAmount Code="RUB">11320</ns3:BaseAmount> <ns3:Taxes> <ns3:Total Code="RUB">206</ns3:Total> <ns3:Breakdown> <ns3:Tax> <ns3:Amount Code="RUB">90</ns3:Amount> <ns3:TaxCode>RI</ns3:TaxCode> <ns3:Description>Terminal Use Charge</ns3:Description> </ns3:Tax> <ns3:Tax> <ns3:Amount Code="RUB">116</ns3:Amount> <ns3:TaxCode>RI</ns3:TaxCode> <ns3:Description>Terminal Use Charge</ns3:Description> </ns3:Tax> </ns3:Breakdown> </ns3:Taxes> </ns3:Price> </ns3:PriceBreakdown> </ns3:FareComponent> </ns3:FareDetail> </ns3:OfferPrice> </ns3:PricedOffer> </ns3:AirlineOffer> <ns3:AirlineOffer> <ns3:OfferID Owner="S7">OF5</ns3:OfferID> <ns3:TotalPrice> <ns3:DetailCurrencyPrice> <ns3:Total Code="RUB">53789</ns3:Total> <ns3:Details> <ns3:Detail> <ns3:SubTotal Code="RUB">52965</ns3:SubTotal> <ns3:Application>Fare</ns3:Application> </ns3:Detail> </ns3:Details> <ns3:Taxes> <ns3:Total Code="RUB">824</ns3:Total> </ns3:Taxes> </ns3:DetailCurrencyPrice> </ns3:TotalPrice> <ns3:Disclosure> <ns3:Description> <ns3:Text>STANDARD BUSINESS</ns3:Text> </ns3:Description> </ns3:Disclosure> <ns3:PricedOffer> <ns3:OfferPrice OfferItemID="OF5SL1"> <ns3:RequestedDate> <ns3:PriceDetail> <ns3:TotalAmount> <ns3:DetailCurrencyPrice> <ns3:Total Code="RUB">53789</ns3:Total> <ns3:Taxes> <ns3:Total Code="RUB">824</ns3:Total> </ns3:Taxes> </ns3:DetailCurrencyPrice> </ns3:TotalAmount> <ns3:BaseAmount Code="RUB">52965</ns3:BaseAmount> </ns3:PriceDetail> <ns3:Associations> <ns3:OtherAssociation> <ns3:OtherAssociation> <ns3:Type>SEG4 DME-LED</ns3:Type> <ns3:ReferenceValue>Meal_H</ns3:ReferenceValue> </ns3:OtherAssociation> </ns3:OtherAssociation> </ns3:Associations> <ns3:Associations> <ns3:AssociatedTraveler> <ns3:TravelerReferences>SH1</ns3:TravelerReferences> </ns3:AssociatedTraveler> <ns3:ApplicableFlight> <ns3:OriginDestinationReferences>OD4</ns3:OriginDestinationReferences> <ns3:FlightSegmentReference ref="SEG4"> <ns3:Cabin> <ns3:CabinDesignator>B</ns3:CabinDesignator> <ns3:MarketingName>STANDARD BUSINESS</ns3:MarketingName> </ns3:Cabin> </ns3:FlightSegmentReference> <ns3:FlightSegmentReference ref="SEG4"> <ns3:ClassOfService> <ns3:Code SeatsLeft="4">D</ns3:Code> <ns3:MarketingName>DSTOW</ns3:MarketingName> </ns3:ClassOfService> <ns3:BagDetailAssociation> <ns3:CheckedBagReferences>BG3</ns3:CheckedBagReferences> <ns3:CarryOnReferences>CO2</ns3:CarryOnReferences> </ns3:BagDetailAssociation> </ns3:FlightSegmentReference> </ns3:ApplicableFlight> <ns3:OtherAssociation> <ns3:OtherAssociation> <ns3:Type>DSTOW</ns3:Type> <ns3:ReferenceValue>PL4</ns3:ReferenceValue> </ns3:OtherAssociation> </ns3:OtherAssociation> </ns3:Associations> <ns3:Associations> <ns3:AssociatedTraveler> <ns3:TravelerReferences>SH2</ns3:TravelerReferences> </ns3:AssociatedTraveler> <ns3:ApplicableFlight> <ns3:OriginDestinationReferences>OD4</ns3:OriginDestinationReferences> <ns3:FlightSegmentReference ref="SEG4"> <ns3:Cabin> <ns3:CabinDesignator>B</ns3:CabinDesignator> <ns3:MarketingName>STANDARD BUSINESS</ns3:MarketingName> </ns3:Cabin> </ns3:FlightSegmentReference> <ns3:FlightSegmentReference ref="SEG4"> <ns3:ClassOfService> <ns3:Code SeatsLeft="4">D</ns3:Code> <ns3:MarketingName>DSTOW</ns3:MarketingName> </ns3:ClassOfService> <ns3:BagDetailAssociation> <ns3:CheckedBagReferences>BG3</ns3:CheckedBagReferences> <ns3:CarryOnReferences>CO2</ns3:CarryOnReferences> </ns3:BagDetailAssociation> </ns3:FlightSegmentReference> </ns3:ApplicableFlight> <ns3:OtherAssociation> <ns3:OtherAssociation> <ns3:Type>DSTOW</ns3:Type> <ns3:ReferenceValue>PL4</ns3:ReferenceValue> </ns3:OtherAssociation> </ns3:OtherAssociation> </ns3:Associations> </ns3:RequestedDate> <ns3:FareDetail> <ns3:FareComponent refs="SH1" ObjectKey="FC27"> <ns3:Parameters Quantity="1"/> <ns3:PriceBreakdown> <ns3:Price> <ns3:BaseAmount Code="RUB">19615</ns3:BaseAmount> <ns3:Taxes> <ns3:Total Code="RUB">412</ns3:Total> <ns3:Breakdown> <ns3:Tax> <ns3:Amount Code="RUB">180</ns3:Amount> <ns3:TaxCode>RI</ns3:TaxCode> <ns3:Description>Terminal Use Charge</ns3:Description> </ns3:Tax> <ns3:Tax> <ns3:Amount Code="RUB">232</ns3:Amount> <ns3:TaxCode>RI</ns3:TaxCode> <ns3:Description>Terminal Use Charge</ns3:Description> </ns3:Tax> </ns3:Breakdown> </ns3:Taxes> </ns3:Price> </ns3:PriceBreakdown> </ns3:FareComponent> <ns3:FareComponent refs="SH2" ObjectKey="FC28"> <ns3:Parameters Quantity="1"/> <ns3:PriceBreakdown> <ns3:Price> <ns3:BaseAmount Code="RUB">16675</ns3:BaseAmount> <ns3:Taxes> <ns3:Total Code="RUB">206</ns3:Total> <ns3:Breakdown> <ns3:Tax> <ns3:Amount Code="RUB">90</ns3:Amount> <ns3:TaxCode>RI</ns3:TaxCode> <ns3:Description>Terminal Use Charge</ns3:Description> </ns3:Tax> <ns3:Tax> <ns3:Amount Code="RUB">116</ns3:Amount> <ns3:TaxCode>RI</ns3:TaxCode> <ns3:Description>Terminal Use Charge</ns3:Description> </ns3:Tax> </ns3:Breakdown> </ns3:Taxes> </ns3:Price> </ns3:PriceBreakdown> </ns3:FareComponent> </ns3:FareDetail> </ns3:OfferPrice> </ns3:PricedOffer> </ns3:AirlineOffer> <ns3:AirlineOffer> <ns3:OfferID Owner="S7">OF6</ns3:OfferID> <ns3:TotalPrice> <ns3:DetailCurrencyPrice> <ns3:Total Code="RUB">89699</ns3:Total> <ns3:Details> <ns3:Detail> <ns3:SubTotal Code="RUB">88875</ns3:SubTotal> <ns3:Application>Fare</ns3:Application> </ns3:Detail> </ns3:Details> <ns3:Taxes> <ns3:Total Code="RUB">824</ns3:Total> </ns3:Taxes> </ns3:DetailCurrencyPrice> </ns3:TotalPrice> <ns3:Disclosure> <ns3:Description> <ns3:Text>PLUS BUSINESS</ns3:Text> </ns3:Description> </ns3:Disclosure> <ns3:PricedOffer> <ns3:OfferPrice OfferItemID="OF6SL1"> <ns3:RequestedDate> <ns3:PriceDetail> <ns3:TotalAmount> <ns3:DetailCurrencyPrice> <ns3:Total Code="RUB">89699</ns3:Total> <ns3:Taxes> <ns3:Total Code="RUB">824</ns3:Total> </ns3:Taxes> </ns3:DetailCurrencyPrice> </ns3:TotalAmount> <ns3:BaseAmount Code="RUB">88875</ns3:BaseAmount> </ns3:PriceDetail> <ns3:Associations> <ns3:OtherAssociation> <ns3:OtherAssociation> <ns3:Type>SEG4 DME-LED</ns3:Type> <ns3:ReferenceValue>Meal_H</ns3:ReferenceValue> </ns3:OtherAssociation> </ns3:OtherAssociation> </ns3:Associations> <ns3:Associations> <ns3:AssociatedTraveler> <ns3:TravelerReferences>SH1</ns3:TravelerReferences> </ns3:AssociatedTraveler> <ns3:ApplicableFlight> <ns3:OriginDestinationReferences>OD4</ns3:OriginDestinationReferences> <ns3:FlightSegmentReference ref="SEG4"> <ns3:Cabin> <ns3:CabinDesignator>B</ns3:CabinDesignator> <ns3:MarketingName>PLUS BUSINESS</ns3:MarketingName> </ns3:Cabin> </ns3:FlightSegmentReference> <ns3:FlightSegmentReference ref="SEG4"> <ns3:ClassOfService> <ns3:Code SeatsLeft="4">D</ns3:Code> <ns3:MarketingName>DPLOW</ns3:MarketingName> </ns3:ClassOfService> <ns3:BagDetailAssociation> <ns3:CheckedBagReferences>BG4</ns3:CheckedBagReferences> <ns3:CarryOnReferences>CO2</ns3:CarryOnReferences> </ns3:BagDetailAssociation> </ns3:FlightSegmentReference> </ns3:ApplicableFlight> </ns3:Associations> <ns3:Associations> <ns3:AssociatedTraveler> <ns3:TravelerReferences>SH2</ns3:TravelerReferences> </ns3:AssociatedTraveler> <ns3:ApplicableFlight> <ns3:OriginDestinationReferences>OD4</ns3:OriginDestinationReferences> <ns3:FlightSegmentReference ref="SEG4"> <ns3:Cabin> <ns3:CabinDesignator>B</ns3:CabinDesignator> <ns3:MarketingName>PLUS BUSINESS</ns3:MarketingName> </ns3:Cabin> </ns3:FlightSegmentReference> <ns3:FlightSegmentReference ref="SEG4"> <ns3:ClassOfService> <ns3:Code SeatsLeft="4">D</ns3:Code> <ns3:MarketingName>DPLOW</ns3:MarketingName> </ns3:ClassOfService> <ns3:BagDetailAssociation> <ns3:CheckedBagReferences>BG4</ns3:CheckedBagReferences> <ns3:CarryOnReferences>CO2</ns3:CarryOnReferences> </ns3:BagDetailAssociation> </ns3:FlightSegmentReference> </ns3:ApplicableFlight> </ns3:Associations> </ns3:RequestedDate> <ns3:FareDetail> <ns3:FareComponent refs="SH1" ObjectKey="FC29"> <ns3:Parameters Quantity="1"/> <ns3:PriceBreakdown> <ns3:Price> <ns3:BaseAmount Code="RUB">32915</ns3:BaseAmount> <ns3:Taxes> <ns3:Total Code="RUB">412</ns3:Total> <ns3:Breakdown> <ns3:Tax> <ns3:Amount Code="RUB">180</ns3:Amount> <ns3:TaxCode>RI</ns3:TaxCode> <ns3:Description>Terminal Use Charge</ns3:Description> </ns3:Tax> <ns3:Tax> <ns3:Amount Code="RUB">232</ns3:Amount> <ns3:TaxCode>RI</ns3:TaxCode> <ns3:Description>Terminal Use Charge</ns3:Description> </ns3:Tax> </ns3:Breakdown> </ns3:Taxes> </ns3:Price> </ns3:PriceBreakdown> </ns3:FareComponent> <ns3:FareComponent refs="SH2" ObjectKey="FC30"> <ns3:Parameters Quantity="1"/> <ns3:PriceBreakdown> <ns3:Price> <ns3:BaseAmount Code="RUB">27980</ns3:BaseAmount> <ns3:Taxes> <ns3:Total Code="RUB">206</ns3:Total> <ns3:Breakdown> <ns3:Tax> <ns3:Amount Code="RUB">90</ns3:Amount> <ns3:TaxCode>RI</ns3:TaxCode> <ns3:Description>Terminal Use Charge</ns3:Description> </ns3:Tax> <ns3:Tax> <ns3:Amount Code="RUB">116</ns3:Amount> <ns3:TaxCode>RI</ns3:TaxCode> <ns3:Description>Terminal Use Charge</ns3:Description> </ns3:Tax> </ns3:Breakdown> </ns3:Taxes> </ns3:Price> </ns3:PriceBreakdown> </ns3:FareComponent> </ns3:FareDetail> </ns3:OfferPrice> </ns3:PricedOffer> </ns3:AirlineOffer> </ns3:AirlineOffers> <ns3:AirlineOffers> <ns3:Owner>S7</ns3:Owner> <ns3:AirlineOffer> <ns3:OfferID Owner="S7">OF1</ns3:OfferID> <ns3:TotalPrice> <ns3:DetailCurrencyPrice> <ns3:Total Code="RUB">12624</ns3:Total> <ns3:Details> <ns3:Detail> <ns3:SubTotal Code="RUB">11800</ns3:SubTotal> <ns3:Application>Fare</ns3:Application> </ns3:Detail> </ns3:Details> <ns3:Taxes> <ns3:Total Code="RUB">824</ns3:Total> </ns3:Taxes> </ns3:DetailCurrencyPrice> </ns3:TotalPrice> <ns3:Disclosure> <ns3:Description> <ns3:Text>BASIC ECONOMY</ns3:Text> </ns3:Description> </ns3:Disclosure> <ns3:PricedOffer> <ns3:OfferPrice OfferItemID="OF1SL1"> <ns3:RequestedDate> <ns3:PriceDetail> <ns3:TotalAmount> <ns3:DetailCurrencyPrice> <ns3:Total Code="RUB">12624</ns3:Total> <ns3:Taxes> <ns3:Total Code="RUB">824</ns3:Total> </ns3:Taxes> </ns3:DetailCurrencyPrice> </ns3:TotalAmount> <ns3:BaseAmount Code="RUB">11800</ns3:BaseAmount> </ns3:PriceDetail> <ns3:Associations> <ns3:OtherAssociation> <ns3:OtherAssociation> <ns3:Type>SEG5 DME-LED</ns3:Type> <ns3:ReferenceValue>Meal_O</ns3:ReferenceValue> </ns3:OtherAssociation> </ns3:OtherAssociation> </ns3:Associations> <ns3:Associations> <ns3:AssociatedTraveler> <ns3:TravelerReferences>SH1</ns3:TravelerReferences> </ns3:AssociatedTraveler> <ns3:ApplicableFlight> <ns3:OriginDestinationReferences>OD5</ns3:OriginDestinationReferences> <ns3:FlightSegmentReference ref="SEG5"> <ns3:Cabin> <ns3:CabinDesignator>Y</ns3:CabinDesignator> <ns3:MarketingName>BASIC ECONOMY</ns3:MarketingName> </ns3:Cabin> </ns3:FlightSegmentReference> <ns3:FlightSegmentReference ref="SEG5"> <ns3:ClassOfService> <ns3:Code SeatsLeft="9">N</ns3:Code> <ns3:MarketingName>NBSOW</ns3:MarketingName> </ns3:ClassOfService> <ns3:BagDetailAssociation> <ns3:CheckedBagReferences>BG1</ns3:CheckedBagReferences> <ns3:CarryOnReferences>CO1</ns3:CarryOnReferences> </ns3:BagDetailAssociation> </ns3:FlightSegmentReference> </ns3:ApplicableFlight> <ns3:OtherAssociation> <ns3:OtherAssociation> <ns3:Type>NBSOW</ns3:Type> <ns3:ReferenceValue>PL1</ns3:ReferenceValue> </ns3:OtherAssociation> </ns3:OtherAssociation> </ns3:Associations> <ns3:Associations> <ns3:AssociatedTraveler> <ns3:TravelerReferences>SH2</ns3:TravelerReferences> </ns3:AssociatedTraveler> <ns3:ApplicableFlight> <ns3:OriginDestinationReferences>OD5</ns3:OriginDestinationReferences> <ns3:FlightSegmentReference ref="SEG5"> <ns3:Cabin> <ns3:CabinDesignator>Y</ns3:CabinDesignator> <ns3:MarketingName>BASIC ECONOMY</ns3:MarketingName> </ns3:Cabin> </ns3:FlightSegmentReference> <ns3:FlightSegmentReference ref="SEG5"> <ns3:ClassOfService> <ns3:Code SeatsLeft="9">N</ns3:Code> <ns3:MarketingName>NBSOW</ns3:MarketingName> </ns3:ClassOfService> <ns3:BagDetailAssociation> <ns3:CheckedBagReferences>BG1</ns3:CheckedBagReferences> <ns3:CarryOnReferences>CO1</ns3:CarryOnReferences> </ns3:BagDetailAssociation> </ns3:FlightSegmentReference> </ns3:ApplicableFlight> <ns3:OtherAssociation> <ns3:OtherAssociation> <ns3:Type>NBSOW</ns3:Type> <ns3:ReferenceValue>PL1</ns3:ReferenceValue> </ns3:OtherAssociation> </ns3:OtherAssociation> </ns3:Associations> </ns3:RequestedDate> <ns3:FareDetail> <ns3:FareComponent refs="SH1" ObjectKey="FC31"> <ns3:Parameters Quantity="1"/> <ns3:PriceBreakdown> <ns3:Price> <ns3:BaseAmount Code="RUB">4370</ns3:BaseAmount> <ns3:Taxes> <ns3:Total Code="RUB">412</ns3:Total> <ns3:Breakdown> <ns3:Tax> <ns3:Amount Code="RUB">180</ns3:Amount> <ns3:TaxCode>RI</ns3:TaxCode> <ns3:Description>Terminal Use Charge</ns3:Description> </ns3:Tax> <ns3:Tax> <ns3:Amount Code="RUB">232</ns3:Amount> <ns3:TaxCode>RI</ns3:TaxCode> <ns3:Description>Terminal Use Charge</ns3:Description> </ns3:Tax> </ns3:Breakdown> </ns3:Taxes> </ns3:Price> </ns3:PriceBreakdown> </ns3:FareComponent> <ns3:FareComponent refs="SH2" ObjectKey="FC32"> <ns3:Parameters Quantity="1"/> <ns3:PriceBreakdown> <ns3:Price> <ns3:BaseAmount Code="RUB">3715</ns3:BaseAmount> <ns3:Taxes> <ns3:Total Code="RUB">206</ns3:Total> <ns3:Breakdown> <ns3:Tax> <ns3:Amount Code="RUB">90</ns3:Amount> <ns3:TaxCode>RI</ns3:TaxCode> <ns3:Description>Terminal Use Charge</ns3:Description> </ns3:Tax> <ns3:Tax> <ns3:Amount Code="RUB">116</ns3:Amount> <ns3:TaxCode>RI</ns3:TaxCode> <ns3:Description>Terminal Use Charge</ns3:Description> </ns3:Tax> </ns3:Breakdown> </ns3:Taxes> </ns3:Price> </ns3:PriceBreakdown> </ns3:FareComponent> </ns3:FareDetail> </ns3:OfferPrice> </ns3:PricedOffer> </ns3:AirlineOffer> <ns3:AirlineOffer> <ns3:OfferID Owner="S7">OF2</ns3:OfferID> <ns3:TotalPrice> <ns3:DetailCurrencyPrice> <ns3:Total Code="RUB">18294</ns3:Total> <ns3:Details> <ns3:Detail> <ns3:SubTotal Code="RUB">17470</ns3:SubTotal> <ns3:Application>Fare</ns3:Application> </ns3:Detail> </ns3:Details> <ns3:Taxes> <ns3:Total Code="RUB">824</ns3:Total> </ns3:Taxes> </ns3:DetailCurrencyPrice> </ns3:TotalPrice> <ns3:Disclosure> <ns3:Description> <ns3:Text>STANDARD ECONOMY</ns3:Text> </ns3:Description> </ns3:Disclosure> <ns3:PricedOffer> <ns3:OfferPrice OfferItemID="OF2SL1"> <ns3:RequestedDate> <ns3:PriceDetail> <ns3:TotalAmount> <ns3:DetailCurrencyPrice> <ns3:Total Code="RUB">18294</ns3:Total> <ns3:Taxes> <ns3:Total Code="RUB">824</ns3:Total> </ns3:Taxes> </ns3:DetailCurrencyPrice> </ns3:TotalAmount> <ns3:BaseAmount Code="RUB">17470</ns3:BaseAmount> </ns3:PriceDetail> <ns3:Associations> <ns3:OtherAssociation> <ns3:OtherAssociation> <ns3:Type>SEG5 DME-LED</ns3:Type> <ns3:ReferenceValue>Meal_O</ns3:ReferenceValue> </ns3:OtherAssociation> </ns3:OtherAssociation> </ns3:Associations> <ns3:Associations> <ns3:AssociatedTraveler> <ns3:TravelerReferences>SH1</ns3:TravelerReferences> </ns3:AssociatedTraveler> <ns3:ApplicableFlight> <ns3:OriginDestinationReferences>OD5</ns3:OriginDestinationReferences> <ns3:FlightSegmentReference ref="SEG5"> <ns3:Cabin> <ns3:CabinDesignator>Y</ns3:CabinDesignator> <ns3:MarketingName>STANDARD ECONOMY</ns3:MarketingName> </ns3:Cabin> </ns3:FlightSegmentReference> <ns3:FlightSegmentReference ref="SEG5"> <ns3:ClassOfService> <ns3:Code SeatsLeft="9">N</ns3:Code> <ns3:MarketingName>NSTOW</ns3:MarketingName> </ns3:ClassOfService> <ns3:BagDetailAssociation> <ns3:CheckedBagReferences>BG2</ns3:CheckedBagReferences> <ns3:CarryOnReferences>CO1</ns3:CarryOnReferences> </ns3:BagDetailAssociation> </ns3:FlightSegmentReference> </ns3:ApplicableFlight> <ns3:OtherAssociation> <ns3:OtherAssociation> <ns3:Type>NSTOW</ns3:Type> <ns3:ReferenceValue>PL2</ns3:ReferenceValue> </ns3:OtherAssociation> </ns3:OtherAssociation> </ns3:Associations> <ns3:Associations> <ns3:AssociatedTraveler> <ns3:TravelerReferences>SH2</ns3:TravelerReferences> </ns3:AssociatedTraveler> <ns3:ApplicableFlight> <ns3:OriginDestinationReferences>OD5</ns3:OriginDestinationReferences> <ns3:FlightSegmentReference ref="SEG5"> <ns3:Cabin> <ns3:CabinDesignator>Y</ns3:CabinDesignator> <ns3:MarketingName>STANDARD ECONOMY</ns3:MarketingName> </ns3:Cabin> </ns3:FlightSegmentReference> <ns3:FlightSegmentReference ref="SEG5"> <ns3:ClassOfService> <ns3:Code SeatsLeft="9">N</ns3:Code> <ns3:MarketingName>NSTOW</ns3:MarketingName> </ns3:ClassOfService> <ns3:BagDetailAssociation> <ns3:CheckedBagReferences>BG2</ns3:CheckedBagReferences> <ns3:CarryOnReferences>CO1</ns3:CarryOnReferences> </ns3:BagDetailAssociation> </ns3:FlightSegmentReference> </ns3:ApplicableFlight> <ns3:OtherAssociation> <ns3:OtherAssociation> <ns3:Type>NSTOW</ns3:Type> <ns3:ReferenceValue>PL2</ns3:ReferenceValue> </ns3:OtherAssociation> </ns3:OtherAssociation> </ns3:Associations> </ns3:RequestedDate> <ns3:FareDetail> <ns3:FareComponent refs="SH1" ObjectKey="FC33"> <ns3:Parameters Quantity="1"/> <ns3:PriceBreakdown> <ns3:Price> <ns3:BaseAmount Code="RUB">6470</ns3:BaseAmount> <ns3:Taxes> <ns3:Total Code="RUB">412</ns3:Total> <ns3:Breakdown> <ns3:Tax> <ns3:Amount Code="RUB">180</ns3:Amount> <ns3:TaxCode>RI</ns3:TaxCode> <ns3:Description>Terminal Use Charge</ns3:Description> </ns3:Tax> <ns3:Tax> <ns3:Amount Code="RUB">232</ns3:Amount> <ns3:TaxCode>RI</ns3:TaxCode> <ns3:Description>Terminal Use Charge</ns3:Description> </ns3:Tax> </ns3:Breakdown> </ns3:Taxes> </ns3:Price> </ns3:PriceBreakdown> </ns3:FareComponent> <ns3:FareComponent refs="SH2" ObjectKey="FC34"> <ns3:Parameters Quantity="1"/> <ns3:PriceBreakdown> <ns3:Price> <ns3:BaseAmount Code="RUB">5500</ns3:BaseAmount> <ns3:Taxes> <ns3:Total Code="RUB">206</ns3:Total> <ns3:Breakdown> <ns3:Tax> <ns3:Amount Code="RUB">90</ns3:Amount> <ns3:TaxCode>RI</ns3:TaxCode> <ns3:Description>Terminal Use Charge</ns3:Description> </ns3:Tax> <ns3:Tax> <ns3:Amount Code="RUB">116</ns3:Amount> <ns3:TaxCode>RI</ns3:TaxCode> <ns3:Description>Terminal Use Charge</ns3:Description> </ns3:Tax> </ns3:Breakdown> </ns3:Taxes> </ns3:Price> </ns3:PriceBreakdown> </ns3:FareComponent> </ns3:FareDetail> </ns3:OfferPrice> </ns3:PricedOffer> </ns3:AirlineOffer> <ns3:AirlineOffer> <ns3:OfferID Owner="S7">OF3</ns3:OfferID> <ns3:TotalPrice> <ns3:DetailCurrencyPrice> <ns3:Total Code="RUB">35984</ns3:Total> <ns3:Details> <ns3:Detail> <ns3:SubTotal Code="RUB">35160</ns3:SubTotal> <ns3:Application>Fare</ns3:Application> </ns3:Detail> </ns3:Details> <ns3:Taxes> <ns3:Total Code="RUB">824</ns3:Total> </ns3:Taxes> </ns3:DetailCurrencyPrice> </ns3:TotalPrice> <ns3:Disclosure> <ns3:Description> <ns3:Text>PLUS ECONOMY</ns3:Text> </ns3:Description> </ns3:Disclosure> <ns3:PricedOffer> <ns3:OfferPrice OfferItemID="OF3SL1"> <ns3:RequestedDate> <ns3:PriceDetail> <ns3:TotalAmount> <ns3:DetailCurrencyPrice> <ns3:Total Code="RUB">35984</ns3:Total> <ns3:Taxes> <ns3:Total Code="RUB">824</ns3:Total> </ns3:Taxes> </ns3:DetailCurrencyPrice> </ns3:TotalAmount> <ns3:BaseAmount Code="RUB">35160</ns3:BaseAmount> </ns3:PriceDetail> <ns3:Associations> <ns3:OtherAssociation> <ns3:OtherAssociation> <ns3:Type>SEG5 DME-LED</ns3:Type> <ns3:ReferenceValue>Meal_O</ns3:ReferenceValue> </ns3:OtherAssociation> </ns3:OtherAssociation> </ns3:Associations> <ns3:Associations> <ns3:AssociatedTraveler> <ns3:TravelerReferences>SH1</ns3:TravelerReferences> </ns3:AssociatedTraveler> <ns3:ApplicableFlight> <ns3:OriginDestinationReferences>OD5</ns3:OriginDestinationReferences> <ns3:FlightSegmentReference ref="SEG5"> <ns3:Cabin> <ns3:CabinDesignator>Y</ns3:CabinDesignator> <ns3:MarketingName>PLUS ECONOMY</ns3:MarketingName> </ns3:Cabin> </ns3:FlightSegmentReference> <ns3:FlightSegmentReference ref="SEG5"> <ns3:ClassOfService> <ns3:Code SeatsLeft="9">N</ns3:Code> <ns3:MarketingName>NPLOW</ns3:MarketingName> </ns3:ClassOfService> <ns3:BagDetailAssociation> <ns3:CheckedBagReferences>BG3</ns3:CheckedBagReferences> <ns3:CarryOnReferences>CO1</ns3:CarryOnReferences> </ns3:BagDetailAssociation> </ns3:FlightSegmentReference> </ns3:ApplicableFlight> </ns3:Associations> <ns3:Associations> <ns3:AssociatedTraveler> <ns3:TravelerReferences>SH2</ns3:TravelerReferences> </ns3:AssociatedTraveler> <ns3:ApplicableFlight> <ns3:OriginDestinationReferences>OD5</ns3:OriginDestinationReferences> <ns3:FlightSegmentReference ref="SEG5"> <ns3:Cabin> <ns3:CabinDesignator>Y</ns3:CabinDesignator> <ns3:MarketingName>PLUS ECONOMY</ns3:MarketingName> </ns3:Cabin> </ns3:FlightSegmentReference> <ns3:FlightSegmentReference ref="SEG5"> <ns3:ClassOfService> <ns3:Code SeatsLeft="9">N</ns3:Code> <ns3:MarketingName>NPLOW</ns3:MarketingName> </ns3:ClassOfService> <ns3:BagDetailAssociation> <ns3:CheckedBagReferences>BG3</ns3:CheckedBagReferences> <ns3:CarryOnReferences>CO1</ns3:CarryOnReferences> </ns3:BagDetailAssociation> </ns3:FlightSegmentReference> </ns3:ApplicableFlight> </ns3:Associations> </ns3:RequestedDate> <ns3:FareDetail> <ns3:FareComponent refs="SH1" ObjectKey="FC35"> <ns3:Parameters Quantity="1"/> <ns3:PriceBreakdown> <ns3:Price> <ns3:BaseAmount Code="RUB">13020</ns3:BaseAmount> <ns3:Taxes> <ns3:Total Code="RUB">412</ns3:Total> <ns3:Breakdown> <ns3:Tax> <ns3:Amount Code="RUB">180</ns3:Amount> <ns3:TaxCode>RI</ns3:TaxCode> <ns3:Description>Terminal Use Charge</ns3:Description> </ns3:Tax> <ns3:Tax> <ns3:Amount Code="RUB">232</ns3:Amount> <ns3:TaxCode>RI</ns3:TaxCode> <ns3:Description>Terminal Use Charge</ns3:Description> </ns3:Tax> </ns3:Breakdown> </ns3:Taxes> </ns3:Price> </ns3:PriceBreakdown> </ns3:FareComponent> <ns3:FareComponent refs="SH2" ObjectKey="FC36"> <ns3:Parameters Quantity="1"/> <ns3:PriceBreakdown> <ns3:Price> <ns3:BaseAmount Code="RUB">11070</ns3:BaseAmount> <ns3:Taxes> <ns3:Total Code="RUB">206</ns3:Total> <ns3:Breakdown> <ns3:Tax> <ns3:Amount Code="RUB">90</ns3:Amount> <ns3:TaxCode>RI</ns3:TaxCode> <ns3:Description>Terminal Use Charge</ns3:Description> </ns3:Tax> <ns3:Tax> <ns3:Amount Code="RUB">116</ns3:Amount> <ns3:TaxCode>RI</ns3:TaxCode> <ns3:Description>Terminal Use Charge</ns3:Description> </ns3:Tax> </ns3:Breakdown> </ns3:Taxes> </ns3:Price> </ns3:PriceBreakdown> </ns3:FareComponent> </ns3:FareDetail> </ns3:OfferPrice> </ns3:PricedOffer> </ns3:AirlineOffer> <ns3:AirlineOffer> <ns3:OfferID Owner="S7">OF4</ns3:OfferID> <ns3:TotalPrice> <ns3:DetailCurrencyPrice> <ns3:Total Code="RUB">36779</ns3:Total> <ns3:Details> <ns3:Detail> <ns3:SubTotal Code="RUB">35955</ns3:SubTotal> <ns3:Application>Fare</ns3:Application> </ns3:Detail> </ns3:Details> <ns3:Taxes> <ns3:Total Code="RUB">824</ns3:Total> </ns3:Taxes> </ns3:DetailCurrencyPrice> </ns3:TotalPrice> <ns3:Disclosure> <ns3:Description> <ns3:Text>BASIC BUSINESS</ns3:Text> </ns3:Description> </ns3:Disclosure> <ns3:PricedOffer> <ns3:OfferPrice OfferItemID="OF4SL1"> <ns3:RequestedDate> <ns3:PriceDetail> <ns3:TotalAmount> <ns3:DetailCurrencyPrice> <ns3:Total Code="RUB">36779</ns3:Total> <ns3:Taxes> <ns3:Total Code="RUB">824</ns3:Total> </ns3:Taxes> </ns3:DetailCurrencyPrice> </ns3:TotalAmount> <ns3:BaseAmount Code="RUB">35955</ns3:BaseAmount> </ns3:PriceDetail> <ns3:Associations> <ns3:OtherAssociation> <ns3:OtherAssociation> <ns3:Type>SEG5 DME-LED</ns3:Type> <ns3:ReferenceValue>Meal_H</ns3:ReferenceValue> </ns3:OtherAssociation> </ns3:OtherAssociation> </ns3:Associations> <ns3:Associations> <ns3:AssociatedTraveler> <ns3:TravelerReferences>SH1</ns3:TravelerReferences> </ns3:AssociatedTraveler> <ns3:ApplicableFlight> <ns3:OriginDestinationReferences>OD5</ns3:OriginDestinationReferences> <ns3:FlightSegmentReference ref="SEG5"> <ns3:Cabin> <ns3:CabinDesignator>B</ns3:CabinDesignator> <ns3:MarketingName>BASIC BUSINESS</ns3:MarketingName> </ns3:Cabin> </ns3:FlightSegmentReference> <ns3:FlightSegmentReference ref="SEG5"> <ns3:ClassOfService> <ns3:Code SeatsLeft="4">D</ns3:Code> <ns3:MarketingName>DBSOW</ns3:MarketingName> </ns3:ClassOfService> <ns3:BagDetailAssociation> <ns3:CheckedBagReferences>BG3</ns3:CheckedBagReferences> <ns3:CarryOnReferences>CO2</ns3:CarryOnReferences> </ns3:BagDetailAssociation> </ns3:FlightSegmentReference> </ns3:ApplicableFlight> <ns3:OtherAssociation> <ns3:OtherAssociation> <ns3:Type>DBSOW</ns3:Type> <ns3:ReferenceValue>PL3</ns3:ReferenceValue> </ns3:OtherAssociation> </ns3:OtherAssociation> </ns3:Associations> <ns3:Associations> <ns3:AssociatedTraveler> <ns3:TravelerReferences>SH2</ns3:TravelerReferences> </ns3:AssociatedTraveler> <ns3:ApplicableFlight> <ns3:OriginDestinationReferences>OD5</ns3:OriginDestinationReferences> <ns3:FlightSegmentReference ref="SEG5"> <ns3:Cabin> <ns3:CabinDesignator>B</ns3:CabinDesignator> <ns3:MarketingName>BASIC BUSINESS</ns3:MarketingName> </ns3:Cabin> </ns3:FlightSegmentReference> <ns3:FlightSegmentReference ref="SEG5"> <ns3:ClassOfService> <ns3:Code SeatsLeft="4">D</ns3:Code> <ns3:MarketingName>DBSOW</ns3:MarketingName> </ns3:ClassOfService> <ns3:BagDetailAssociation> <ns3:CheckedBagReferences>BG3</ns3:CheckedBagReferences> <ns3:CarryOnReferences>CO2</ns3:CarryOnReferences> </ns3:BagDetailAssociation> </ns3:FlightSegmentReference> </ns3:ApplicableFlight> <ns3:OtherAssociation> <ns3:OtherAssociation> <ns3:Type>DBSOW</ns3:Type> <ns3:ReferenceValue>PL3</ns3:ReferenceValue> </ns3:OtherAssociation> </ns3:OtherAssociation> </ns3:Associations> </ns3:RequestedDate> <ns3:FareDetail> <ns3:FareComponent refs="SH1" ObjectKey="FC37"> <ns3:Parameters Quantity="1"/> <ns3:PriceBreakdown> <ns3:Price> <ns3:BaseAmount Code="RUB">13315</ns3:BaseAmount> <ns3:Taxes> <ns3:Total Code="RUB">412</ns3:Total> <ns3:Breakdown> <ns3:Tax> <ns3:Amount Code="RUB">180</ns3:Amount> <ns3:TaxCode>RI</ns3:TaxCode> <ns3:Description>Terminal Use Charge</ns3:Description> </ns3:Tax> <ns3:Tax> <ns3:Amount Code="RUB">232</ns3:Amount> <ns3:TaxCode>RI</ns3:TaxCode> <ns3:Description>Terminal Use Charge</ns3:Description> </ns3:Tax> </ns3:Breakdown> </ns3:Taxes> </ns3:Price> </ns3:PriceBreakdown> </ns3:FareComponent> <ns3:FareComponent refs="SH2" ObjectKey="FC38"> <ns3:Parameters Quantity="1"/> <ns3:PriceBreakdown> <ns3:Price> <ns3:BaseAmount Code="RUB">11320</ns3:BaseAmount> <ns3:Taxes> <ns3:Total Code="RUB">206</ns3:Total> <ns3:Breakdown> <ns3:Tax> <ns3:Amount Code="RUB">90</ns3:Amount> <ns3:TaxCode>RI</ns3:TaxCode> <ns3:Description>Terminal Use Charge</ns3:Description> </ns3:Tax> <ns3:Tax> <ns3:Amount Code="RUB">116</ns3:Amount> <ns3:TaxCode>RI</ns3:TaxCode> <ns3:Description>Terminal Use Charge</ns3:Description> </ns3:Tax> </ns3:Breakdown> </ns3:Taxes> </ns3:Price> </ns3:PriceBreakdown> </ns3:FareComponent> </ns3:FareDetail> </ns3:OfferPrice> </ns3:PricedOffer> </ns3:AirlineOffer> <ns3:AirlineOffer> <ns3:OfferID Owner="S7">OF5</ns3:OfferID> <ns3:TotalPrice> <ns3:DetailCurrencyPrice> <ns3:Total Code="RUB">53789</ns3:Total> <ns3:Details> <ns3:Detail> <ns3:SubTotal Code="RUB">52965</ns3:SubTotal> <ns3:Application>Fare</ns3:Application> </ns3:Detail> </ns3:Details> <ns3:Taxes> <ns3:Total Code="RUB">824</ns3:Total> </ns3:Taxes> </ns3:DetailCurrencyPrice> </ns3:TotalPrice> <ns3:Disclosure> <ns3:Description> <ns3:Text>STANDARD BUSINESS</ns3:Text> </ns3:Description> </ns3:Disclosure> <ns3:PricedOffer> <ns3:OfferPrice OfferItemID="OF5SL1"> <ns3:RequestedDate> <ns3:PriceDetail> <ns3:TotalAmount> <ns3:DetailCurrencyPrice> <ns3:Total Code="RUB">53789</ns3:Total> <ns3:Taxes> <ns3:Total Code="RUB">824</ns3:Total> </ns3:Taxes> </ns3:DetailCurrencyPrice> </ns3:TotalAmount> <ns3:BaseAmount Code="RUB">52965</ns3:BaseAmount> </ns3:PriceDetail> <ns3:Associations> <ns3:OtherAssociation> <ns3:OtherAssociation> <ns3:Type>SEG5 DME-LED</ns3:Type> <ns3:ReferenceValue>Meal_H</ns3:ReferenceValue> </ns3:OtherAssociation> </ns3:OtherAssociation> </ns3:Associations> <ns3:Associations> <ns3:AssociatedTraveler> <ns3:TravelerReferences>SH1</ns3:TravelerReferences> </ns3:AssociatedTraveler> <ns3:ApplicableFlight> <ns3:OriginDestinationReferences>OD5</ns3:OriginDestinationReferences> <ns3:FlightSegmentReference ref="SEG5"> <ns3:Cabin> <ns3:CabinDesignator>B</ns3:CabinDesignator> <ns3:MarketingName>STANDARD BUSINESS</ns3:MarketingName> </ns3:Cabin> </ns3:FlightSegmentReference> <ns3:FlightSegmentReference ref="SEG5"> <ns3:ClassOfService> <ns3:Code SeatsLeft="4">D</ns3:Code> <ns3:MarketingName>DSTOW</ns3:MarketingName> </ns3:ClassOfService> <ns3:BagDetailAssociation> <ns3:CheckedBagReferences>BG3</ns3:CheckedBagReferences> <ns3:CarryOnReferences>CO2</ns3:CarryOnReferences> </ns3:BagDetailAssociation> </ns3:FlightSegmentReference> </ns3:ApplicableFlight> <ns3:OtherAssociation> <ns3:OtherAssociation> <ns3:Type>DSTOW</ns3:Type> <ns3:ReferenceValue>PL4</ns3:ReferenceValue> </ns3:OtherAssociation> </ns3:OtherAssociation> </ns3:Associations> <ns3:Associations> <ns3:AssociatedTraveler> <ns3:TravelerReferences>SH2</ns3:TravelerReferences> </ns3:AssociatedTraveler> <ns3:ApplicableFlight> <ns3:OriginDestinationReferences>OD5</ns3:OriginDestinationReferences> <ns3:FlightSegmentReference ref="SEG5"> <ns3:Cabin> <ns3:CabinDesignator>B</ns3:CabinDesignator> <ns3:MarketingName>STANDARD BUSINESS</ns3:MarketingName> </ns3:Cabin> </ns3:FlightSegmentReference> <ns3:FlightSegmentReference ref="SEG5"> <ns3:ClassOfService> <ns3:Code SeatsLeft="4">D</ns3:Code> <ns3:MarketingName>DSTOW</ns3:MarketingName> </ns3:ClassOfService> <ns3:BagDetailAssociation> <ns3:CheckedBagReferences>BG3</ns3:CheckedBagReferences> <ns3:CarryOnReferences>CO2</ns3:CarryOnReferences> </ns3:BagDetailAssociation> </ns3:FlightSegmentReference> </ns3:ApplicableFlight> <ns3:OtherAssociation> <ns3:OtherAssociation> <ns3:Type>DSTOW</ns3:Type> <ns3:ReferenceValue>PL4</ns3:ReferenceValue> </ns3:OtherAssociation> </ns3:OtherAssociation> </ns3:Associations> </ns3:RequestedDate> <ns3:FareDetail> <ns3:FareComponent refs="SH1" ObjectKey="FC39"> <ns3:Parameters Quantity="1"/> <ns3:PriceBreakdown> <ns3:Price> <ns3:BaseAmount Code="RUB">19615</ns3:BaseAmount> <ns3:Taxes> <ns3:Total Code="RUB">412</ns3:Total> <ns3:Breakdown> <ns3:Tax> <ns3:Amount Code="RUB">180</ns3:Amount> <ns3:TaxCode>RI</ns3:TaxCode> <ns3:Description>Terminal Use Charge</ns3:Description> </ns3:Tax> <ns3:Tax> <ns3:Amount Code="RUB">232</ns3:Amount> <ns3:TaxCode>RI</ns3:TaxCode> <ns3:Description>Terminal Use Charge</ns3:Description> </ns3:Tax> </ns3:Breakdown> </ns3:Taxes> </ns3:Price> </ns3:PriceBreakdown> </ns3:FareComponent> <ns3:FareComponent refs="SH2" ObjectKey="FC40"> <ns3:Parameters Quantity="1"/> <ns3:PriceBreakdown> <ns3:Price> <ns3:BaseAmount Code="RUB">16675</ns3:BaseAmount> <ns3:Taxes> <ns3:Total Code="RUB">206</ns3:Total> <ns3:Breakdown> <ns3:Tax> <ns3:Amount Code="RUB">90</ns3:Amount> <ns3:TaxCode>RI</ns3:TaxCode> <ns3:Description>Terminal Use Charge</ns3:Description> </ns3:Tax> <ns3:Tax> <ns3:Amount Code="RUB">116</ns3:Amount> <ns3:TaxCode>RI</ns3:TaxCode> <ns3:Description>Terminal Use Charge</ns3:Description> </ns3:Tax> </ns3:Breakdown> </ns3:Taxes> </ns3:Price> </ns3:PriceBreakdown> </ns3:FareComponent> </ns3:FareDetail> </ns3:OfferPrice> </ns3:PricedOffer> </ns3:AirlineOffer> <ns3:AirlineOffer> <ns3:OfferID Owner="S7">OF6</ns3:OfferID> <ns3:TotalPrice> <ns3:DetailCurrencyPrice> <ns3:Total Code="RUB">89699</ns3:Total> <ns3:Details> <ns3:Detail> <ns3:SubTotal Code="RUB">88875</ns3:SubTotal> <ns3:Application>Fare</ns3:Application> </ns3:Detail> </ns3:Details> <ns3:Taxes> <ns3:Total Code="RUB">824</ns3:Total> </ns3:Taxes> </ns3:DetailCurrencyPrice> </ns3:TotalPrice> <ns3:Disclosure> <ns3:Description> <ns3:Text>PLUS BUSINESS</ns3:Text> </ns3:Description> </ns3:Disclosure> <ns3:PricedOffer> <ns3:OfferPrice OfferItemID="OF6SL1"> <ns3:RequestedDate> <ns3:PriceDetail> <ns3:TotalAmount> <ns3:DetailCurrencyPrice> <ns3:Total Code="RUB">89699</ns3:Total> <ns3:Taxes> <ns3:Total Code="RUB">824</ns3:Total> </ns3:Taxes> </ns3:DetailCurrencyPrice> </ns3:TotalAmount> <ns3:BaseAmount Code="RUB">88875</ns3:BaseAmount> </ns3:PriceDetail> <ns3:Associations> <ns3:OtherAssociation> <ns3:OtherAssociation> <ns3:Type>SEG5 DME-LED</ns3:Type> <ns3:ReferenceValue>Meal_H</ns3:ReferenceValue> </ns3:OtherAssociation> </ns3:OtherAssociation> </ns3:Associations> <ns3:Associations> <ns3:AssociatedTraveler> <ns3:TravelerReferences>SH1</ns3:TravelerReferences> </ns3:AssociatedTraveler> <ns3:ApplicableFlight> <ns3:OriginDestinationReferences>OD5</ns3:OriginDestinationReferences> <ns3:FlightSegmentReference ref="SEG5"> <ns3:Cabin> <ns3:CabinDesignator>B</ns3:CabinDesignator> <ns3:MarketingName>PLUS BUSINESS</ns3:MarketingName> </ns3:Cabin> </ns3:FlightSegmentReference> <ns3:FlightSegmentReference ref="SEG5"> <ns3:ClassOfService> <ns3:Code SeatsLeft="4">D</ns3:Code> <ns3:MarketingName>DPLOW</ns3:MarketingName> </ns3:ClassOfService> <ns3:BagDetailAssociation> <ns3:CheckedBagReferences>BG4</ns3:CheckedBagReferences> <ns3:CarryOnReferences>CO2</ns3:CarryOnReferences> </ns3:BagDetailAssociation> </ns3:FlightSegmentReference> </ns3:ApplicableFlight> </ns3:Associations> <ns3:Associations> <ns3:AssociatedTraveler> <ns3:TravelerReferences>SH2</ns3:TravelerReferences> </ns3:AssociatedTraveler> <ns3:ApplicableFlight> <ns3:OriginDestinationReferences>OD5</ns3:OriginDestinationReferences> <ns3:FlightSegmentReference ref="SEG5"> <ns3:Cabin> <ns3:CabinDesignator>B</ns3:CabinDesignator> <ns3:MarketingName>PLUS BUSINESS</ns3:MarketingName> </ns3:Cabin> </ns3:FlightSegmentReference> <ns3:FlightSegmentReference ref="SEG5"> <ns3:ClassOfService> <ns3:Code SeatsLeft="4">D</ns3:Code> <ns3:MarketingName>DPLOW</ns3:MarketingName> </ns3:ClassOfService> <ns3:BagDetailAssociation> <ns3:CheckedBagReferences>BG4</ns3:CheckedBagReferences> <ns3:CarryOnReferences>CO2</ns3:CarryOnReferences> </ns3:BagDetailAssociation> </ns3:FlightSegmentReference> </ns3:ApplicableFlight> </ns3:Associations> </ns3:RequestedDate> <ns3:FareDetail> <ns3:FareComponent refs="SH1" ObjectKey="FC41"> <ns3:Parameters Quantity="1"/> <ns3:PriceBreakdown> <ns3:Price> <ns3:BaseAmount Code="RUB">32915</ns3:BaseAmount> <ns3:Taxes> <ns3:Total Code="RUB">412</ns3:Total> <ns3:Breakdown> <ns3:Tax> <ns3:Amount Code="RUB">180</ns3:Amount> <ns3:TaxCode>RI</ns3:TaxCode> <ns3:Description>Terminal Use Charge</ns3:Description> </ns3:Tax> <ns3:Tax> <ns3:Amount Code="RUB">232</ns3:Amount> <ns3:TaxCode>RI</ns3:TaxCode> <ns3:Description>Terminal Use Charge</ns3:Description> </ns3:Tax> </ns3:Breakdown> </ns3:Taxes> </ns3:Price> </ns3:PriceBreakdown> </ns3:FareComponent> <ns3:FareComponent refs="SH2" ObjectKey="FC42"> <ns3:Parameters Quantity="1"/> <ns3:PriceBreakdown> <ns3:Price> <ns3:BaseAmount Code="RUB">27980</ns3:BaseAmount> <ns3:Taxes> <ns3:Total Code="RUB">206</ns3:Total> <ns3:Breakdown> <ns3:Tax> <ns3:Amount Code="RUB">90</ns3:Amount> <ns3:TaxCode>RI</ns3:TaxCode> <ns3:Description>Terminal Use Charge</ns3:Description> </ns3:Tax> <ns3:Tax> <ns3:Amount Code="RUB">116</ns3:Amount> <ns3:TaxCode>RI</ns3:TaxCode> <ns3:Description>Terminal Use Charge</ns3:Description> </ns3:Tax> </ns3:Breakdown> </ns3:Taxes> </ns3:Price> </ns3:PriceBreakdown> </ns3:FareComponent> </ns3:FareDetail> </ns3:OfferPrice> </ns3:PricedOffer> </ns3:AirlineOffer> </ns3:AirlineOffers> <ns3:AirlineOffers> <ns3:Owner>S7</ns3:Owner> <ns3:AirlineOffer> <ns3:OfferID Owner="S7">OF1</ns3:OfferID> <ns3:TotalPrice> <ns3:DetailCurrencyPrice> <ns3:Total Code="RUB">12624</ns3:Total> <ns3:Details> <ns3:Detail> <ns3:SubTotal Code="RUB">11800</ns3:SubTotal> <ns3:Application>Fare</ns3:Application> </ns3:Detail> </ns3:Details> <ns3:Taxes> <ns3:Total Code="RUB">824</ns3:Total> </ns3:Taxes> </ns3:DetailCurrencyPrice> </ns3:TotalPrice> <ns3:Disclosure> <ns3:Description> <ns3:Text>BASIC ECONOMY</ns3:Text> </ns3:Description> </ns3:Disclosure> <ns3:PricedOffer> <ns3:OfferPrice OfferItemID="OF1SL1"> <ns3:RequestedDate> <ns3:PriceDetail> <ns3:TotalAmount> <ns3:DetailCurrencyPrice> <ns3:Total Code="RUB">12624</ns3:Total> <ns3:Taxes> <ns3:Total Code="RUB">824</ns3:Total> </ns3:Taxes> </ns3:DetailCurrencyPrice> </ns3:TotalAmount> <ns3:BaseAmount Code="RUB">11800</ns3:BaseAmount> </ns3:PriceDetail> <ns3:Associations> <ns3:OtherAssociation> <ns3:OtherAssociation> <ns3:Type>SEG6 DME-LED</ns3:Type> <ns3:ReferenceValue>Meal_O</ns3:ReferenceValue> </ns3:OtherAssociation> </ns3:OtherAssociation> </ns3:Associations> <ns3:Associations> <ns3:AssociatedTraveler> <ns3:TravelerReferences>SH1</ns3:TravelerReferences> </ns3:AssociatedTraveler> <ns3:ApplicableFlight> <ns3:OriginDestinationReferences>OD6</ns3:OriginDestinationReferences> <ns3:FlightSegmentReference ref="SEG6"> <ns3:Cabin> <ns3:CabinDesignator>Y</ns3:CabinDesignator> <ns3:MarketingName>BASIC ECONOMY</ns3:MarketingName> </ns3:Cabin> </ns3:FlightSegmentReference> <ns3:FlightSegmentReference ref="SEG6"> <ns3:ClassOfService> <ns3:Code SeatsLeft="9">N</ns3:Code> <ns3:MarketingName>NBSOW</ns3:MarketingName> </ns3:ClassOfService> <ns3:BagDetailAssociation> <ns3:CheckedBagReferences>BG1</ns3:CheckedBagReferences> <ns3:CarryOnReferences>CO1</ns3:CarryOnReferences> </ns3:BagDetailAssociation> </ns3:FlightSegmentReference> </ns3:ApplicableFlight> <ns3:OtherAssociation> <ns3:OtherAssociation> <ns3:Type>NBSOW</ns3:Type> <ns3:ReferenceValue>PL1</ns3:ReferenceValue> </ns3:OtherAssociation> </ns3:OtherAssociation> </ns3:Associations> <ns3:Associations> <ns3:AssociatedTraveler> <ns3:TravelerReferences>SH2</ns3:TravelerReferences> </ns3:AssociatedTraveler> <ns3:ApplicableFlight> <ns3:OriginDestinationReferences>OD6</ns3:OriginDestinationReferences> <ns3:FlightSegmentReference ref="SEG6"> <ns3:Cabin> <ns3:CabinDesignator>Y</ns3:CabinDesignator> <ns3:MarketingName>BASIC ECONOMY</ns3:MarketingName> </ns3:Cabin> </ns3:FlightSegmentReference> <ns3:FlightSegmentReference ref="SEG6"> <ns3:ClassOfService> <ns3:Code SeatsLeft="9">N</ns3:Code> <ns3:MarketingName>NBSOW</ns3:MarketingName> </ns3:ClassOfService> <ns3:BagDetailAssociation> <ns3:CheckedBagReferences>BG1</ns3:CheckedBagReferences> <ns3:CarryOnReferences>CO1</ns3:CarryOnReferences> </ns3:BagDetailAssociation> </ns3:FlightSegmentReference> </ns3:ApplicableFlight> <ns3:OtherAssociation> <ns3:OtherAssociation> <ns3:Type>NBSOW</ns3:Type> <ns3:ReferenceValue>PL1</ns3:ReferenceValue> </ns3:OtherAssociation> </ns3:OtherAssociation> </ns3:Associations> </ns3:RequestedDate> <ns3:FareDetail> <ns3:FareComponent refs="SH1" ObjectKey="FC43"> <ns3:Parameters Quantity="1"/> <ns3:PriceBreakdown> <ns3:Price> <ns3:BaseAmount Code="RUB">4370</ns3:BaseAmount> <ns3:Taxes> <ns3:Total Code="RUB">412</ns3:Total> <ns3:Breakdown> <ns3:Tax> <ns3:Amount Code="RUB">180</ns3:Amount> <ns3:TaxCode>RI</ns3:TaxCode> <ns3:Description>Terminal Use Charge</ns3:Description> </ns3:Tax> <ns3:Tax> <ns3:Amount Code="RUB">232</ns3:Amount> <ns3:TaxCode>RI</ns3:TaxCode> <ns3:Description>Terminal Use Charge</ns3:Description> </ns3:Tax> </ns3:Breakdown> </ns3:Taxes> </ns3:Price> </ns3:PriceBreakdown> </ns3:FareComponent> <ns3:FareComponent refs="SH2" ObjectKey="FC44"> <ns3:Parameters Quantity="1"/> <ns3:PriceBreakdown> <ns3:Price> <ns3:BaseAmount Code="RUB">3715</ns3:BaseAmount> <ns3:Taxes> <ns3:Total Code="RUB">206</ns3:Total> <ns3:Breakdown> <ns3:Tax> <ns3:Amount Code="RUB">90</ns3:Amount> <ns3:TaxCode>RI</ns3:TaxCode> <ns3:Description>Terminal Use Charge</ns3:Description> </ns3:Tax> <ns3:Tax> <ns3:Amount Code="RUB">116</ns3:Amount> <ns3:TaxCode>RI</ns3:TaxCode> <ns3:Description>Terminal Use Charge</ns3:Description> </ns3:Tax> </ns3:Breakdown> </ns3:Taxes> </ns3:Price> </ns3:PriceBreakdown> </ns3:FareComponent> </ns3:FareDetail> </ns3:OfferPrice> </ns3:PricedOffer> </ns3:AirlineOffer> <ns3:AirlineOffer> <ns3:OfferID Owner="S7">OF2</ns3:OfferID> <ns3:TotalPrice> <ns3:DetailCurrencyPrice> <ns3:Total Code="RUB">18294</ns3:Total> <ns3:Details> <ns3:Detail> <ns3:SubTotal Code="RUB">17470</ns3:SubTotal> <ns3:Application>Fare</ns3:Application> </ns3:Detail> </ns3:Details> <ns3:Taxes> <ns3:Total Code="RUB">824</ns3:Total> </ns3:Taxes> </ns3:DetailCurrencyPrice> </ns3:TotalPrice> <ns3:Disclosure> <ns3:Description> <ns3:Text>STANDARD ECONOMY</ns3:Text> </ns3:Description> </ns3:Disclosure> <ns3:PricedOffer> <ns3:OfferPrice OfferItemID="OF2SL1"> <ns3:RequestedDate> <ns3:PriceDetail> <ns3:TotalAmount> <ns3:DetailCurrencyPrice> <ns3:Total Code="RUB">18294</ns3:Total> <ns3:Taxes> <ns3:Total Code="RUB">824</ns3:Total> </ns3:Taxes> </ns3:DetailCurrencyPrice> </ns3:TotalAmount> <ns3:BaseAmount Code="RUB">17470</ns3:BaseAmount> </ns3:PriceDetail> <ns3:Associations> <ns3:OtherAssociation> <ns3:OtherAssociation> <ns3:Type>SEG6 DME-LED</ns3:Type> <ns3:ReferenceValue>Meal_O</ns3:ReferenceValue> </ns3:OtherAssociation> </ns3:OtherAssociation> </ns3:Associations> <ns3:Associations> <ns3:AssociatedTraveler> <ns3:TravelerReferences>SH1</ns3:TravelerReferences> </ns3:AssociatedTraveler> <ns3:ApplicableFlight> <ns3:OriginDestinationReferences>OD6</ns3:OriginDestinationReferences> <ns3:FlightSegmentReference ref="SEG6"> <ns3:Cabin> <ns3:CabinDesignator>Y</ns3:CabinDesignator> <ns3:MarketingName>STANDARD ECONOMY</ns3:MarketingName> </ns3:Cabin> </ns3:FlightSegmentReference> <ns3:FlightSegmentReference ref="SEG6"> <ns3:ClassOfService> <ns3:Code SeatsLeft="9">N</ns3:Code> <ns3:MarketingName>NSTOW</ns3:MarketingName> </ns3:ClassOfService> <ns3:BagDetailAssociation> <ns3:CheckedBagReferences>BG2</ns3:CheckedBagReferences> <ns3:CarryOnReferences>CO1</ns3:CarryOnReferences> </ns3:BagDetailAssociation> </ns3:FlightSegmentReference> </ns3:ApplicableFlight> <ns3:OtherAssociation> <ns3:OtherAssociation> <ns3:Type>NSTOW</ns3:Type> <ns3:ReferenceValue>PL2</ns3:ReferenceValue> </ns3:OtherAssociation> </ns3:OtherAssociation> </ns3:Associations> <ns3:Associations> <ns3:AssociatedTraveler> <ns3:TravelerReferences>SH2</ns3:TravelerReferences> </ns3:AssociatedTraveler> <ns3:ApplicableFlight> <ns3:OriginDestinationReferences>OD6</ns3:OriginDestinationReferences> <ns3:FlightSegmentReference ref="SEG6"> <ns3:Cabin> <ns3:CabinDesignator>Y</ns3:CabinDesignator> <ns3:MarketingName>STANDARD ECONOMY</ns3:MarketingName> </ns3:Cabin> </ns3:FlightSegmentReference> <ns3:FlightSegmentReference ref="SEG6"> <ns3:ClassOfService> <ns3:Code SeatsLeft="9">N</ns3:Code> <ns3:MarketingName>NSTOW</ns3:MarketingName> </ns3:ClassOfService> <ns3:BagDetailAssociation> <ns3:CheckedBagReferences>BG2</ns3:CheckedBagReferences> <ns3:CarryOnReferences>CO1</ns3:CarryOnReferences> </ns3:BagDetailAssociation> </ns3:FlightSegmentReference> </ns3:ApplicableFlight> <ns3:OtherAssociation> <ns3:OtherAssociation> <ns3:Type>NSTOW</ns3:Type> <ns3:ReferenceValue>PL2</ns3:ReferenceValue> </ns3:OtherAssociation> </ns3:OtherAssociation> </ns3:Associations> </ns3:RequestedDate> <ns3:FareDetail> <ns3:FareComponent refs="SH1" ObjectKey="FC45"> <ns3:Parameters Quantity="1"/> <ns3:PriceBreakdown> <ns3:Price> <ns3:BaseAmount Code="RUB">6470</ns3:BaseAmount> <ns3:Taxes> <ns3:Total Code="RUB">412</ns3:Total> <ns3:Breakdown> <ns3:Tax> <ns3:Amount Code="RUB">180</ns3:Amount> <ns3:TaxCode>RI</ns3:TaxCode> <ns3:Description>Terminal Use Charge</ns3:Description> </ns3:Tax> <ns3:Tax> <ns3:Amount Code="RUB">232</ns3:Amount> <ns3:TaxCode>RI</ns3:TaxCode> <ns3:Description>Terminal Use Charge</ns3:Description> </ns3:Tax> </ns3:Breakdown> </ns3:Taxes> </ns3:Price> </ns3:PriceBreakdown> </ns3:FareComponent> <ns3:FareComponent refs="SH2" ObjectKey="FC46"> <ns3:Parameters Quantity="1"/> <ns3:PriceBreakdown> <ns3:Price> <ns3:BaseAmount Code="RUB">5500</ns3:BaseAmount> <ns3:Taxes> <ns3:Total Code="RUB">206</ns3:Total> <ns3:Breakdown> <ns3:Tax> <ns3:Amount Code="RUB">90</ns3:Amount> <ns3:TaxCode>RI</ns3:TaxCode> <ns3:Description>Terminal Use Charge</ns3:Description> </ns3:Tax> <ns3:Tax> <ns3:Amount Code="RUB">116</ns3:Amount> <ns3:TaxCode>RI</ns3:TaxCode> <ns3:Description>Terminal Use Charge</ns3:Description> </ns3:Tax> </ns3:Breakdown> </ns3:Taxes> </ns3:Price> </ns3:PriceBreakdown> </ns3:FareComponent> </ns3:FareDetail> </ns3:OfferPrice> </ns3:PricedOffer> </ns3:AirlineOffer> <ns3:AirlineOffer> <ns3:OfferID Owner="S7">OF3</ns3:OfferID> <ns3:TotalPrice> <ns3:DetailCurrencyPrice> <ns3:Total Code="RUB">35984</ns3:Total> <ns3:Details> <ns3:Detail> <ns3:SubTotal Code="RUB">35160</ns3:SubTotal> <ns3:Application>Fare</ns3:Application> </ns3:Detail> </ns3:Details> <ns3:Taxes> <ns3:Total Code="RUB">824</ns3:Total> </ns3:Taxes> </ns3:DetailCurrencyPrice> </ns3:TotalPrice> <ns3:Disclosure> <ns3:Description> <ns3:Text>PLUS ECONOMY</ns3:Text> </ns3:Description> </ns3:Disclosure> <ns3:PricedOffer> <ns3:OfferPrice OfferItemID="OF3SL1"> <ns3:RequestedDate> <ns3:PriceDetail> <ns3:TotalAmount> <ns3:DetailCurrencyPrice> <ns3:Total Code="RUB">35984</ns3:Total> <ns3:Taxes> <ns3:Total Code="RUB">824</ns3:Total> </ns3:Taxes> </ns3:DetailCurrencyPrice> </ns3:TotalAmount> <ns3:BaseAmount Code="RUB">35160</ns3:BaseAmount> </ns3:PriceDetail> <ns3:Associations> <ns3:OtherAssociation> <ns3:OtherAssociation> <ns3:Type>SEG6 DME-LED</ns3:Type> <ns3:ReferenceValue>Meal_O</ns3:ReferenceValue> </ns3:OtherAssociation> </ns3:OtherAssociation> </ns3:Associations> <ns3:Associations> <ns3:AssociatedTraveler> <ns3:TravelerReferences>SH1</ns3:TravelerReferences> </ns3:AssociatedTraveler> <ns3:ApplicableFlight> <ns3:OriginDestinationReferences>OD6</ns3:OriginDestinationReferences> <ns3:FlightSegmentReference ref="SEG6"> <ns3:Cabin> <ns3:CabinDesignator>Y</ns3:CabinDesignator> <ns3:MarketingName>PLUS ECONOMY</ns3:MarketingName> </ns3:Cabin> </ns3:FlightSegmentReference> <ns3:FlightSegmentReference ref="SEG6"> <ns3:ClassOfService> <ns3:Code SeatsLeft="9">N</ns3:Code> <ns3:MarketingName>NPLOW</ns3:MarketingName> </ns3:ClassOfService> <ns3:BagDetailAssociation> <ns3:CheckedBagReferences>BG3</ns3:CheckedBagReferences> <ns3:CarryOnReferences>CO1</ns3:CarryOnReferences> </ns3:BagDetailAssociation> </ns3:FlightSegmentReference> </ns3:ApplicableFlight> </ns3:Associations> <ns3:Associations> <ns3:AssociatedTraveler> <ns3:TravelerReferences>SH2</ns3:TravelerReferences> </ns3:AssociatedTraveler> <ns3:ApplicableFlight> <ns3:OriginDestinationReferences>OD6</ns3:OriginDestinationReferences> <ns3:FlightSegmentReference ref="SEG6"> <ns3:Cabin> <ns3:CabinDesignator>Y</ns3:CabinDesignator> <ns3:MarketingName>PLUS ECONOMY</ns3:MarketingName> </ns3:Cabin> </ns3:FlightSegmentReference> <ns3:FlightSegmentReference ref="SEG6"> <ns3:ClassOfService> <ns3:Code SeatsLeft="9">N</ns3:Code> <ns3:MarketingName>NPLOW</ns3:MarketingName> </ns3:ClassOfService> <ns3:BagDetailAssociation> <ns3:CheckedBagReferences>BG3</ns3:CheckedBagReferences> <ns3:CarryOnReferences>CO1</ns3:CarryOnReferences> </ns3:BagDetailAssociation> </ns3:FlightSegmentReference> </ns3:ApplicableFlight> </ns3:Associations> </ns3:RequestedDate> <ns3:FareDetail> <ns3:FareComponent refs="SH1" ObjectKey="FC47"> <ns3:Parameters Quantity="1"/> <ns3:PriceBreakdown> <ns3:Price> <ns3:BaseAmount Code="RUB">13020</ns3:BaseAmount> <ns3:Taxes> <ns3:Total Code="RUB">412</ns3:Total> <ns3:Breakdown> <ns3:Tax> <ns3:Amount Code="RUB">180</ns3:Amount> <ns3:TaxCode>RI</ns3:TaxCode> <ns3:Description>Terminal Use Charge</ns3:Description> </ns3:Tax> <ns3:Tax> <ns3:Amount Code="RUB">232</ns3:Amount> <ns3:TaxCode>RI</ns3:TaxCode> <ns3:Description>Terminal Use Charge</ns3:Description> </ns3:Tax> </ns3:Breakdown> </ns3:Taxes> </ns3:Price> </ns3:PriceBreakdown> </ns3:FareComponent> <ns3:FareComponent refs="SH2" ObjectKey="FC48"> <ns3:Parameters Quantity="1"/> <ns3:PriceBreakdown> <ns3:Price> <ns3:BaseAmount Code="RUB">11070</ns3:BaseAmount> <ns3:Taxes> <ns3:Total Code="RUB">206</ns3:Total> <ns3:Breakdown> <ns3:Tax> <ns3:Amount Code="RUB">90</ns3:Amount> <ns3:TaxCode>RI</ns3:TaxCode> <ns3:Description>Terminal Use Charge</ns3:Description> </ns3:Tax> <ns3:Tax> <ns3:Amount Code="RUB">116</ns3:Amount> <ns3:TaxCode>RI</ns3:TaxCode> <ns3:Description>Terminal Use Charge</ns3:Description> </ns3:Tax> </ns3:Breakdown> </ns3:Taxes> </ns3:Price> </ns3:PriceBreakdown> </ns3:FareComponent> </ns3:FareDetail> </ns3:OfferPrice> </ns3:PricedOffer> </ns3:AirlineOffer> <ns3:AirlineOffer> <ns3:OfferID Owner="S7">OF4</ns3:OfferID> <ns3:TotalPrice> <ns3:DetailCurrencyPrice> <ns3:Total Code="RUB">36779</ns3:Total> <ns3:Details> <ns3:Detail> <ns3:SubTotal Code="RUB">35955</ns3:SubTotal> <ns3:Application>Fare</ns3:Application> </ns3:Detail> </ns3:Details> <ns3:Taxes> <ns3:Total Code="RUB">824</ns3:Total> </ns3:Taxes> </ns3:DetailCurrencyPrice> </ns3:TotalPrice> <ns3:Disclosure> <ns3:Description> <ns3:Text>BASIC BUSINESS</ns3:Text> </ns3:Description> </ns3:Disclosure> <ns3:PricedOffer> <ns3:OfferPrice OfferItemID="OF4SL1"> <ns3:RequestedDate> <ns3:PriceDetail> <ns3:TotalAmount> <ns3:DetailCurrencyPrice> <ns3:Total Code="RUB">36779</ns3:Total> <ns3:Taxes> <ns3:Total Code="RUB">824</ns3:Total> </ns3:Taxes> </ns3:DetailCurrencyPrice> </ns3:TotalAmount> <ns3:BaseAmount Code="RUB">35955</ns3:BaseAmount> </ns3:PriceDetail> <ns3:Associations> <ns3:OtherAssociation> <ns3:OtherAssociation> <ns3:Type>SEG6 DME-LED</ns3:Type> <ns3:ReferenceValue>Meal_H</ns3:ReferenceValue> </ns3:OtherAssociation> </ns3:OtherAssociation> </ns3:Associations> <ns3:Associations> <ns3:AssociatedTraveler> <ns3:TravelerReferences>SH1</ns3:TravelerReferences> </ns3:AssociatedTraveler> <ns3:ApplicableFlight> <ns3:OriginDestinationReferences>OD6</ns3:OriginDestinationReferences> <ns3:FlightSegmentReference ref="SEG6"> <ns3:Cabin> <ns3:CabinDesignator>B</ns3:CabinDesignator> <ns3:MarketingName>BASIC BUSINESS</ns3:MarketingName> </ns3:Cabin> </ns3:FlightSegmentReference> <ns3:FlightSegmentReference ref="SEG6"> <ns3:ClassOfService> <ns3:Code SeatsLeft="4">D</ns3:Code> <ns3:MarketingName>DBSOW</ns3:MarketingName> </ns3:ClassOfService> <ns3:BagDetailAssociation> <ns3:CheckedBagReferences>BG3</ns3:CheckedBagReferences> <ns3:CarryOnReferences>CO2</ns3:CarryOnReferences> </ns3:BagDetailAssociation> </ns3:FlightSegmentReference> </ns3:ApplicableFlight> <ns3:OtherAssociation> <ns3:OtherAssociation> <ns3:Type>DBSOW</ns3:Type> <ns3:ReferenceValue>PL3</ns3:ReferenceValue> </ns3:OtherAssociation> </ns3:OtherAssociation> </ns3:Associations> <ns3:Associations> <ns3:AssociatedTraveler> <ns3:TravelerReferences>SH2</ns3:TravelerReferences> </ns3:AssociatedTraveler> <ns3:ApplicableFlight> <ns3:OriginDestinationReferences>OD6</ns3:OriginDestinationReferences> <ns3:FlightSegmentReference ref="SEG6"> <ns3:Cabin> <ns3:CabinDesignator>B</ns3:CabinDesignator> <ns3:MarketingName>BASIC BUSINESS</ns3:MarketingName> </ns3:Cabin> </ns3:FlightSegmentReference> <ns3:FlightSegmentReference ref="SEG6"> <ns3:ClassOfService> <ns3:Code SeatsLeft="4">D</ns3:Code> <ns3:MarketingName>DBSOW</ns3:MarketingName> </ns3:ClassOfService> <ns3:BagDetailAssociation> <ns3:CheckedBagReferences>BG3</ns3:CheckedBagReferences> <ns3:CarryOnReferences>CO2</ns3:CarryOnReferences> </ns3:BagDetailAssociation> </ns3:FlightSegmentReference> </ns3:ApplicableFlight> <ns3:OtherAssociation> <ns3:OtherAssociation> <ns3:Type>DBSOW</ns3:Type> <ns3:ReferenceValue>PL3</ns3:ReferenceValue> </ns3:OtherAssociation> </ns3:OtherAssociation> </ns3:Associations> </ns3:RequestedDate> <ns3:FareDetail> <ns3:FareComponent refs="SH1" ObjectKey="FC49"> <ns3:Parameters Quantity="1"/> <ns3:PriceBreakdown> <ns3:Price> <ns3:BaseAmount Code="RUB">13315</ns3:BaseAmount> <ns3:Taxes> <ns3:Total Code="RUB">412</ns3:Total> <ns3:Breakdown> <ns3:Tax> <ns3:Amount Code="RUB">180</ns3:Amount> <ns3:TaxCode>RI</ns3:TaxCode> <ns3:Description>Terminal Use Charge</ns3:Description> </ns3:Tax> <ns3:Tax> <ns3:Amount Code="RUB">232</ns3:Amount> <ns3:TaxCode>RI</ns3:TaxCode> <ns3:Description>Terminal Use Charge</ns3:Description> </ns3:Tax> </ns3:Breakdown> </ns3:Taxes> </ns3:Price> </ns3:PriceBreakdown> </ns3:FareComponent> <ns3:FareComponent refs="SH2" ObjectKey="FC50"> <ns3:Parameters Quantity="1"/> <ns3:PriceBreakdown> <ns3:Price> <ns3:BaseAmount Code="RUB">11320</ns3:BaseAmount> <ns3:Taxes> <ns3:Total Code="RUB">206</ns3:Total> <ns3:Breakdown> <ns3:Tax> <ns3:Amount Code="RUB">90</ns3:Amount> <ns3:TaxCode>RI</ns3:TaxCode> <ns3:Description>Terminal Use Charge</ns3:Description> </ns3:Tax> <ns3:Tax> <ns3:Amount Code="RUB">116</ns3:Amount> <ns3:TaxCode>RI</ns3:TaxCode> <ns3:Description>Terminal Use Charge</ns3:Description> </ns3:Tax> </ns3:Breakdown> </ns3:Taxes> </ns3:Price> </ns3:PriceBreakdown> </ns3:FareComponent> </ns3:FareDetail> </ns3:OfferPrice> </ns3:PricedOffer> </ns3:AirlineOffer> <ns3:AirlineOffer> <ns3:OfferID Owner="S7">OF5</ns3:OfferID> <ns3:TotalPrice> <ns3:DetailCurrencyPrice> <ns3:Total Code="RUB">53789</ns3:Total> <ns3:Details> <ns3:Detail> <ns3:SubTotal Code="RUB">52965</ns3:SubTotal> <ns3:Application>Fare</ns3:Application> </ns3:Detail> </ns3:Details> <ns3:Taxes> <ns3:Total Code="RUB">824</ns3:Total> </ns3:Taxes> </ns3:DetailCurrencyPrice> </ns3:TotalPrice> <ns3:Disclosure> <ns3:Description> <ns3:Text>STANDARD BUSINESS</ns3:Text> </ns3:Description> </ns3:Disclosure> <ns3:PricedOffer> <ns3:OfferPrice OfferItemID="OF5SL1"> <ns3:RequestedDate> <ns3:PriceDetail> <ns3:TotalAmount> <ns3:DetailCurrencyPrice> <ns3:Total Code="RUB">53789</ns3:Total> <ns3:Taxes> <ns3:Total Code="RUB">824</ns3:Total> </ns3:Taxes> </ns3:DetailCurrencyPrice> </ns3:TotalAmount> <ns3:BaseAmount Code="RUB">52965</ns3:BaseAmount> </ns3:PriceDetail> <ns3:Associations> <ns3:OtherAssociation> <ns3:OtherAssociation> <ns3:Type>SEG6 DME-LED</ns3:Type> <ns3:ReferenceValue>Meal_H</ns3:ReferenceValue> </ns3:OtherAssociation> </ns3:OtherAssociation> </ns3:Associations> <ns3:Associations> <ns3:AssociatedTraveler> <ns3:TravelerReferences>SH1</ns3:TravelerReferences> </ns3:AssociatedTraveler> <ns3:ApplicableFlight> <ns3:OriginDestinationReferences>OD6</ns3:OriginDestinationReferences> <ns3:FlightSegmentReference ref="SEG6"> <ns3:Cabin> <ns3:CabinDesignator>B</ns3:CabinDesignator> <ns3:MarketingName>STANDARD BUSINESS</ns3:MarketingName> </ns3:Cabin> </ns3:FlightSegmentReference> <ns3:FlightSegmentReference ref="SEG6"> <ns3:ClassOfService> <ns3:Code SeatsLeft="4">D</ns3:Code> <ns3:MarketingName>DSTOW</ns3:MarketingName> </ns3:ClassOfService> <ns3:BagDetailAssociation> <ns3:CheckedBagReferences>BG3</ns3:CheckedBagReferences> <ns3:CarryOnReferences>CO2</ns3:CarryOnReferences> </ns3:BagDetailAssociation> </ns3:FlightSegmentReference> </ns3:ApplicableFlight> <ns3:OtherAssociation> <ns3:OtherAssociation> <ns3:Type>DSTOW</ns3:Type> <ns3:ReferenceValue>PL4</ns3:ReferenceValue> </ns3:OtherAssociation> </ns3:OtherAssociation> </ns3:Associations> <ns3:Associations> <ns3:AssociatedTraveler> <ns3:TravelerReferences>SH2</ns3:TravelerReferences> </ns3:AssociatedTraveler> <ns3:ApplicableFlight> <ns3:OriginDestinationReferences>OD6</ns3:OriginDestinationReferences> <ns3:FlightSegmentReference ref="SEG6"> <ns3:Cabin> <ns3:CabinDesignator>B</ns3:CabinDesignator> <ns3:MarketingName>STANDARD BUSINESS</ns3:MarketingName> </ns3:Cabin> </ns3:FlightSegmentReference> <ns3:FlightSegmentReference ref="SEG6"> <ns3:ClassOfService> <ns3:Code SeatsLeft="4">D</ns3:Code> <ns3:MarketingName>DSTOW</ns3:MarketingName> </ns3:ClassOfService> <ns3:BagDetailAssociation> <ns3:CheckedBagReferences>BG3</ns3:CheckedBagReferences> <ns3:CarryOnReferences>CO2</ns3:CarryOnReferences> </ns3:BagDetailAssociation> </ns3:FlightSegmentReference> </ns3:ApplicableFlight> <ns3:OtherAssociation> <ns3:OtherAssociation> <ns3:Type>DSTOW</ns3:Type> <ns3:ReferenceValue>PL4</ns3:ReferenceValue> </ns3:OtherAssociation> </ns3:OtherAssociation> </ns3:Associations> </ns3:RequestedDate> <ns3:FareDetail> <ns3:FareComponent refs="SH1" ObjectKey="FC51"> <ns3:Parameters Quantity="1"/> <ns3:PriceBreakdown> <ns3:Price> <ns3:BaseAmount Code="RUB">19615</ns3:BaseAmount> <ns3:Taxes> <ns3:Total Code="RUB">412</ns3:Total> <ns3:Breakdown> <ns3:Tax> <ns3:Amount Code="RUB">180</ns3:Amount> <ns3:TaxCode>RI</ns3:TaxCode> <ns3:Description>Terminal Use Charge</ns3:Description> </ns3:Tax> <ns3:Tax> <ns3:Amount Code="RUB">232</ns3:Amount> <ns3:TaxCode>RI</ns3:TaxCode> <ns3:Description>Terminal Use Charge</ns3:Description> </ns3:Tax> </ns3:Breakdown> </ns3:Taxes> </ns3:Price> </ns3:PriceBreakdown> </ns3:FareComponent> <ns3:FareComponent refs="SH2" ObjectKey="FC52"> <ns3:Parameters Quantity="1"/> <ns3:PriceBreakdown> <ns3:Price> <ns3:BaseAmount Code="RUB">16675</ns3:BaseAmount> <ns3:Taxes> <ns3:Total Code="RUB">206</ns3:Total> <ns3:Breakdown> <ns3:Tax> <ns3:Amount Code="RUB">90</ns3:Amount> <ns3:TaxCode>RI</ns3:TaxCode> <ns3:Description>Terminal Use Charge</ns3:Description> </ns3:Tax> <ns3:Tax> <ns3:Amount Code="RUB">116</ns3:Amount> <ns3:TaxCode>RI</ns3:TaxCode> <ns3:Description>Terminal Use Charge</ns3:Description> </ns3:Tax> </ns3:Breakdown> </ns3:Taxes> </ns3:Price> </ns3:PriceBreakdown> </ns3:FareComponent> </ns3:FareDetail> </ns3:OfferPrice> </ns3:PricedOffer> </ns3:AirlineOffer> <ns3:AirlineOffer> <ns3:OfferID Owner="S7">OF6</ns3:OfferID> <ns3:TotalPrice> <ns3:DetailCurrencyPrice> <ns3:Total Code="RUB">89699</ns3:Total> <ns3:Details> <ns3:Detail> <ns3:SubTotal Code="RUB">88875</ns3:SubTotal> <ns3:Application>Fare</ns3:Application> </ns3:Detail> </ns3:Details> <ns3:Taxes> <ns3:Total Code="RUB">824</ns3:Total> </ns3:Taxes> </ns3:DetailCurrencyPrice> </ns3:TotalPrice> <ns3:Disclosure> <ns3:Description> <ns3:Text>PLUS BUSINESS</ns3:Text> </ns3:Description> </ns3:Disclosure> <ns3:PricedOffer> <ns3:OfferPrice OfferItemID="OF6SL1"> <ns3:RequestedDate> <ns3:PriceDetail> <ns3:TotalAmount> <ns3:DetailCurrencyPrice> <ns3:Total Code="RUB">89699</ns3:Total> <ns3:Taxes> <ns3:Total Code="RUB">824</ns3:Total> </ns3:Taxes> </ns3:DetailCurrencyPrice> </ns3:TotalAmount> <ns3:BaseAmount Code="RUB">88875</ns3:BaseAmount> </ns3:PriceDetail> <ns3:Associations> <ns3:OtherAssociation> <ns3:OtherAssociation> <ns3:Type>SEG6 DME-LED</ns3:Type> <ns3:ReferenceValue>Meal_H</ns3:ReferenceValue> </ns3:OtherAssociation> </ns3:OtherAssociation> </ns3:Associations> <ns3:Associations> <ns3:AssociatedTraveler> <ns3:TravelerReferences>SH1</ns3:TravelerReferences> </ns3:AssociatedTraveler> <ns3:ApplicableFlight> <ns3:OriginDestinationReferences>OD6</ns3:OriginDestinationReferences> <ns3:FlightSegmentReference ref="SEG6"> <ns3:Cabin> <ns3:CabinDesignator>B</ns3:CabinDesignator> <ns3:MarketingName>PLUS BUSINESS</ns3:MarketingName> </ns3:Cabin> </ns3:FlightSegmentReference> <ns3:FlightSegmentReference ref="SEG6"> <ns3:ClassOfService> <ns3:Code SeatsLeft="4">D</ns3:Code> <ns3:MarketingName>DPLOW</ns3:MarketingName> </ns3:ClassOfService> <ns3:BagDetailAssociation> <ns3:CheckedBagReferences>BG4</ns3:CheckedBagReferences> <ns3:CarryOnReferences>CO2</ns3:CarryOnReferences> </ns3:BagDetailAssociation> </ns3:FlightSegmentReference> </ns3:ApplicableFlight> </ns3:Associations> <ns3:Associations> <ns3:AssociatedTraveler> <ns3:TravelerReferences>SH2</ns3:TravelerReferences> </ns3:AssociatedTraveler> <ns3:ApplicableFlight> <ns3:OriginDestinationReferences>OD6</ns3:OriginDestinationReferences> <ns3:FlightSegmentReference ref="SEG6"> <ns3:Cabin> <ns3:CabinDesignator>B</ns3:CabinDesignator> <ns3:MarketingName>PLUS BUSINESS</ns3:MarketingName> </ns3:Cabin> </ns3:FlightSegmentReference> <ns3:FlightSegmentReference ref="SEG6"> <ns3:ClassOfService> <ns3:Code SeatsLeft="4">D</ns3:Code> <ns3:MarketingName>DPLOW</ns3:MarketingName> </ns3:ClassOfService> <ns3:BagDetailAssociation> <ns3:CheckedBagReferences>BG4</ns3:CheckedBagReferences> <ns3:CarryOnReferences>CO2</ns3:CarryOnReferences> </ns3:BagDetailAssociation> </ns3:FlightSegmentReference> </ns3:ApplicableFlight> </ns3:Associations> </ns3:RequestedDate> <ns3:FareDetail> <ns3:FareComponent refs="SH1" ObjectKey="FC53"> <ns3:Parameters Quantity="1"/> <ns3:PriceBreakdown> <ns3:Price> <ns3:BaseAmount Code="RUB">32915</ns3:BaseAmount> <ns3:Taxes> <ns3:Total Code="RUB">412</ns3:Total> <ns3:Breakdown> <ns3:Tax> <ns3:Amount Code="RUB">180</ns3:Amount> <ns3:TaxCode>RI</ns3:TaxCode> <ns3:Description>Terminal Use Charge</ns3:Description> </ns3:Tax> <ns3:Tax> <ns3:Amount Code="RUB">232</ns3:Amount> <ns3:TaxCode>RI</ns3:TaxCode> <ns3:Description>Terminal Use Charge</ns3:Description> </ns3:Tax> </ns3:Breakdown> </ns3:Taxes> </ns3:Price> </ns3:PriceBreakdown> </ns3:FareComponent> <ns3:FareComponent refs="SH2" ObjectKey="FC54"> <ns3:Parameters Quantity="1"/> <ns3:PriceBreakdown> <ns3:Price> <ns3:BaseAmount Code="RUB">27980</ns3:BaseAmount> <ns3:Taxes> <ns3:Total Code="RUB">206</ns3:Total> <ns3:Breakdown> <ns3:Tax> <ns3:Amount Code="RUB">90</ns3:Amount> <ns3:TaxCode>RI</ns3:TaxCode> <ns3:Description>Terminal Use Charge</ns3:Description> </ns3:Tax> <ns3:Tax> <ns3:Amount Code="RUB">116</ns3:Amount> <ns3:TaxCode>RI</ns3:TaxCode> <ns3:Description>Terminal Use Charge</ns3:Description> </ns3:Tax> </ns3:Breakdown> </ns3:Taxes> </ns3:Price> </ns3:PriceBreakdown> </ns3:FareComponent> </ns3:FareDetail> </ns3:OfferPrice> </ns3:PricedOffer> </ns3:AirlineOffer> </ns3:AirlineOffers> <ns3:AirlineOffers> <ns3:Owner>S7</ns3:Owner> <ns3:AirlineOffer> <ns3:OfferID Owner="S7">OF1</ns3:OfferID> <ns3:TotalPrice> <ns3:DetailCurrencyPrice> <ns3:Total Code="RUB">12624</ns3:Total> <ns3:Details> <ns3:Detail> <ns3:SubTotal Code="RUB">11800</ns3:SubTotal> <ns3:Application>Fare</ns3:Application> </ns3:Detail> </ns3:Details> <ns3:Taxes> <ns3:Total Code="RUB">824</ns3:Total> </ns3:Taxes> </ns3:DetailCurrencyPrice> </ns3:TotalPrice> <ns3:Disclosure> <ns3:Description> <ns3:Text>BASIC ECONOMY</ns3:Text> </ns3:Description> </ns3:Disclosure> <ns3:PricedOffer> <ns3:OfferPrice OfferItemID="OF1SL1"> <ns3:RequestedDate> <ns3:PriceDetail> <ns3:TotalAmount> <ns3:DetailCurrencyPrice> <ns3:Total Code="RUB">12624</ns3:Total> <ns3:Taxes> <ns3:Total Code="RUB">824</ns3:Total> </ns3:Taxes> </ns3:DetailCurrencyPrice> </ns3:TotalAmount> <ns3:BaseAmount Code="RUB">11800</ns3:BaseAmount> </ns3:PriceDetail> <ns3:Associations> <ns3:OtherAssociation> <ns3:OtherAssociation> <ns3:Type>SEG7 DME-LED</ns3:Type> <ns3:ReferenceValue>Meal_O</ns3:ReferenceValue> </ns3:OtherAssociation> </ns3:OtherAssociation> </ns3:Associations> <ns3:Associations> <ns3:AssociatedTraveler> <ns3:TravelerReferences>SH1</ns3:TravelerReferences> </ns3:AssociatedTraveler> <ns3:ApplicableFlight> <ns3:OriginDestinationReferences>OD7</ns3:OriginDestinationReferences> <ns3:FlightSegmentReference ref="SEG7"> <ns3:Cabin> <ns3:CabinDesignator>Y</ns3:CabinDesignator> <ns3:MarketingName>BASIC ECONOMY</ns3:MarketingName> </ns3:Cabin> </ns3:FlightSegmentReference> <ns3:FlightSegmentReference ref="SEG7"> <ns3:ClassOfService> <ns3:Code SeatsLeft="9">N</ns3:Code> <ns3:MarketingName>NBSOW</ns3:MarketingName> </ns3:ClassOfService> <ns3:BagDetailAssociation> <ns3:CheckedBagReferences>BG1</ns3:CheckedBagReferences> <ns3:CarryOnReferences>CO1</ns3:CarryOnReferences> </ns3:BagDetailAssociation> </ns3:FlightSegmentReference> </ns3:ApplicableFlight> <ns3:OtherAssociation> <ns3:OtherAssociation> <ns3:Type>NBSOW</ns3:Type> <ns3:ReferenceValue>PL1</ns3:ReferenceValue> </ns3:OtherAssociation> </ns3:OtherAssociation> </ns3:Associations> <ns3:Associations> <ns3:AssociatedTraveler> <ns3:TravelerReferences>SH2</ns3:TravelerReferences> </ns3:AssociatedTraveler> <ns3:ApplicableFlight> <ns3:OriginDestinationReferences>OD7</ns3:OriginDestinationReferences> <ns3:FlightSegmentReference ref="SEG7"> <ns3:Cabin> <ns3:CabinDesignator>Y</ns3:CabinDesignator> <ns3:MarketingName>BASIC ECONOMY</ns3:MarketingName> </ns3:Cabin> </ns3:FlightSegmentReference> <ns3:FlightSegmentReference ref="SEG7"> <ns3:ClassOfService> <ns3:Code SeatsLeft="9">N</ns3:Code> <ns3:MarketingName>NBSOW</ns3:MarketingName> </ns3:ClassOfService> <ns3:BagDetailAssociation> <ns3:CheckedBagReferences>BG1</ns3:CheckedBagReferences> <ns3:CarryOnReferences>CO1</ns3:CarryOnReferences> </ns3:BagDetailAssociation> </ns3:FlightSegmentReference> </ns3:ApplicableFlight> <ns3:OtherAssociation> <ns3:OtherAssociation> <ns3:Type>NBSOW</ns3:Type> <ns3:ReferenceValue>PL1</ns3:ReferenceValue> </ns3:OtherAssociation> </ns3:OtherAssociation> </ns3:Associations> </ns3:RequestedDate> <ns3:FareDetail> <ns3:FareComponent refs="SH1" ObjectKey="FC55"> <ns3:Parameters Quantity="1"/> <ns3:PriceBreakdown> <ns3:Price> <ns3:BaseAmount Code="RUB">4370</ns3:BaseAmount> <ns3:Taxes> <ns3:Total Code="RUB">412</ns3:Total> <ns3:Breakdown> <ns3:Tax> <ns3:Amount Code="RUB">180</ns3:Amount> <ns3:TaxCode>RI</ns3:TaxCode> <ns3:Description>Terminal Use Charge</ns3:Description> </ns3:Tax> <ns3:Tax> <ns3:Amount Code="RUB">232</ns3:Amount> <ns3:TaxCode>RI</ns3:TaxCode> <ns3:Description>Terminal Use Charge</ns3:Description> </ns3:Tax> </ns3:Breakdown> </ns3:Taxes> </ns3:Price> </ns3:PriceBreakdown> </ns3:FareComponent> <ns3:FareComponent refs="SH2" ObjectKey="FC56"> <ns3:Parameters Quantity="1"/> <ns3:PriceBreakdown> <ns3:Price> <ns3:BaseAmount Code="RUB">3715</ns3:BaseAmount> <ns3:Taxes> <ns3:Total Code="RUB">206</ns3:Total> <ns3:Breakdown> <ns3:Tax> <ns3:Amount Code="RUB">90</ns3:Amount> <ns3:TaxCode>RI</ns3:TaxCode> <ns3:Description>Terminal Use Charge</ns3:Description> </ns3:Tax> <ns3:Tax> <ns3:Amount Code="RUB">116</ns3:Amount> <ns3:TaxCode>RI</ns3:TaxCode> <ns3:Description>Terminal Use Charge</ns3:Description> </ns3:Tax> </ns3:Breakdown> </ns3:Taxes> </ns3:Price> </ns3:PriceBreakdown> </ns3:FareComponent> </ns3:FareDetail> </ns3:OfferPrice> </ns3:PricedOffer> </ns3:AirlineOffer> <ns3:AirlineOffer> <ns3:OfferID Owner="S7">OF2</ns3:OfferID> <ns3:TotalPrice> <ns3:DetailCurrencyPrice> <ns3:Total Code="RUB">18294</ns3:Total> <ns3:Details> <ns3:Detail> <ns3:SubTotal Code="RUB">17470</ns3:SubTotal> <ns3:Application>Fare</ns3:Application> </ns3:Detail> </ns3:Details> <ns3:Taxes> <ns3:Total Code="RUB">824</ns3:Total> </ns3:Taxes> </ns3:DetailCurrencyPrice> </ns3:TotalPrice> <ns3:Disclosure> <ns3:Description> <ns3:Text>STANDARD ECONOMY</ns3:Text> </ns3:Description> </ns3:Disclosure> <ns3:PricedOffer> <ns3:OfferPrice OfferItemID="OF2SL1"> <ns3:RequestedDate> <ns3:PriceDetail> <ns3:TotalAmount> <ns3:DetailCurrencyPrice> <ns3:Total Code="RUB">18294</ns3:Total> <ns3:Taxes> <ns3:Total Code="RUB">824</ns3:Total> </ns3:Taxes> </ns3:DetailCurrencyPrice> </ns3:TotalAmount> <ns3:BaseAmount Code="RUB">17470</ns3:BaseAmount> </ns3:PriceDetail> <ns3:Associations> <ns3:OtherAssociation> <ns3:OtherAssociation> <ns3:Type>SEG7 DME-LED</ns3:Type> <ns3:ReferenceValue>Meal_O</ns3:ReferenceValue> </ns3:OtherAssociation> </ns3:OtherAssociation> </ns3:Associations> <ns3:Associations> <ns3:AssociatedTraveler> <ns3:TravelerReferences>SH1</ns3:TravelerReferences> </ns3:AssociatedTraveler> <ns3:ApplicableFlight> <ns3:OriginDestinationReferences>OD7</ns3:OriginDestinationReferences> <ns3:FlightSegmentReference ref="SEG7"> <ns3:Cabin> <ns3:CabinDesignator>Y</ns3:CabinDesignator> <ns3:MarketingName>STANDARD ECONOMY</ns3:MarketingName> </ns3:Cabin> </ns3:FlightSegmentReference> <ns3:FlightSegmentReference ref="SEG7"> <ns3:ClassOfService> <ns3:Code SeatsLeft="9">N</ns3:Code> <ns3:MarketingName>NSTOW</ns3:MarketingName> </ns3:ClassOfService> <ns3:BagDetailAssociation> <ns3:CheckedBagReferences>BG2</ns3:CheckedBagReferences> <ns3:CarryOnReferences>CO1</ns3:CarryOnReferences> </ns3:BagDetailAssociation> </ns3:FlightSegmentReference> </ns3:ApplicableFlight> <ns3:OtherAssociation> <ns3:OtherAssociation> <ns3:Type>NSTOW</ns3:Type> <ns3:ReferenceValue>PL2</ns3:ReferenceValue> </ns3:OtherAssociation> </ns3:OtherAssociation> </ns3:Associations> <ns3:Associations> <ns3:AssociatedTraveler> <ns3:TravelerReferences>SH2</ns3:TravelerReferences> </ns3:AssociatedTraveler> <ns3:ApplicableFlight> <ns3:OriginDestinationReferences>OD7</ns3:OriginDestinationReferences> <ns3:FlightSegmentReference ref="SEG7"> <ns3:Cabin> <ns3:CabinDesignator>Y</ns3:CabinDesignator> <ns3:MarketingName>STANDARD ECONOMY</ns3:MarketingName> </ns3:Cabin> </ns3:FlightSegmentReference> <ns3:FlightSegmentReference ref="SEG7"> <ns3:ClassOfService> <ns3:Code SeatsLeft="9">N</ns3:Code> <ns3:MarketingName>NSTOW</ns3:MarketingName> </ns3:ClassOfService> <ns3:BagDetailAssociation> <ns3:CheckedBagReferences>BG2</ns3:CheckedBagReferences> <ns3:CarryOnReferences>CO1</ns3:CarryOnReferences> </ns3:BagDetailAssociation> </ns3:FlightSegmentReference> </ns3:ApplicableFlight> <ns3:OtherAssociation> <ns3:OtherAssociation> <ns3:Type>NSTOW</ns3:Type> <ns3:ReferenceValue>PL2</ns3:ReferenceValue> </ns3:OtherAssociation> </ns3:OtherAssociation> </ns3:Associations> </ns3:RequestedDate> <ns3:FareDetail> <ns3:FareComponent refs="SH1" ObjectKey="FC57"> <ns3:Parameters Quantity="1"/> <ns3:PriceBreakdown> <ns3:Price> <ns3:BaseAmount Code="RUB">6470</ns3:BaseAmount> <ns3:Taxes> <ns3:Total Code="RUB">412</ns3:Total> <ns3:Breakdown> <ns3:Tax> <ns3:Amount Code="RUB">180</ns3:Amount> <ns3:TaxCode>RI</ns3:TaxCode> <ns3:Description>Terminal Use Charge</ns3:Description> </ns3:Tax> <ns3:Tax> <ns3:Amount Code="RUB">232</ns3:Amount> <ns3:TaxCode>RI</ns3:TaxCode> <ns3:Description>Terminal Use Charge</ns3:Description> </ns3:Tax> </ns3:Breakdown> </ns3:Taxes> </ns3:Price> </ns3:PriceBreakdown> </ns3:FareComponent> <ns3:FareComponent refs="SH2" ObjectKey="FC58"> <ns3:Parameters Quantity="1"/> <ns3:PriceBreakdown> <ns3:Price> <ns3:BaseAmount Code="RUB">5500</ns3:BaseAmount> <ns3:Taxes> <ns3:Total Code="RUB">206</ns3:Total> <ns3:Breakdown> <ns3:Tax> <ns3:Amount Code="RUB">90</ns3:Amount> <ns3:TaxCode>RI</ns3:TaxCode> <ns3:Description>Terminal Use Charge</ns3:Description> </ns3:Tax> <ns3:Tax> <ns3:Amount Code="RUB">116</ns3:Amount> <ns3:TaxCode>RI</ns3:TaxCode> <ns3:Description>Terminal Use Charge</ns3:Description> </ns3:Tax> </ns3:Breakdown> </ns3:Taxes> </ns3:Price> </ns3:PriceBreakdown> </ns3:FareComponent> </ns3:FareDetail> </ns3:OfferPrice> </ns3:PricedOffer> </ns3:AirlineOffer> <ns3:AirlineOffer> <ns3:OfferID Owner="S7">OF3</ns3:OfferID> <ns3:TotalPrice> <ns3:DetailCurrencyPrice> <ns3:Total Code="RUB">35984</ns3:Total> <ns3:Details> <ns3:Detail> <ns3:SubTotal Code="RUB">35160</ns3:SubTotal> <ns3:Application>Fare</ns3:Application> </ns3:Detail> </ns3:Details> <ns3:Taxes> <ns3:Total Code="RUB">824</ns3:Total> </ns3:Taxes> </ns3:DetailCurrencyPrice> </ns3:TotalPrice> <ns3:Disclosure> <ns3:Description> <ns3:Text>PLUS ECONOMY</ns3:Text> </ns3:Description> </ns3:Disclosure> <ns3:PricedOffer> <ns3:OfferPrice OfferItemID="OF3SL1"> <ns3:RequestedDate> <ns3:PriceDetail> <ns3:TotalAmount> <ns3:DetailCurrencyPrice> <ns3:Total Code="RUB">35984</ns3:Total> <ns3:Taxes> <ns3:Total Code="RUB">824</ns3:Total> </ns3:Taxes> </ns3:DetailCurrencyPrice> </ns3:TotalAmount> <ns3:BaseAmount Code="RUB">35160</ns3:BaseAmount> </ns3:PriceDetail> <ns3:Associations> <ns3:OtherAssociation> <ns3:OtherAssociation> <ns3:Type>SEG7 DME-LED</ns3:Type> <ns3:ReferenceValue>Meal_O</ns3:ReferenceValue> </ns3:OtherAssociation> </ns3:OtherAssociation> </ns3:Associations> <ns3:Associations> <ns3:AssociatedTraveler> <ns3:TravelerReferences>SH1</ns3:TravelerReferences> </ns3:AssociatedTraveler> <ns3:ApplicableFlight> <ns3:OriginDestinationReferences>OD7</ns3:OriginDestinationReferences> <ns3:FlightSegmentReference ref="SEG7"> <ns3:Cabin> <ns3:CabinDesignator>Y</ns3:CabinDesignator> <ns3:MarketingName>PLUS ECONOMY</ns3:MarketingName> </ns3:Cabin> </ns3:FlightSegmentReference> <ns3:FlightSegmentReference ref="SEG7"> <ns3:ClassOfService> <ns3:Code SeatsLeft="9">N</ns3:Code> <ns3:MarketingName>NPLOW</ns3:MarketingName> </ns3:ClassOfService> <ns3:BagDetailAssociation> <ns3:CheckedBagReferences>BG3</ns3:CheckedBagReferences> <ns3:CarryOnReferences>CO1</ns3:CarryOnReferences> </ns3:BagDetailAssociation> </ns3:FlightSegmentReference> </ns3:ApplicableFlight> </ns3:Associations> <ns3:Associations> <ns3:AssociatedTraveler> <ns3:TravelerReferences>SH2</ns3:TravelerReferences> </ns3:AssociatedTraveler> <ns3:ApplicableFlight> <ns3:OriginDestinationReferences>OD7</ns3:OriginDestinationReferences> <ns3:FlightSegmentReference ref="SEG7"> <ns3:Cabin> <ns3:CabinDesignator>Y</ns3:CabinDesignator> <ns3:MarketingName>PLUS ECONOMY</ns3:MarketingName> </ns3:Cabin> </ns3:FlightSegmentReference> <ns3:FlightSegmentReference ref="SEG7"> <ns3:ClassOfService> <ns3:Code SeatsLeft="9">N</ns3:Code> <ns3:MarketingName>NPLOW</ns3:MarketingName> </ns3:ClassOfService> <ns3:BagDetailAssociation> <ns3:CheckedBagReferences>BG3</ns3:CheckedBagReferences> <ns3:CarryOnReferences>CO1</ns3:CarryOnReferences> </ns3:BagDetailAssociation> </ns3:FlightSegmentReference> </ns3:ApplicableFlight> </ns3:Associations> </ns3:RequestedDate> <ns3:FareDetail> <ns3:FareComponent refs="SH1" ObjectKey="FC59"> <ns3:Parameters Quantity="1"/> <ns3:PriceBreakdown> <ns3:Price> <ns3:BaseAmount Code="RUB">13020</ns3:BaseAmount> <ns3:Taxes> <ns3:Total Code="RUB">412</ns3:Total> <ns3:Breakdown> <ns3:Tax> <ns3:Amount Code="RUB">180</ns3:Amount> <ns3:TaxCode>RI</ns3:TaxCode> <ns3:Description>Terminal Use Charge</ns3:Description> </ns3:Tax> <ns3:Tax> <ns3:Amount Code="RUB">232</ns3:Amount> <ns3:TaxCode>RI</ns3:TaxCode> <ns3:Description>Terminal Use Charge</ns3:Description> </ns3:Tax> </ns3:Breakdown> </ns3:Taxes> </ns3:Price> </ns3:PriceBreakdown> </ns3:FareComponent> <ns3:FareComponent refs="SH2" ObjectKey="FC60"> <ns3:Parameters Quantity="1"/> <ns3:PriceBreakdown> <ns3:Price> <ns3:BaseAmount Code="RUB">11070</ns3:BaseAmount> <ns3:Taxes> <ns3:Total Code="RUB">206</ns3:Total> <ns3:Breakdown> <ns3:Tax> <ns3:Amount Code="RUB">90</ns3:Amount> <ns3:TaxCode>RI</ns3:TaxCode> <ns3:Description>Terminal Use Charge</ns3:Description> </ns3:Tax> <ns3:Tax> <ns3:Amount Code="RUB">116</ns3:Amount> <ns3:TaxCode>RI</ns3:TaxCode> <ns3:Description>Terminal Use Charge</ns3:Description> </ns3:Tax> </ns3:Breakdown> </ns3:Taxes> </ns3:Price> </ns3:PriceBreakdown> </ns3:FareComponent> </ns3:FareDetail> </ns3:OfferPrice> </ns3:PricedOffer> </ns3:AirlineOffer> </ns3:AirlineOffers> </ns3:OffersGroup> <ns3:DataLists> <ns3:AnonymousTravelerList> <ns3:AnonymousTraveler ObjectKey="SH1"> <ns3:PTC Quantity="1">ADT</ns3:PTC> </ns3:AnonymousTraveler> <ns3:AnonymousTraveler ObjectKey="SH2"> <ns3:PTC Quantity="2">CHD</ns3:PTC> </ns3:AnonymousTraveler> </ns3:AnonymousTravelerList> <ns3:CarryOnAllowanceList> <ns3:CarryOnAllowance ListKey="CO1"> <ns3:AllowanceDescription> <ns3:ApplicableParty>Traveler</ns3:ApplicableParty> <ns3:Descriptions> <ns3:Description> <ns3:Text>10KG</ns3:Text> </ns3:Description> </ns3:Descriptions> </ns3:AllowanceDescription> </ns3:CarryOnAllowance> <ns3:CarryOnAllowance ListKey="CO2"> <ns3:AllowanceDescription> <ns3:ApplicableParty>Traveler</ns3:ApplicableParty> <ns3:Descriptions> <ns3:Description> <ns3:Text>15KG</ns3:Text> </ns3:Description> </ns3:Descriptions> </ns3:AllowanceDescription> </ns3:CarryOnAllowance> </ns3:CarryOnAllowanceList> <ns3:CheckedBagAllowanceList> <ns3:CheckedBagAllowance ListKey="BG1"> <ns3:AllowanceDescription> <ns3:ApplicableParty>Traveler</ns3:ApplicableParty> <ns3:ApplicableBag>NO</ns3:ApplicableBag> <ns3:Descriptions> <ns3:Description/> </ns3:Descriptions> </ns3:AllowanceDescription> </ns3:CheckedBagAllowance> <ns3:CheckedBagAllowance ListKey="BG2"> <ns3:AllowanceDescription> <ns3:ApplicableParty>Traveler</ns3:ApplicableParty> <ns3:ApplicableBag>1PC</ns3:ApplicableBag> <ns3:Descriptions> <ns3:Description> <ns3:Text>temporarily unknown service</ns3:Text> </ns3:Description> <ns3:Description> <ns3:Text>Fishing Equipment</ns3:Text> </ns3:Description> <ns3:Description> <ns3:Text>Golf Equipment</ns3:Text> </ns3:Description> <ns3:Description> <ns3:Text>Skiing Equipment</ns3:Text> </ns3:Description> <ns3:Description> <ns3:Text>Bicycle</ns3:Text> </ns3:Description> <ns3:Description> <ns3:Text>Hockey Equipment</ns3:Text> </ns3:Description> <ns3:Description> <ns3:Text>Stroller/Pushchair</ns3:Text> </ns3:Description> <ns3:Description> <ns3:Text>Sporting Equipment</ns3:Text> </ns3:Description> <ns3:Description> <ns3:Text>23 KG</ns3:Text> </ns3:Description> <ns3:Description> <ns3:Text>Up to 50 lb/23 kg</ns3:Text> </ns3:Description> <ns3:Description> <ns3:Text>Max Length Up to 79 in/200 cm</ns3:Text> </ns3:Description> </ns3:Descriptions> </ns3:AllowanceDescription> </ns3:CheckedBagAllowance> <ns3:CheckedBagAllowance ListKey="BG3"> <ns3:AllowanceDescription> <ns3:ApplicableParty>Traveler</ns3:ApplicableParty> <ns3:ApplicableBag>1PC</ns3:ApplicableBag> <ns3:Descriptions> <ns3:Description> <ns3:Text>temporarily unknown service</ns3:Text> </ns3:Description> <ns3:Description> <ns3:Text>Fishing Equipment</ns3:Text> </ns3:Description> <ns3:Description> <ns3:Text>Golf Equipment</ns3:Text> </ns3:Description> <ns3:Description> <ns3:Text>Skiing Equipment</ns3:Text> </ns3:Description> <ns3:Description> <ns3:Text>Bicycle</ns3:Text> </ns3:Description> <ns3:Description> <ns3:Text>Hockey Equipment</ns3:Text> </ns3:Description> <ns3:Description> <ns3:Text>Stroller/Pushchair</ns3:Text> </ns3:Description> <ns3:Description> <ns3:Text>Sporting Equipment</ns3:Text> </ns3:Description> <ns3:Description> <ns3:Text>32 KG</ns3:Text> </ns3:Description> <ns3:Description> <ns3:Text>Up to 70 lb/32 kg</ns3:Text> </ns3:Description> <ns3:Description> <ns3:Text>Up to 80 li/203 lcm</ns3:Text> </ns3:Description> </ns3:Descriptions> </ns3:AllowanceDescription> </ns3:CheckedBagAllowance> <ns3:CheckedBagAllowance ListKey="BG4"> <ns3:AllowanceDescription> <ns3:ApplicableParty>Traveler</ns3:ApplicableParty> <ns3:ApplicableBag>2PC</ns3:ApplicableBag> <ns3:Descriptions> <ns3:Description> <ns3:Text>temporarily unknown service</ns3:Text> </ns3:Description> <ns3:Description> <ns3:Text>Fishing Equipment</ns3:Text> </ns3:Description> <ns3:Description> <ns3:Text>Golf Equipment</ns3:Text> </ns3:Description> <ns3:Description> <ns3:Text>Skiing Equipment</ns3:Text> </ns3:Description> <ns3:Description> <ns3:Text>Bicycle</ns3:Text> </ns3:Description> <ns3:Description> <ns3:Text>Hockey Equipment</ns3:Text> </ns3:Description> <ns3:Description> <ns3:Text>Stroller/Pushchair</ns3:Text> </ns3:Description> <ns3:Description> <ns3:Text>Sporting Equipment</ns3:Text> </ns3:Description> <ns3:Description> <ns3:Text>32 KG</ns3:Text> </ns3:Description> <ns3:Description> <ns3:Text>Up to 70 lb/32 kg</ns3:Text> </ns3:Description> <ns3:Description> <ns3:Text>Up to 80 li/203 lcm</ns3:Text> </ns3:Description> </ns3:Descriptions> </ns3:AllowanceDescription> </ns3:CheckedBagAllowance> </ns3:CheckedBagAllowanceList> <ns3:FlightSegmentList> <ns3:FlightSegment SegmentKey="SEG1"> <ns3:Departure> <ns3:AirportCode>DME</ns3:AirportCode> <ns3:Date>2023-09-20</ns3:Date> <ns3:Time>01:30</ns3:Time> </ns3:Departure> <ns3:Arrival> <ns3:AirportCode>LED</ns3:AirportCode> <ns3:Date>2023-09-20</ns3:Date> <ns3:Time>03:05</ns3:Time> <ns3:Terminal> <ns3:Name>1</ns3:Name> </ns3:Terminal> </ns3:Arrival> <ns3:MarketingCarrier> <ns3:AirlineID>S7</ns3:AirlineID> <ns3:FlightNumber>1025</ns3:FlightNumber> </ns3:MarketingCarrier> <ns3:OperatingCarrier> <ns3:AirlineID>XT</ns3:AirlineID> <ns3:FlightNumber>1025</ns3:FlightNumber> </ns3:OperatingCarrier> <ns3:Equipment refs="ML1"> <ns3:AircraftCode>319</ns3:AircraftCode> <ns3:AirlineEquipCode>Airbus A319</ns3:AirlineEquipCode> </ns3:Equipment> <ns3:FlightDetail> <ns3:FlightDistance> <ns3:Value>396</ns3:Value> <ns3:UOM>Miles</ns3:UOM> </ns3:FlightDistance> <ns3:FlightDuration> <ns3:Value>PT1H35M</ns3:Value> </ns3:FlightDuration> </ns3:FlightDetail> </ns3:FlightSegment> <ns3:FlightSegment SegmentKey="SEG2"> <ns3:Departure> <ns3:AirportCode>DME</ns3:AirportCode> <ns3:Date>2023-09-20</ns3:Date> <ns3:Time>07:30</ns3:Time> </ns3:Departure> <ns3:Arrival> <ns3:AirportCode>LED</ns3:AirportCode> <ns3:Date>2023-09-20</ns3:Date> <ns3:Time>09:05</ns3:Time> <ns3:Terminal> <ns3:Name>1</ns3:Name> </ns3:Terminal> </ns3:Arrival> <ns3:MarketingCarrier> <ns3:AirlineID>S7</ns3:AirlineID> <ns3:FlightNumber>1005</ns3:FlightNumber> </ns3:MarketingCarrier> <ns3:OperatingCarrier> <ns3:AirlineID>S7</ns3:AirlineID> <ns3:FlightNumber>1005</ns3:FlightNumber> </ns3:OperatingCarrier> <ns3:Equipment refs="ML2"> <ns3:AircraftCode>32A</ns3:AircraftCode> <ns3:AirlineEquipCode>Airbus A320</ns3:AirlineEquipCode> </ns3:Equipment> <ns3:FlightDetail> <ns3:FlightDistance> <ns3:Value>396</ns3:Value> <ns3:UOM>Miles</ns3:UOM> </ns3:FlightDistance> <ns3:FlightDuration> <ns3:Value>PT1H35M</ns3:Value> </ns3:FlightDuration> </ns3:FlightDetail> </ns3:FlightSegment> <ns3:FlightSegment SegmentKey="SEG3"> <ns3:Departure> <ns3:AirportCode>DME</ns3:AirportCode> <ns3:Date>2023-09-20</ns3:Date> <ns3:Time>09:50</ns3:Time> </ns3:Departure> <ns3:Arrival> <ns3:AirportCode>LED</ns3:AirportCode> <ns3:Date>2023-09-20</ns3:Date> <ns3:Time>11:25</ns3:Time> <ns3:Terminal> <ns3:Name>1</ns3:Name> </ns3:Terminal> </ns3:Arrival> <ns3:MarketingCarrier> <ns3:AirlineID>S7</ns3:AirlineID> <ns3:FlightNumber>1027</ns3:FlightNumber> </ns3:MarketingCarrier> <ns3:OperatingCarrier> <ns3:AirlineID>XT</ns3:AirlineID> <ns3:FlightNumber>1027</ns3:FlightNumber> </ns3:OperatingCarrier> <ns3:Equipment refs="ML1"> <ns3:AircraftCode>319</ns3:AircraftCode> <ns3:AirlineEquipCode>Airbus A319</ns3:AirlineEquipCode> </ns3:Equipment> <ns3:FlightDetail> <ns3:FlightDistance> <ns3:Value>396</ns3:Value> <ns3:UOM>Miles</ns3:UOM> </ns3:FlightDistance> <ns3:FlightDuration> <ns3:Value>PT1H35M</ns3:Value> </ns3:FlightDuration> </ns3:FlightDetail> </ns3:FlightSegment> <ns3:FlightSegment SegmentKey="SEG4"> <ns3:Departure> <ns3:AirportCode>DME</ns3:AirportCode> <ns3:Date>2023-09-20</ns3:Date> <ns3:Time>12:40</ns3:Time> </ns3:Departure> <ns3:Arrival> <ns3:AirportCode>LED</ns3:AirportCode> <ns3:Date>2023-09-20</ns3:Date> <ns3:Time>14:15</ns3:Time> <ns3:Terminal> <ns3:Name>1</ns3:Name> </ns3:Terminal> </ns3:Arrival> <ns3:MarketingCarrier> <ns3:AirlineID>S7</ns3:AirlineID> <ns3:FlightNumber>1011</ns3:FlightNumber> </ns3:MarketingCarrier> <ns3:OperatingCarrier> <ns3:AirlineID>S7</ns3:AirlineID> <ns3:FlightNumber>1011</ns3:FlightNumber> </ns3:OperatingCarrier> <ns3:Equipment refs="ML3"> <ns3:AircraftCode>321</ns3:AircraftCode> <ns3:AirlineEquipCode>Airbus A321</ns3:AirlineEquipCode> </ns3:Equipment> <ns3:FlightDetail> <ns3:FlightDistance> <ns3:Value>396</ns3:Value> <ns3:UOM>Miles</ns3:UOM> </ns3:FlightDistance> <ns3:FlightDuration> <ns3:Value>PT1H35M</ns3:Value> </ns3:FlightDuration> </ns3:FlightDetail> </ns3:FlightSegment> <ns3:FlightSegment SegmentKey="SEG5"> <ns3:Departure> <ns3:AirportCode>DME</ns3:AirportCode> <ns3:Date>2023-09-20</ns3:Date> <ns3:Time>14:55</ns3:Time> </ns3:Departure> <ns3:Arrival> <ns3:AirportCode>LED</ns3:AirportCode> <ns3:Date>2023-09-20</ns3:Date> <ns3:Time>16:30</ns3:Time> <ns3:Terminal> <ns3:Name>1</ns3:Name> </ns3:Terminal> </ns3:Arrival> <ns3:MarketingCarrier> <ns3:AirlineID>S7</ns3:AirlineID> <ns3:FlightNumber>1013</ns3:FlightNumber> </ns3:MarketingCarrier> <ns3:OperatingCarrier> <ns3:AirlineID>S7</ns3:AirlineID> <ns3:FlightNumber>1013</ns3:FlightNumber> </ns3:OperatingCarrier> <ns3:Equipment refs="ML4"> <ns3:AircraftCode>32N</ns3:AircraftCode> <ns3:AirlineEquipCode>Airbus A320 Neo</ns3:AirlineEquipCode> </ns3:Equipment> <ns3:FlightDetail> <ns3:FlightDistance> <ns3:Value>396</ns3:Value> <ns3:UOM>Miles</ns3:UOM> </ns3:FlightDistance> <ns3:FlightDuration> <ns3:Value>PT1H35M</ns3:Value> </ns3:FlightDuration> </ns3:FlightDetail> </ns3:FlightSegment> <ns3:FlightSegment SegmentKey="SEG6"> <ns3:Departure> <ns3:AirportCode>DME</ns3:AirportCode> <ns3:Date>2023-09-20</ns3:Date> <ns3:Time>17:55</ns3:Time> </ns3:Departure> <ns3:Arrival> <ns3:AirportCode>LED</ns3:AirportCode> <ns3:Date>2023-09-20</ns3:Date> <ns3:Time>19:30</ns3:Time> <ns3:Terminal> <ns3:Name>1</ns3:Name> </ns3:Terminal> </ns3:Arrival> <ns3:MarketingCarrier> <ns3:AirlineID>S7</ns3:AirlineID> <ns3:FlightNumber>1015</ns3:FlightNumber> </ns3:MarketingCarrier> <ns3:OperatingCarrier> <ns3:AirlineID>S7</ns3:AirlineID> <ns3:FlightNumber>1015</ns3:FlightNumber> </ns3:OperatingCarrier> <ns3:Equipment refs="ML3"> <ns3:AircraftCode>321</ns3:AircraftCode> <ns3:AirlineEquipCode>Airbus A321</ns3:AirlineEquipCode> </ns3:Equipment> <ns3:FlightDetail> <ns3:FlightDistance> <ns3:Value>396</ns3:Value> <ns3:UOM>Miles</ns3:UOM> </ns3:FlightDistance> <ns3:FlightDuration> <ns3:Value>PT1H35M</ns3:Value> </ns3:FlightDuration> </ns3:FlightDetail> </ns3:FlightSegment> <ns3:FlightSegment SegmentKey="SEG7"> <ns3:Departure> <ns3:AirportCode>DME</ns3:AirportCode> <ns3:Date>2023-09-20</ns3:Date> <ns3:Time>19:55</ns3:Time> </ns3:Departure> <ns3:Arrival> <ns3:AirportCode>LED</ns3:AirportCode> <ns3:Date>2023-09-20</ns3:Date> <ns3:Time>21:30</ns3:Time> <ns3:Terminal> <ns3:Name>1</ns3:Name> </ns3:Terminal> </ns3:Arrival> <ns3:MarketingCarrier> <ns3:AirlineID>S7</ns3:AirlineID> <ns3:FlightNumber>1019</ns3:FlightNumber> </ns3:MarketingCarrier> <ns3:OperatingCarrier> <ns3:AirlineID>XT</ns3:AirlineID> <ns3:FlightNumber>1019</ns3:FlightNumber> </ns3:OperatingCarrier> <ns3:Equipment refs="ML1"> <ns3:AircraftCode>319</ns3:AircraftCode> <ns3:AirlineEquipCode>Airbus A319</ns3:AirlineEquipCode> </ns3:Equipment> <ns3:FlightDetail> <ns3:FlightDistance> <ns3:Value>396</ns3:Value> <ns3:UOM>Miles</ns3:UOM> </ns3:FlightDistance> <ns3:FlightDuration> <ns3:Value>PT1H35M</ns3:Value> </ns3:FlightDuration> </ns3:FlightDetail> </ns3:FlightSegment> </ns3:FlightSegmentList> <ns3:OriginDestinationList> <ns3:OriginDestination OriginDestinationKey="OD1"> <ns3:DepartureCode>DME</ns3:DepartureCode> <ns3:ArrivalCode>LED</ns3:ArrivalCode> <ns3:FlightReferences>SEG1</ns3:FlightReferences> </ns3:OriginDestination> <ns3:OriginDestination OriginDestinationKey="OD2"> <ns3:DepartureCode>DME</ns3:DepartureCode> <ns3:ArrivalCode>LED</ns3:ArrivalCode> <ns3:FlightReferences>SEG2</ns3:FlightReferences> </ns3:OriginDestination> <ns3:OriginDestination OriginDestinationKey="OD3"> <ns3:DepartureCode>DME</ns3:DepartureCode> <ns3:ArrivalCode>LED</ns3:ArrivalCode> <ns3:FlightReferences>SEG3</ns3:FlightReferences> </ns3:OriginDestination> <ns3:OriginDestination OriginDestinationKey="OD4"> <ns3:DepartureCode>DME</ns3:DepartureCode> <ns3:ArrivalCode>LED</ns3:ArrivalCode> <ns3:FlightReferences>SEG4</ns3:FlightReferences> </ns3:OriginDestination> <ns3:OriginDestination OriginDestinationKey="OD5"> <ns3:DepartureCode>DME</ns3:DepartureCode> <ns3:ArrivalCode>LED</ns3:ArrivalCode> <ns3:FlightReferences>SEG5</ns3:FlightReferences> </ns3:OriginDestination> <ns3:OriginDestination OriginDestinationKey="OD6"> <ns3:DepartureCode>DME</ns3:DepartureCode> <ns3:ArrivalCode>LED</ns3:ArrivalCode> <ns3:FlightReferences>SEG6</ns3:FlightReferences> </ns3:OriginDestination> <ns3:OriginDestination OriginDestinationKey="OD7"> <ns3:DepartureCode>DME</ns3:DepartureCode> <ns3:ArrivalCode>LED</ns3:ArrivalCode> <ns3:FlightReferences>SEG7</ns3:FlightReferences> </ns3:OriginDestination> </ns3:OriginDestinationList> <ns3:MediaList> <ns3:Media ListKey="ML2"> <ns3:MediaLink>https://static.s7cdn.online/hermes/IBE/image_airplane/a320-neo.png</ns3:MediaLink> </ns3:Media> <ns3:Media ListKey="ML3"> <ns3:MediaLink>https://static.s7cdn.online/hermes/IBE/image_airplane/a321-neo.png</ns3:MediaLink> </ns3:Media> <ns3:Media ListKey="ML1"> <ns3:MediaLink>https://static.s7cdn.online/hermes/IBE/image_airplane/a319.png</ns3:MediaLink> </ns3:Media> <ns3:Media ListKey="ML4"> <ns3:MediaLink>https://static.s7cdn.online/hermes/IBE/image_airplane/a320-neo.png</ns3:MediaLink> </ns3:Media> </ns3:MediaList> <ns3:PenaltyList> <ns3:Penalty ObjectKey="PL1"> <ns3:Details> <ns3:Detail> <ns3:Type>BEFORE-DEPARTURE</ns3:Type> <ns3:Application> <ns3:Code>changePenalty</ns3:Code> </ns3:Application> <ns3:Amounts> <ns3:Amount> <ns3:CurrencyAmountValue Code="RUB">3500</ns3:CurrencyAmountValue> <ns3:AmountApplication>MinimumPenaltyAmount</ns3:AmountApplication> </ns3:Amount> <ns3:Amount> <ns3:CurrencyAmountValue Code="RUB">3500</ns3:CurrencyAmountValue> <ns3:AmountApplication>MaximumPenaltyAmount</ns3:AmountApplication> </ns3:Amount> </ns3:Amounts> </ns3:Detail> <ns3:Detail> <ns3:Type>BEFORE-DEPARTURE</ns3:Type> <ns3:Application> <ns3:Code>cancellationAndRefundPenalty</ns3:Code> </ns3:Application> <ns3:Amounts> <ns3:Amount> <ns3:CurrencyAmountValue Code="RUB">5000</ns3:CurrencyAmountValue> <ns3:AmountApplication>MinimumPenaltyAmount</ns3:AmountApplication> </ns3:Amount> <ns3:Amount> <ns3:CurrencyAmountValue Code="RUB">5000</ns3:CurrencyAmountValue> <ns3:AmountApplication>MaximumPenaltyAmount</ns3:AmountApplication> </ns3:Amount> </ns3:Amounts> </ns3:Detail> </ns3:Details> </ns3:Penalty> <ns3:Penalty ObjectKey="PL2"> <ns3:Details> <ns3:Detail> <ns3:Type>BEFORE-DEPARTURE</ns3:Type> <ns3:Application> <ns3:Code>cancellationAndRefundPenalty</ns3:Code> </ns3:Application> <ns3:Amounts> <ns3:Amount> <ns3:CurrencyAmountValue Code="RUB">3000</ns3:CurrencyAmountValue> <ns3:AmountApplication>MinimumPenaltyAmount</ns3:AmountApplication> </ns3:Amount> <ns3:Amount> <ns3:CurrencyAmountValue Code="RUB">3000</ns3:CurrencyAmountValue> <ns3:AmountApplication>MaximumPenaltyAmount</ns3:AmountApplication> </ns3:Amount> </ns3:Amounts> </ns3:Detail> </ns3:Details> </ns3:Penalty> <ns3:Penalty ObjectKey="PL3"> <ns3:Details> <ns3:Detail> <ns3:Type>BEFORE-DEPARTURE</ns3:Type> <ns3:Application> <ns3:Code>changePenalty</ns3:Code> </ns3:Application> <ns3:Amounts> <ns3:Amount> <ns3:CurrencyAmountValue Code="RUB">3500</ns3:CurrencyAmountValue> <ns3:AmountApplication>MinimumPenaltyAmount</ns3:AmountApplication> </ns3:Amount> <ns3:Amount> <ns3:CurrencyAmountValue Code="RUB">3500</ns3:CurrencyAmountValue> <ns3:AmountApplication>MaximumPenaltyAmount</ns3:AmountApplication> </ns3:Amount> </ns3:Amounts> </ns3:Detail> </ns3:Details> </ns3:Penalty> <ns3:Penalty ObjectKey="PL4"> <ns3:Details> <ns3:Detail> <ns3:Type>BEFORE-DEPARTURE</ns3:Type> <ns3:Application> <ns3:Code>changePenalty</ns3:Code> </ns3:Application> <ns3:Amounts> <ns3:Amount> <ns3:CurrencyAmountValue Code="RUB">2000</ns3:CurrencyAmountValue> <ns3:AmountApplication>MinimumPenaltyAmount</ns3:AmountApplication> </ns3:Amount> <ns3:Amount> <ns3:CurrencyAmountValue Code="RUB">2000</ns3:CurrencyAmountValue> <ns3:AmountApplication>MaximumPenaltyAmount</ns3:AmountApplication> </ns3:Amount> </ns3:Amounts> </ns3:Detail> <ns3:Detail> <ns3:Type>BEFORE-DEPARTURE</ns3:Type> <ns3:Application> <ns3:Code>cancellationAndRefundPenalty</ns3:Code> </ns3:Application> <ns3:Amounts> <ns3:Amount> <ns3:CurrencyAmountValue Code="RUB">3000</ns3:CurrencyAmountValue> <ns3:AmountApplication>MinimumPenaltyAmount</ns3:AmountApplication> </ns3:Amount> <ns3:Amount> <ns3:CurrencyAmountValue Code="RUB">3000</ns3:CurrencyAmountValue> <ns3:AmountApplication>MaximumPenaltyAmount</ns3:AmountApplication> </ns3:Amount> </ns3:Amounts> </ns3:Detail> </ns3:Details> </ns3:Penalty> </ns3:PenaltyList> <ns3:ServiceList> <ns3:Service ObjectKey="Meal_O"> <ns3:ServiceID Owner="Any">O</ns3:ServiceID> <ns3:Name>Meal</ns3:Name> <ns3:Descriptions> <ns3:Description> <ns3:Text>Cold meal</ns3:Text> </ns3:Description> </ns3:Descriptions> </ns3:Service> <ns3:Service ObjectKey="Meal_H"> <ns3:ServiceID Owner="Any">H</ns3:ServiceID> <ns3:Name>Meal</ns3:Name> <ns3:Descriptions> <ns3:Description> <ns3:Text>Hot meal</ns3:Text> </ns3:Description> </ns3:Descriptions> </ns3:Service> </ns3:ServiceList> </ns3:DataLists> <ns3:Metadata> <ns3:Other> <ns3:OtherMetadata> <ns3:CurrencyMetadatas> <ns3:CurrencyMetadata MetadataKey="RUB"> <ns3:Application>Sale currency</ns3:Application> <ns3:Decimals>2</ns3:Decimals> </ns3:CurrencyMetadata> </ns3:CurrencyMetadatas> </ns3:OtherMetadata> </ns3:Other> </ns3:Metadata> </ns3:AirShoppingRS> </ns2:Body> </ns2:Envelope>
Received solutions divided by fare family and mostly includes 6 sub solutions (BASIC ECONOMY, STANDARD ECONOMY, PLUS ECONOMY, BASIC BUSINESS, STANDARD BUSINESS, PLUS BUSINESS) for each itinerary solution.
Step 2: Book a reservation
S7 Agent executes a book operation with passenger details and itinerary info of chosen solution from search results.
<DetailedFlightItem> block consists of journey information, where each slice is described by the <OriginDestination> element.
<OriginDestination> block takes from appropriate AirShoppingRS
Segments (Flight) must be devided into slices (OriginDestination):
one OriginDestination for One Way trip;
two for Round Trip and more for MultiCity;
for Transfer Trip all segments included in one slice have to be pass in one OriginDestination;
for Transfer Trip segments with stopover between have to be divided into two OriginDestination.
Envelope/Body/AirShoppingRS/DataLists/FlightSegmentList
and <ClassOfService> (RBD) from
Envelope/Body/AirShoppingRS/OffersGroup/AirlineOffers/AirlineOffer/PricedOffer/OfferPrice/RequestedDate/Associations/ApplicableFlight/FlightSegmentReference/ClassOfService/Code
<Envelope xmlns="http://schemas.xmlsoap.org/soap/envelope/"> <Header /> <Body> <OrderCreateRQ Version="" xmlns="http://www.iata.org/IATA/EDIST"> <Document /> <Party> <Sender> <AgentUserSender> <PseudoCity>S7AGN8224</PseudoCity> <AgentUserID>test</AgentUserID> </AgentUserSender> </Sender> </Party> <Query> <Passengers> <Passenger ObjectKey="SH1"> <PTC>ADT</PTC> <Age> <BirthDate>1992-02-27</BirthDate> </Age> <Name> <Surname>Pilatus</Surname> <Given>Pontius</Given> <Title>MR</Title> </Name> <Contacts> <Contact> <EmailContact> <Address>r.tkachuk@s7.ru</Address> </EmailContact> <PhoneContact> <Number CountryCode="7" AreaCode="999">9999999</Number> </PhoneContact> </Contact> </Contacts> <Gender>Male</Gender> <PassengerIDInfo> <PassengerDocument> <Type>PP</Type> <ID>111111111</ID> <BirthCountry>RU</BirthCountry> <DateOfIssue>2012-02-27</DateOfIssue> <DateOfExpiration>2030-02-27</DateOfExpiration> <CountryOfResidence>RU</CountryOfResidence> </PassengerDocument> </PassengerIDInfo> </Passenger> <Passenger ObjectKey="SH2"> <PTC>CHD</PTC> <Age> <BirthDate>2017-02-27</BirthDate> </Age> <Name> <Surname>Pilatus</Surname> <Given>Sevda</Given> <Title>MRS</Title> </Name> <Contacts> <Contact> <EmailContact> <Address>r.tkachuk@s7.ru</Address> </EmailContact> <PhoneContact> <Number CountryCode="7" AreaCode="999">9999999</Number> </PhoneContact> </Contact> </Contacts> <Gender>Female</Gender> <PassengerIDInfo> <PassengerDocument> <Type>PP</Type> <ID>SP222222</ID> <BirthCountry>RU</BirthCountry> <DateOfIssue>2020-02-27</DateOfIssue> <DateOfExpiration>2030-02-27</DateOfExpiration> <CountryOfResidence>RU</CountryOfResidence> </PassengerDocument> </PassengerIDInfo> </Passenger> </Passengers> <OrderItems> <ShoppingResponse> <Owner>S7</Owner> <ResponseID>UNKNOWN</ResponseID> <Offers> <Offer> <OfferID Owner="S7">UNKNOWN</OfferID> <OfferItems> <OfferItem> <OfferItemID Owner="S7">UNKNOWN</OfferItemID> <Passengers> <PassengerReference>SH1 SH2</PassengerReference> </Passengers> <ApplicableFlight> <FlightReferences>FL1</FlightReferences> </ApplicableFlight> </OfferItem> </OfferItems> </Offer> </Offers> </ShoppingResponse> <OfferItem> <OfferItemID Owner="S7">UNKNOWN</OfferItemID> <OfferItemType> <DetailedFlightItem> <OriginDestination> <Flight> <SegmentKey>FL1</SegmentKey> <Departure> <AirportCode>DME</AirportCode> <Date>2023-09-20</Date> <Time>12:40</Time> </Departure> <Arrival> <AirportCode>LED</AirportCode> <Date>2023-09-20</Date> <Time>14:15</Time> </Arrival> <MarketingCarrier> <AirlineID>S7</AirlineID> <FlightNumber>1011</FlightNumber> </MarketingCarrier> <OperatingCarrier> <AirlineID>S7</AirlineID> <FlightNumber>1011</FlightNumber> </OperatingCarrier> <ClassOfService> <Code>N</Code> </ClassOfService> </Flight> </OriginDestination> </DetailedFlightItem> </OfferItemType> </OfferItem> </OrderItems> </Query> </OrderCreateRQ> </Body> </Envelope>
<?xml version="1.0" encoding="UTF-8" standalone="yes"?> <ns2:Envelope xmlns:ns2="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns3="http://www.iata.org/IATA/EDIST"> <ns2:Body> <ns3:OrderViewRS Version=""> <ns3:Document> <ns3:Name>1.0</ns3:Name> </ns3:Document> <ns3:Success/> <ns3:Response> <ns3:OrderViewProcessing/> <ns3:Passengers> <ns3:Passenger ObjectKey="SH4"> <ns3:PTC Quantity="1">ADT</ns3:PTC> <ns3:Age> <ns3:BirthDate>1992-02-27</ns3:BirthDate> </ns3:Age> <ns3:Name> <ns3:Surname>PILATUS</ns3:Surname> <ns3:Given>PONTIUS</ns3:Given> <ns3:Title>MR</ns3:Title> <ns3:Middle/> </ns3:Name> <ns3:Contacts> <ns3:Contact> <ns3:EmailContact> <ns3:Address>r.tkachuk@s7.ru</ns3:Address> </ns3:EmailContact> <ns3:PhoneContact> <ns3:Number CountryCode="7">9999999999</ns3:Number> </ns3:PhoneContact> </ns3:Contact> </ns3:Contacts> <ns3:Gender>Male</ns3:Gender> <ns3:PassengerIDInfo> <ns3:PassengerDocument> <ns3:Type>PP</ns3:Type> <ns3:ID>111111111</ns3:ID> <ns3:BirthCountry>RU</ns3:BirthCountry> <ns3:DateOfExpiration>2030-02-27</ns3:DateOfExpiration> <ns3:CountryOfResidence>RU</ns3:CountryOfResidence> </ns3:PassengerDocument> </ns3:PassengerIDInfo> </ns3:Passenger> <ns3:Passenger ObjectKey="SH5"> <ns3:PTC Quantity="1">CHD</ns3:PTC> <ns3:Age> <ns3:BirthDate>2017-02-27</ns3:BirthDate> </ns3:Age> <ns3:Name> <ns3:Surname>PILATUS</ns3:Surname> <ns3:Given>SEVDA</ns3:Given> <ns3:Title>MS</ns3:Title> <ns3:Middle/> </ns3:Name> <ns3:Contacts> <ns3:Contact> <ns3:EmailContact> <ns3:Address>r.tkachuk@s7.ru</ns3:Address> </ns3:EmailContact> <ns3:PhoneContact> <ns3:Number CountryCode="7">9999999999</ns3:Number> </ns3:PhoneContact> </ns3:Contact> </ns3:Contacts> <ns3:Gender>Female</ns3:Gender> <ns3:PassengerIDInfo> <ns3:PassengerDocument> <ns3:Type>PP</ns3:Type> <ns3:ID>SP222222</ns3:ID> <ns3:BirthCountry>RU</ns3:BirthCountry> <ns3:DateOfExpiration>2030-02-27</ns3:DateOfExpiration> <ns3:CountryOfResidence>RU</ns3:CountryOfResidence> </ns3:PassengerDocument> </ns3:PassengerIDInfo> </ns3:Passenger> </ns3:Passengers> <ns3:Order> <ns3:OrderID Owner="S7">1</ns3:OrderID> <ns3:BookingReferences> <ns3:BookingReference> <ns3:ID>LO7O78</ns3:ID> <ns3:AirlineID>S7</ns3:AirlineID> </ns3:BookingReference> </ns3:BookingReferences> <ns3:TimeLimits> <ns3:PaymentTimeLimit DateTime="2023-05-20T12:44:00"/> </ns3:TimeLimits> <ns3:OrderItems> <ns3:OrderItem> <ns3:FlightItem> <ns3:OriginDestination> <ns3:Flight> <ns3:SegmentKey>FL1</ns3:SegmentKey> <ns3:Status> <ns3:StatusCode> <ns3:Code>HK</ns3:Code> </ns3:StatusCode> </ns3:Status> <ns3:Departure> <ns3:AirportCode>DME</ns3:AirportCode> <ns3:Date>2023-09-20</ns3:Date> <ns3:Time>12:40</ns3:Time> </ns3:Departure> <ns3:Arrival> <ns3:AirportCode>LED</ns3:AirportCode> <ns3:Date>2023-09-20</ns3:Date> <ns3:Time>14:15</ns3:Time> </ns3:Arrival> <ns3:MarketingCarrier> <ns3:AirlineID>S7</ns3:AirlineID> <ns3:FlightNumber>1011</ns3:FlightNumber> </ns3:MarketingCarrier> <ns3:OperatingCarrier> <ns3:AirlineID>S7</ns3:AirlineID> <ns3:FlightNumber>1011</ns3:FlightNumber> </ns3:OperatingCarrier> <ns3:CabinType> <ns3:Code>Y</ns3:Code> </ns3:CabinType> <ns3:ClassOfService> <ns3:Code>N</ns3:Code> </ns3:ClassOfService> </ns3:Flight> </ns3:OriginDestination> </ns3:FlightItem> <ns3:Associations> <ns3:Passengers> <ns3:PassengerReferences>SH4 SH5</ns3:PassengerReferences> </ns3:Passengers> </ns3:Associations> </ns3:OrderItem> </ns3:OrderItems> </ns3:Order> <ns3:Metadata> <ns3:Other> <ns3:OtherMetadata> <ns3:CountryMetadatas> <ns3:CountryMetadata MetadataKey="CM1"> <ns3:AugmentationPoint> <ns3:AugPoint Owner="OVB"> <ns4:value xmlns:ns4="##other" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/> </ns3:AugPoint> </ns3:AugmentationPoint> </ns3:CountryMetadata> </ns3:CountryMetadatas> </ns3:OtherMetadata> </ns3:Other> </ns3:Metadata> </ns3:Response> </ns3:OrderViewRS> </ns2:Body> </ns2:Envelope>
Step 3: Request for informative pricing
S7 Agent executes a reprice operation with itinerary info of chosen solution
All information must be taken from AirShoppingRS:
itinerary details (airport codes and dates for origin and departure, airline code and flight number);
<FlightItem> block must fill in like in OrderCreateRQ. Each slice is described by the <OriginDestination> element.
passenger types (PTC);
fare details (RBD and fare code).
<Envelope xmlns="http://schemas.xmlsoap.org/soap/envelope/"> <Header /> <Body> <ItinReshopRQ Version="" xmlns="http://www.iata.org/IATA/EDIST"> <Document /> <Party> <Sender> <AgentUserSender> <PseudoCity>S7AGN8224</PseudoCity> <AgentUserID>test</AgentUserID> </AgentUserSender> </Sender> </Party> <Query> <Reshop> <Actions> <ActionType /> <OrderItems> <OrderItem> <FlightItem> <OriginDestination> <Flight> <SegmentKey>FL1</SegmentKey> <Departure> <AirportCode>DME</AirportCode> <Date>2023-09-20</Date> <Time>12:40</Time> </Departure> <Arrival> <AirportCode>LED</AirportCode> <Date>2023-09-20</Date> <Time>14:15</Time> </Arrival> <MarketingCarrier> <AirlineID>S7</AirlineID> <FlightNumber>1011</FlightNumber> </MarketingCarrier> <OperatingCarrier> <AirlineID>S7</AirlineID> <FlightNumber>1011</FlightNumber> </OperatingCarrier> </Flight> </OriginDestination> <FareDetail> <FareComponent refs="FL1"> <FareBasis> <FareBasisCode> <Code>NSTOW</Code> <Application>ANY</Application> </FareBasisCode> <RBD>N</RBD> </FareBasis> </FareComponent> </FareDetail> </FlightItem> <Associations> <Passengers> <PassengerReferences>SH4 SH5</PassengerReferences> </Passengers> </Associations> </OrderItem> </OrderItems> <Passengers> <Passenger ObjectKey="SH4"> <PTC Quantity="1">ADT</PTC> <Name> <Surname /> </Name> </Passenger> <Passenger ObjectKey="SH5"> <PTC Quantity="1">CHD</PTC> <Name> <Surname /> </Name> </Passenger> </Passengers> </Actions> </Reshop> </Query> </ItinReshopRQ> </Body> </Envelope>
<?xml version="1.0" encoding="UTF-8" standalone="yes"?> <ns2:Envelope xmlns:ns2="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns3="http://www.iata.org/IATA/EDIST"> <ns2:Body> <ns3:ItinReshopRS Version=""> <ns3:Document> <ns3:Name>1.0</ns3:Name> </ns3:Document> <ns3:Success/> <ns3:Response> <ns3:ItinReshopProcessing/> <ns3:Passengers> <ns3:Passenger ObjectKey="SH4"> <ns3:PTC Quantity="1">ADT</ns3:PTC> <ns3:Name> <ns3:Surname>Anonymous</ns3:Surname> </ns3:Name> </ns3:Passenger> <ns3:Passenger ObjectKey="SH5"> <ns3:PTC Quantity="1">CHD</ns3:PTC> <ns3:Name> <ns3:Surname>Anonymous</ns3:Surname> </ns3:Name> </ns3:Passenger> </ns3:Passengers> <ns3:ReShopOffers> <ns3:ReShopOffer ObjectKey="RO1"> <ns3:OfferID Owner="S7">Offer</ns3:OfferID> <ns3:TotalPrice> <ns3:DetailCurrencyPrice> <ns3:Total Code="RUB">12588.00</ns3:Total> <ns3:Details> <ns3:Detail> <ns3:SubTotal Code="RUB">11970.00</ns3:SubTotal> <ns3:Application>fare</ns3:Application> </ns3:Detail> </ns3:Details> <ns3:Taxes> <ns3:Total Code="RUB">618.00</ns3:Total> </ns3:Taxes> <ns3:Fees> <ns3:Total Code="RUB">0</ns3:Total> </ns3:Fees> </ns3:DetailCurrencyPrice> </ns3:TotalPrice> <ns3:ReShopPricedOffer> <ns3:OfferPrice> <ns3:RequestedDate> <ns3:PriceDetail> <ns3:TotalAmount> <ns3:DetailCurrencyPrice> <ns3:Total Code="RUB">6882.00</ns3:Total> <ns3:Details> <ns3:Detail> <ns3:SubTotal Code="RUB">6470.00</ns3:SubTotal> <ns3:Application>fare</ns3:Application> </ns3:Detail> </ns3:Details> <ns3:Taxes> <ns3:Total Code="RUB">412.00</ns3:Total> </ns3:Taxes> <ns3:Fees> <ns3:Total Code="RUB">0</ns3:Total> </ns3:Fees> </ns3:DetailCurrencyPrice> </ns3:TotalAmount> <ns3:BaseAmount Code="RUB">6470.00</ns3:BaseAmount> <ns3:FareFiledIn> <ns3:BaseAmount Code="RUB">6470.00</ns3:BaseAmount> </ns3:FareFiledIn> <ns3:Surcharges> <ns3:Surcharge> <ns3:Total Code="RUB">0</ns3:Total> </ns3:Surcharge> </ns3:Surcharges> <ns3:Taxes> <ns3:Total Code="RUB">412.00</ns3:Total> <ns3:Breakdown> <ns3:Tax> <ns3:Amount Code="RUB">180.00</ns3:Amount> <ns3:TaxCode>RI</ns3:TaxCode> </ns3:Tax> <ns3:Tax> <ns3:Amount Code="RUB">232.00</ns3:Amount> <ns3:TaxCode>RI</ns3:TaxCode> </ns3:Tax> </ns3:Breakdown> </ns3:Taxes> </ns3:PriceDetail> <ns3:Associations> <ns3:AssociatedTraveler> <ns3:TravelerReferences>SH4</ns3:TravelerReferences> </ns3:AssociatedTraveler> <ns3:OfferDetailAssociation> <ns3:OfferTermReferences>T1</ns3:OfferTermReferences> </ns3:OfferDetailAssociation> </ns3:Associations> </ns3:RequestedDate> <ns3:FareDetail> <ns3:FareComponent> <ns3:SegmentReference>SEG1</ns3:SegmentReference> <ns3:FareBasis> <ns3:FareBasisCode> <ns3:Code>NSTOW</ns3:Code> </ns3:FareBasisCode> <ns3:RBD>N</ns3:RBD> </ns3:FareBasis> <ns3:FareRules> <ns3:Ticketing> <ns3:Endorsements> <ns3:Endorsement>ENDO</ns3:Endorsement> </ns3:Endorsements> </ns3:Ticketing> <ns3:Remarks> <ns3:Remark>UnstructuredFareCalc</ns3:Remark> </ns3:Remarks> </ns3:FareRules> </ns3:FareComponent> </ns3:FareDetail> </ns3:OfferPrice> <ns3:OfferPrice> <ns3:RequestedDate> <ns3:PriceDetail> <ns3:TotalAmount> <ns3:DetailCurrencyPrice> <ns3:Total Code="RUB">5706.00</ns3:Total> <ns3:Details> <ns3:Detail> <ns3:SubTotal Code="RUB">5500.00</ns3:SubTotal> <ns3:Application>fare</ns3:Application> </ns3:Detail> </ns3:Details> <ns3:Taxes> <ns3:Total Code="RUB">206.00</ns3:Total> </ns3:Taxes> <ns3:Fees> <ns3:Total Code="RUB">0</ns3:Total> </ns3:Fees> </ns3:DetailCurrencyPrice> </ns3:TotalAmount> <ns3:BaseAmount Code="RUB">5500.00</ns3:BaseAmount> <ns3:FareFiledIn> <ns3:BaseAmount Code="RUB">5500.00</ns3:BaseAmount> </ns3:FareFiledIn> <ns3:Surcharges> <ns3:Surcharge> <ns3:Total Code="RUB">0</ns3:Total> </ns3:Surcharge> </ns3:Surcharges> <ns3:Taxes> <ns3:Total Code="RUB">206.00</ns3:Total> <ns3:Breakdown> <ns3:Tax> <ns3:Amount Code="RUB">90.00</ns3:Amount> <ns3:TaxCode>RI</ns3:TaxCode> </ns3:Tax> <ns3:Tax> <ns3:Amount Code="RUB">116.00</ns3:Amount> <ns3:TaxCode>RI</ns3:TaxCode> </ns3:Tax> </ns3:Breakdown> </ns3:Taxes> </ns3:PriceDetail> <ns3:Associations> <ns3:AssociatedTraveler> <ns3:TravelerReferences>SH5</ns3:TravelerReferences> </ns3:AssociatedTraveler> <ns3:OfferDetailAssociation> <ns3:OfferTermReferences>T2</ns3:OfferTermReferences> </ns3:OfferDetailAssociation> </ns3:Associations> </ns3:RequestedDate> <ns3:FareDetail> <ns3:FareComponent> <ns3:SegmentReference>SEG1</ns3:SegmentReference> <ns3:FareBasis> <ns3:FareBasisCode> <ns3:Code>NSTOW</ns3:Code> </ns3:FareBasisCode> <ns3:RBD>N</ns3:RBD> </ns3:FareBasis> <ns3:TicketDesig Application="C">15</ns3:TicketDesig> <ns3:FareRules> <ns3:Ticketing> <ns3:Endorsements> <ns3:Endorsement>ENDO</ns3:Endorsement> </ns3:Endorsements> </ns3:Ticketing> <ns3:Remarks> <ns3:Remark>UnstructuredFareCalc</ns3:Remark> </ns3:Remarks> </ns3:FareRules> </ns3:FareComponent> </ns3:FareDetail> </ns3:OfferPrice> </ns3:ReShopPricedOffer> </ns3:ReShopOffer> </ns3:ReShopOffers> <ns3:DataList> <ns3:FlightSegmentList> <ns3:FlightSegment SegmentKey="SEG1"> <ns3:Departure> <ns3:AirportCode>DME</ns3:AirportCode> <ns3:Date>2023-09-20</ns3:Date> <ns3:Time>12:40</ns3:Time> </ns3:Departure> <ns3:Arrival> <ns3:AirportCode>LED</ns3:AirportCode> <ns3:Date>2023-09-20</ns3:Date> <ns3:Time>14:15</ns3:Time> </ns3:Arrival> <ns3:MarketingCarrier> <ns3:AirlineID>S7</ns3:AirlineID> <ns3:FlightNumber>1011</ns3:FlightNumber> </ns3:MarketingCarrier> <ns3:OperatingCarrier> <ns3:AirlineID>S7</ns3:AirlineID> <ns3:FlightNumber>1011</ns3:FlightNumber> </ns3:OperatingCarrier> </ns3:FlightSegment> </ns3:FlightSegmentList> <ns3:OriginDestinationList> <ns3:OriginDestination OriginDestinationKey="OD1"> <ns3:DepartureCode>DME</ns3:DepartureCode> <ns3:ArrivalCode>LED</ns3:ArrivalCode> <ns3:FlightReferences>SEG1</ns3:FlightReferences> </ns3:OriginDestination> </ns3:OriginDestinationList> <ns3:TermsList ListKey="TL1"> <ns3:Term refs="SEG1" ObjectKey="T1"> <ns3:AvailablePeriod> <ns3:Earliest/> <ns3:Latest/> </ns3:AvailablePeriod> </ns3:Term> <ns3:Term refs="SEG1" ObjectKey="T2"> <ns3:AvailablePeriod> <ns3:Earliest/> <ns3:Latest/> </ns3:AvailablePeriod> </ns3:Term> </ns3:TermsList> </ns3:DataList> </ns3:Response> </ns3:ItinReshopRS> </ns2:Body> </ns2:Envelope>
Step 4: Request for reservation pricing
S7 Agent executes a reprice operation with itinerary info of chosen solution
All information must be taken from AirShoppingRS:
itinerary details (airport codes and dates for origin and departure, airline code and flight number);
<FlightItem> block must fill in like in OrderCreateRQ. Each slice is described by the <OriginDestination> element.
passenger types (PTC);
fare details (RBD and FareBasisCode).
<Envelope xmlns="http://schemas.xmlsoap.org/soap/envelope/"> <Header /> <Body> <ItinReshopRQ Version="" xmlns="http://www.iata.org/IATA/EDIST"> <Document /> <Party> <Sender> <AgentUserSender> <PseudoCity>S7AGN8224</PseudoCity> <AgentUserID>test</AgentUserID> </AgentUserSender> </Sender> </Party> <Query> <Reshop> <Actions> <ActionType /> <BookingReferences> <BookingReference> <ID>LO7O78</ID> <AirlineID>S7</AirlineID> </BookingReference> </BookingReferences> <OrderItems> <OrderItem> <FlightItem> <OriginDestination> <Flight> <SegmentKey>FL1</SegmentKey> <Departure> <AirportCode>DME</AirportCode> <Date>2023-09-20</Date> <Time>12:40</Time> </Departure> <Arrival> <AirportCode>LED</AirportCode> <Date>2023-09-20</Date> <Time>14:15</Time> </Arrival> <MarketingCarrier> <AirlineID>S7</AirlineID> <FlightNumber>1011</FlightNumber> </MarketingCarrier> <OperatingCarrier> <AirlineID>S7</AirlineID> <FlightNumber>1011</FlightNumber> </OperatingCarrier> </Flight> </OriginDestination> <FareDetail> <FareComponent refs="FL1"> <FareBasis> <FareBasisCode> <Code>NSTOW</Code> <Application>ANY</Application> </FareBasisCode> <RBD>N</RBD> </FareBasis> </FareComponent> </FareDetail> </FlightItem> <Associations> <Passengers> <PassengerReferences>SH4 SH5</PassengerReferences> </Passengers> </Associations> </OrderItem> </OrderItems> <Passengers> <Passenger ObjectKey="SH4"> <PTC Quantity="1">ADT</PTC> <Name> <Surname /> </Name> </Passenger> <Passenger ObjectKey="SH5"> <PTC Quantity="1">CHD</PTC> <Name> <Surname /> </Name> </Passenger> </Passengers> </Actions> </Reshop> </Query> </ItinReshopRQ> </Body> </Envelope>
<?xml version="1.0" encoding="UTF-8" standalone="yes"?> <ns2:Envelope xmlns:ns2="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns3="http://www.iata.org/IATA/EDIST"> <ns2:Body> <ns3:ItinReshopRS Version=""> <ns3:Document> <ns3:Name>1.0</ns3:Name> </ns3:Document> <ns3:Success/> <ns3:Response> <ns3:ItinReshopProcessing/> <ns3:Passengers> <ns3:Passenger ObjectKey="SH4"> <ns3:PTC Quantity="1">ADT</ns3:PTC> <ns3:Name> <ns3:Surname>Anonymous</ns3:Surname> </ns3:Name> </ns3:Passenger> <ns3:Passenger ObjectKey="SH5"> <ns3:PTC Quantity="1">CHD</ns3:PTC> <ns3:Name> <ns3:Surname>Anonymous</ns3:Surname> </ns3:Name> </ns3:Passenger> </ns3:Passengers> <ns3:Order> <ns3:OrderID Owner="S7">Order</ns3:OrderID> <ns3:BookingReferences> <ns3:BookingReference> <ns3:ID>LO7O78</ns3:ID> <ns3:AirlineID>S7</ns3:AirlineID> </ns3:BookingReference> </ns3:BookingReferences> <ns3:OrderItems> <ns3:OrderItem> <ns3:OrderItemID Owner="S7">NONE</ns3:OrderItemID> </ns3:OrderItem> </ns3:OrderItems> </ns3:Order> <ns3:ReShopOffers> <ns3:ReShopOffer ObjectKey="RO1"> <ns3:OfferID Owner="S7">Offer</ns3:OfferID> <ns3:TotalPrice> <ns3:DetailCurrencyPrice> <ns3:Total Code="RUB">12588.0</ns3:Total> <ns3:Details> <ns3:Detail> <ns3:SubTotal Code="RUB">11970.0</ns3:SubTotal> <ns3:Application>fare</ns3:Application> </ns3:Detail> </ns3:Details> <ns3:Taxes> <ns3:Total Code="RUB">618.0</ns3:Total> </ns3:Taxes> <ns3:Fees> <ns3:Total Code="RUB">0</ns3:Total> </ns3:Fees> </ns3:DetailCurrencyPrice> </ns3:TotalPrice> <ns3:ReShopPricedOffer> <ns3:OfferPrice> <ns3:RequestedDate> <ns3:PriceDetail> <ns3:TotalAmount> <ns3:DetailCurrencyPrice> <ns3:Total Code="RUB">6882.0</ns3:Total> <ns3:Details> <ns3:Detail> <ns3:SubTotal Code="RUB">6470.0</ns3:SubTotal> <ns3:Application>fare</ns3:Application> </ns3:Detail> </ns3:Details> <ns3:Taxes> <ns3:Total Code="RUB">412.0</ns3:Total> </ns3:Taxes> <ns3:Fees> <ns3:Total Code="RUB">0</ns3:Total> </ns3:Fees> </ns3:DetailCurrencyPrice> </ns3:TotalAmount> <ns3:BaseAmount Code="RUB">6470.0</ns3:BaseAmount> <ns3:FareFiledIn> <ns3:BaseAmount Code="RUB">6470.0</ns3:BaseAmount> </ns3:FareFiledIn> <ns3:Surcharges> <ns3:Surcharge> <ns3:Total Code="RUB">0</ns3:Total> </ns3:Surcharge> </ns3:Surcharges> <ns3:Taxes> <ns3:Total Code="RUB">412.0</ns3:Total> <ns3:Breakdown> <ns3:Tax> <ns3:Amount Code="RUB">180.0</ns3:Amount> <ns3:TaxCode>RI</ns3:TaxCode> </ns3:Tax> <ns3:Tax> <ns3:Amount Code="RUB">232.0</ns3:Amount> <ns3:TaxCode>RI</ns3:TaxCode> </ns3:Tax> </ns3:Breakdown> </ns3:Taxes> </ns3:PriceDetail> <ns3:Associations> <ns3:AssociatedTraveler> <ns3:TravelerReferences>SH4</ns3:TravelerReferences> </ns3:AssociatedTraveler> <ns3:OfferDetailAssociation> <ns3:OfferTermReferences>T1</ns3:OfferTermReferences> </ns3:OfferDetailAssociation> </ns3:Associations> </ns3:RequestedDate> <ns3:FareDetail> <ns3:FareComponent> <ns3:SegmentReference>SEG1</ns3:SegmentReference> <ns3:FareBasis> <ns3:FareBasisCode> <ns3:Code>NSTOW</ns3:Code> </ns3:FareBasisCode> <ns3:RBD>N</ns3:RBD> </ns3:FareBasis> <ns3:FareRules> <ns3:Ticketing> <ns3:Endorsements> <ns3:Endorsement>ENDO</ns3:Endorsement> </ns3:Endorsements> </ns3:Ticketing> <ns3:Remarks> <ns3:Remark>UnstructuredFareCalc</ns3:Remark> </ns3:Remarks> </ns3:FareRules> </ns3:FareComponent> </ns3:FareDetail> </ns3:OfferPrice> <ns3:OfferPrice> <ns3:RequestedDate> <ns3:PriceDetail> <ns3:TotalAmount> <ns3:DetailCurrencyPrice> <ns3:Total Code="RUB">5706.0</ns3:Total> <ns3:Details> <ns3:Detail> <ns3:SubTotal Code="RUB">5500.0</ns3:SubTotal> <ns3:Application>fare</ns3:Application> </ns3:Detail> </ns3:Details> <ns3:Taxes> <ns3:Total Code="RUB">206.0</ns3:Total> </ns3:Taxes> <ns3:Fees> <ns3:Total Code="RUB">0</ns3:Total> </ns3:Fees> </ns3:DetailCurrencyPrice> </ns3:TotalAmount> <ns3:BaseAmount Code="RUB">5500.0</ns3:BaseAmount> <ns3:FareFiledIn> <ns3:BaseAmount Code="RUB">5500.0</ns3:BaseAmount> </ns3:FareFiledIn> <ns3:Surcharges> <ns3:Surcharge> <ns3:Total Code="RUB">0</ns3:Total> </ns3:Surcharge> </ns3:Surcharges> <ns3:Taxes> <ns3:Total Code="RUB">206.0</ns3:Total> <ns3:Breakdown> <ns3:Tax> <ns3:Amount Code="RUB">90.0</ns3:Amount> <ns3:TaxCode>RI</ns3:TaxCode> </ns3:Tax> <ns3:Tax> <ns3:Amount Code="RUB">116.0</ns3:Amount> <ns3:TaxCode>RI</ns3:TaxCode> </ns3:Tax> </ns3:Breakdown> </ns3:Taxes> </ns3:PriceDetail> <ns3:Associations> <ns3:AssociatedTraveler> <ns3:TravelerReferences>SH5</ns3:TravelerReferences> </ns3:AssociatedTraveler> <ns3:OfferDetailAssociation> <ns3:OfferTermReferences>T2</ns3:OfferTermReferences> </ns3:OfferDetailAssociation> </ns3:Associations> </ns3:RequestedDate> <ns3:FareDetail> <ns3:FareComponent> <ns3:SegmentReference>SEG1</ns3:SegmentReference> <ns3:FareBasis> <ns3:FareBasisCode> <ns3:Code>NSTOW</ns3:Code> </ns3:FareBasisCode> <ns3:RBD>N</ns3:RBD> </ns3:FareBasis> <ns3:TicketDesig Application="C">15</ns3:TicketDesig> <ns3:FareRules> <ns3:Ticketing> <ns3:Endorsements> <ns3:Endorsement>ENDO</ns3:Endorsement> </ns3:Endorsements> </ns3:Ticketing> <ns3:Remarks> <ns3:Remark>UnstructuredFareCalc</ns3:Remark> </ns3:Remarks> </ns3:FareRules> </ns3:FareComponent> </ns3:FareDetail> </ns3:OfferPrice> </ns3:ReShopPricedOffer> </ns3:ReShopOffer> </ns3:ReShopOffers> <ns3:DataList> <ns3:FlightSegmentList> <ns3:FlightSegment SegmentKey="SEG1"> <ns3:Departure> <ns3:AirportCode>DME</ns3:AirportCode> <ns3:Date>2023-09-20</ns3:Date> <ns3:Time>12:40</ns3:Time> </ns3:Departure> <ns3:Arrival> <ns3:AirportCode>LED</ns3:AirportCode> <ns3:Date>2023-09-20</ns3:Date> <ns3:Time>14:15</ns3:Time> </ns3:Arrival> <ns3:MarketingCarrier> <ns3:AirlineID>S7</ns3:AirlineID> <ns3:FlightNumber>1011</ns3:FlightNumber> </ns3:MarketingCarrier> <ns3:OperatingCarrier> <ns3:AirlineID>S7</ns3:AirlineID> <ns3:FlightNumber>1011</ns3:FlightNumber> </ns3:OperatingCarrier> </ns3:FlightSegment> </ns3:FlightSegmentList> <ns3:OriginDestinationList> <ns3:OriginDestination OriginDestinationKey="OD1"> <ns3:DepartureCode>DME</ns3:DepartureCode> <ns3:ArrivalCode>LED</ns3:ArrivalCode> <ns3:FlightReferences>SEG1</ns3:FlightReferences> </ns3:OriginDestination> </ns3:OriginDestinationList> <ns3:TermsList ListKey="TL1"> <ns3:Term refs="SEG1" ObjectKey="T1"> <ns3:AvailablePeriod> <ns3:Earliest/> <ns3:Latest/> </ns3:AvailablePeriod> </ns3:Term> <ns3:Term refs="SEG1" ObjectKey="T2"> <ns3:AvailablePeriod> <ns3:Earliest/> <ns3:Latest/> </ns3:AvailablePeriod> </ns3:Term> </ns3:TermsList> </ns3:DataList> </ns3:Response> </ns3:ItinReshopRS> </ns2:Body> </ns2:Envelope>
Step 5: Request for ancillaries pricing
S7 Agent executes a seatMap operation operation with the whole journey details and cabin type
OW + 1xADT + 1xCHD + Direct + S7 flight | v0.52 | seatMapStep 6: Issue tickets with free seat for each passenger
S7 Agent executes a demandTickets operation with with reservation reference, baggage codes and pricing details for air and baggage.
It is necessary correctly indicate passenger reference (RPH) for whom a ticket is issued. Used passenger SH number from the book operation
Envelope/Body/OrderViewRS/Response/Passengers/Passenger@ObjectKey
Add information about PNR from OrderViewRS
Envelope/Body/OrderViewRS/Response/Order/BookingReferences/BookingReference/ID
SeatList data takes from SeatAvailabilityRS
FlightSegmentList and OriginDestinationList data takes from OrderViewRS
Issue ticket with free seat for ADT
<Envelope xmlns="http://schemas.xmlsoap.org/soap/envelope/"> <Header/> <Body> <AirDocIssueRQ xmlns="http://www.iata.org/IATA/EDIST" Version="1.0"> <Document/> <Party> <Sender> <AgentUserSender> <PseudoCity>S7AGN8224</PseudoCity> <AgentUserID>test</AgentUserID> </AgentUserSender> </Sender> </Party> <Query> <TicketDocQuantity>1</TicketDocQuantity> <TicketDocInfo> <TravelerInfo> <Surname>Pilatus</Surname> <Given>Pontius</Given> <PTC>ADT</PTC> </TravelerInfo> <BookingReference ObjectKey="RPH4"> <Type> <Code>14</Code> </Type> <ID>LO7O78</ID> <AirlineID>S7</AirlineID> </BookingReference> <Payments> <Payment ObjectKey="ETK"> <Type> <Code>MS</Code> </Type> <Amount Code="RUB">6882</Amount> <Other> <Remarks> <Remark>*ATEST</Remark> </Remarks> </Other> </Payment> </Payments> </TicketDocInfo> <DataLists> <FareList> <FareGroup ListKey="FG1"> <Fare> <FareCode> <Code>ANY</Code> </FareCode> <FareDetail> <FareComponent refs="SEG1" ObjectKey="FC1"> <PriceBreakdown> <Price> <BaseAmount Code="RUB">0</BaseAmount> </Price> </PriceBreakdown> </FareComponent> </FareDetail> </Fare> <FareBasisCode> <Code>ANY</Code> </FareBasisCode> </FareGroup> </FareList> <FlightSegmentList> <FlightSegment refs="OD1" SegmentKey="SEG1"> <Departure> <AirportCode>DME</AirportCode> <Date>2023-09-20</Date> <Time>12:40</Time> </Departure> <Arrival> <AirportCode>LED</AirportCode> <Date>2023-09-20</Date> <Time>14:15</Time> </Arrival> <MarketingCarrier> <AirlineID>S7</AirlineID> <FlightNumber>1011</FlightNumber> </MarketingCarrier> <OperatingCarrier> <AirlineID>S7</AirlineID> <FlightNumber>1011</FlightNumber> </OperatingCarrier> </FlightSegment> </FlightSegmentList> <OriginDestinationList> <OriginDestination OriginDestinationKey="OD1"> <DepartureCode>DME</DepartureCode> <ArrivalCode>LED</ArrivalCode> <FlightReferences>SEG1</FlightReferences> </OriginDestination> </OriginDestinationList> <SeatList> <Seats refs="FC1" ListKey="ST1"> <Location> <Column>A</Column> <Row> <Number>15</Number> </Row> </Location> <Details>0B5</Details> </Seats> </SeatList> </DataLists> </Query> </AirDocIssueRQ> </Body> </Envelope>
<?xml version="1.0" encoding="UTF-8" standalone="yes"?> <ns2:Envelope xmlns:ns2="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns3="http://www.iata.org/IATA/EDIST"> <ns2:Body> <ns3:AirDocDisplayRS Version=""> <ns3:Document> <ns3:Name>1.0</ns3:Name> </ns3:Document> <ns3:Success/> <ns3:Response> <ns3:TicketDocInfos> <ns3:TicketDocInfo> <ns3:Traveler> <ns3:Surname>PILATUS</ns3:Surname> <ns3:Given>PONTIUS</ns3:Given> <ns3:PTC>ADT</ns3:PTC> </ns3:Traveler> <ns3:IssuingAirlineInfo> <ns3:AirlineName>S7</ns3:AirlineName> </ns3:IssuingAirlineInfo> <ns3:BookingReferences> <ns3:BookingReference> <ns3:ID>LO7O78</ns3:ID> <ns3:AirlineID>S7</ns3:AirlineID> </ns3:BookingReference> </ns3:BookingReferences> <ns3:Payments> <ns3:Payment> <ns3:Method/> <ns3:Amount Code="RUB">6882.0</ns3:Amount> </ns3:Payment> </ns3:Payments> <ns3:OriginDestination> <ns3:Origin>DME</ns3:Origin> <ns3:Destination>LED</ns3:Destination> </ns3:OriginDestination> <ns3:FareInfo> <ns3:BaseFare> <ns3:Amount Code="RUB">6470.00</ns3:Amount> </ns3:BaseFare> <ns3:EquivFare> <ns3:Amount Code="RUB">6470.00</ns3:Amount> </ns3:EquivFare> <ns3:Total> <ns3:Amount Code="RUB">6882.00</ns3:Amount> </ns3:Total> <ns3:Taxes> <ns3:Total Code="RUB">412.00</ns3:Total> <ns3:Breakdown> <ns3:Tax> <ns3:Amount Code="RUB">232.00</ns3:Amount> <ns3:TaxCode>RI</ns3:TaxCode> </ns3:Tax> <ns3:Tax> <ns3:Amount Code="RUB">180.00</ns3:Amount> <ns3:TaxCode>RI</ns3:TaxCode> </ns3:Tax> </ns3:Breakdown> </ns3:Taxes> <ns3:UnstructuredFareCalcInfo> <ns3:Info>MOW S7 LED6470RUB6470END</ns3:Info> </ns3:UnstructuredFareCalcInfo> </ns3:FareInfo> <ns3:TicketDocument> <ns3:TicketDocNbr>4212104191516</ns3:TicketDocNbr> <ns3:Type> <ns3:Code>702</ns3:Code> </ns3:Type> <ns3:NumberofBooklets>1</ns3:NumberofBooklets> <ns3:DateOfIssue>2023-05-17</ns3:DateOfIssue> <ns3:CouponInfo> <ns3:CouponNumber>1</ns3:CouponNumber> <ns3:FareBasisCode> <ns3:Code>NSTOW</ns3:Code> </ns3:FareBasisCode> <ns3:CouponValid> <ns3:EffectiveDatePeriod> <ns3:Expiration>2024-05-17</ns3:Expiration> </ns3:EffectiveDatePeriod> </ns3:CouponValid> <ns3:Status> <ns3:Code>OPEN FOR USE</ns3:Code> </ns3:Status> <ns3:SoldAirlineInfo> <ns3:Departure> <ns3:AirportCode>DME</ns3:AirportCode> <ns3:Date>2023-09-20</ns3:Date> <ns3:Time>12:40</ns3:Time> </ns3:Departure> <ns3:Arrival> <ns3:AirportCode>LED</ns3:AirportCode> <ns3:Date>2023-09-20</ns3:Date> <ns3:Time>14:15</ns3:Time> </ns3:Arrival> <ns3:OperatingCarrier> <ns3:ResBookDesigCode>N</ns3:ResBookDesigCode> </ns3:OperatingCarrier> <ns3:MarketingCarrier> <ns3:AirlineID>S7</ns3:AirlineID> <ns3:FlightNumber>1011</ns3:FlightNumber> </ns3:MarketingCarrier> <ns3:TicketedBaggageAllowance> <ns3:AllowableBag Type="PC" Number="1"/> </ns3:TicketedBaggageAllowance> </ns3:SoldAirlineInfo> </ns3:CouponInfo> </ns3:TicketDocument> <ns3:TicketDocument> <ns3:TicketDocNbr>ANY</ns3:TicketDocNbr> <ns3:Type> <ns3:Code>Y</ns3:Code> </ns3:Type> <ns3:NumberofBooklets>0</ns3:NumberofBooklets> <ns3:DateOfIssue>2023-05-17</ns3:DateOfIssue> <ns3:CouponInfo> <ns3:CouponNumber>0</ns3:CouponNumber> <ns3:Status> <ns3:Code>ANY</ns3:Code> </ns3:Status> <ns3:DateOfService>2023-09-20</ns3:DateOfService> <ns3:Value Code="">0</ns3:Value> <ns3:SoldAirlineInfo> <ns3:SeatNumber>15A</ns3:SeatNumber> </ns3:SoldAirlineInfo> <ns3:PresentInfo To="LED" At="DME"/> <ns3:ReasonForIssuance> <ns3:Code>0B5</ns3:Code> </ns3:ReasonForIssuance> </ns3:CouponInfo> </ns3:TicketDocument> <ns3:Commission> <ns3:Amount>0</ns3:Amount> <ns3:Remarks> <ns3:Remark>S7 ONLY/REF/CHNG/RESTR/ST</ns3:Remark> <ns3:Remark>INCL VAT 625.64RUB</ns3:Remark> <ns3:Remark>2023-05-17T12:52</ns3:Remark> </ns3:Remarks> </ns3:Commission> <ns3:PassengerSpecificData>111111111</ns3:PassengerSpecificData> </ns3:TicketDocInfo> </ns3:TicketDocInfos> </ns3:Response> </ns3:AirDocDisplayRS> </ns2:Body> </ns2:Envelope>
Issue ticket with free seat for CHD
<Envelope xmlns="http://schemas.xmlsoap.org/soap/envelope/"> <Header/> <Body> <AirDocIssueRQ xmlns="http://www.iata.org/IATA/EDIST" Version="1.0"> <Document/> <Party> <Sender> <AgentUserSender> <PseudoCity>S7AGN8224</PseudoCity> <AgentUserID>test</AgentUserID> </AgentUserSender> </Sender> </Party> <Query> <TicketDocQuantity>1</TicketDocQuantity> <TicketDocInfo> <TravelerInfo> <Surname>Pilatus</Surname> <Given>Sevda</Given> <PTC>CHD</PTC> </TravelerInfo> <BookingReference ObjectKey="RPH5"> <Type> <Code>14</Code> </Type> <ID>LO7O78</ID> <AirlineID>S7</AirlineID> </BookingReference> <Payments> <Payment ObjectKey="ETK"> <Type> <Code>MS</Code> </Type> <Amount Code="RUB">5706</Amount> <Other> <Remarks> <Remark>*ATEST</Remark> </Remarks> </Other> </Payment> </Payments> </TicketDocInfo> <DataLists> <FareList> <FareGroup ListKey="FG1"> <Fare> <FareCode> <Code>ANY</Code> </FareCode> <FareDetail> <FareComponent refs="SEG1" ObjectKey="FC1"> <PriceBreakdown> <Price> <BaseAmount Code="RUB">0</BaseAmount> </Price> </PriceBreakdown> </FareComponent> </FareDetail> </Fare> <FareBasisCode> <Code>ANY</Code> </FareBasisCode> </FareGroup> </FareList> <FlightSegmentList> <FlightSegment refs="OD1" SegmentKey="SEG1"> <Departure> <AirportCode>DME</AirportCode> <Date>2023-09-20</Date> <Time>12:40</Time> </Departure> <Arrival> <AirportCode>LED</AirportCode> <Date>2023-09-20</Date> <Time>14:15</Time> </Arrival> <MarketingCarrier> <AirlineID>S7</AirlineID> <FlightNumber>1011</FlightNumber> </MarketingCarrier> <OperatingCarrier> <AirlineID>S7</AirlineID> <FlightNumber>1011</FlightNumber> </OperatingCarrier> </FlightSegment> </FlightSegmentList> <OriginDestinationList> <OriginDestination OriginDestinationKey="OD1"> <DepartureCode>DME</DepartureCode> <ArrivalCode>LED</ArrivalCode> <FlightReferences>SEG1</FlightReferences> </OriginDestination> </OriginDestinationList> <SeatList> <Seats refs="FC1" ListKey="ST1"> <Location> <Column>B</Column> <Row> <Number>15</Number> </Row> </Location> <Details>0B5</Details> </Seats> </SeatList> </DataLists> </Query> </AirDocIssueRQ> </Body> </Envelope>
<?xml version="1.0" encoding="UTF-8" standalone="yes"?> <ns2:Envelope xmlns:ns2="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns3="http://www.iata.org/IATA/EDIST"> <ns2:Body> <ns3:AirDocDisplayRS Version=""> <ns3:Document> <ns3:Name>1.0</ns3:Name> </ns3:Document> <ns3:Success/> <ns3:Response> <ns3:TicketDocInfos> <ns3:TicketDocInfo> <ns3:Traveler> <ns3:Surname>PILATUS</ns3:Surname> <ns3:Given>SEVDA</ns3:Given> <ns3:PTC>CHD</ns3:PTC> </ns3:Traveler> <ns3:IssuingAirlineInfo> <ns3:AirlineName>S7</ns3:AirlineName> </ns3:IssuingAirlineInfo> <ns3:BookingReferences> <ns3:BookingReference> <ns3:ID>LO7O78</ns3:ID> <ns3:AirlineID>S7</ns3:AirlineID> </ns3:BookingReference> </ns3:BookingReferences> <ns3:Payments> <ns3:Payment> <ns3:Method/> <ns3:Amount Code="RUB">12588.0</ns3:Amount> </ns3:Payment> </ns3:Payments> <ns3:OriginDestination> <ns3:Origin>DME</ns3:Origin> <ns3:Destination>LED</ns3:Destination> </ns3:OriginDestination> <ns3:FareInfo> <ns3:BaseFare> <ns3:Amount Code="RUB">5500.00</ns3:Amount> </ns3:BaseFare> <ns3:EquivFare> <ns3:Amount Code="RUB">5500.00</ns3:Amount> </ns3:EquivFare> <ns3:Total> <ns3:Amount Code="RUB">5706.00</ns3:Amount> </ns3:Total> <ns3:Taxes> <ns3:Total Code="RUB">206.00</ns3:Total> <ns3:Breakdown> <ns3:Tax> <ns3:Amount Code="RUB">116.00</ns3:Amount> <ns3:TaxCode>RI</ns3:TaxCode> </ns3:Tax> <ns3:Tax> <ns3:Amount Code="RUB">90.00</ns3:Amount> <ns3:TaxCode>RI</ns3:TaxCode> </ns3:Tax> </ns3:Breakdown> </ns3:Taxes> <ns3:UnstructuredFareCalcInfo> <ns3:Info>MOW S7 LED5500RUB5500END</ns3:Info> </ns3:UnstructuredFareCalcInfo> </ns3:FareInfo> <ns3:TicketDocument> <ns3:TicketDocNbr>4212104191547</ns3:TicketDocNbr> <ns3:Type> <ns3:Code>702</ns3:Code> </ns3:Type> <ns3:NumberofBooklets>1</ns3:NumberofBooklets> <ns3:DateOfIssue>2023-05-17</ns3:DateOfIssue> <ns3:CouponInfo> <ns3:CouponNumber>1</ns3:CouponNumber> <ns3:FareBasisCode> <ns3:Code>NSTOW</ns3:Code> </ns3:FareBasisCode> <ns3:CouponValid> <ns3:EffectiveDatePeriod> <ns3:Expiration>2024-05-17</ns3:Expiration> </ns3:EffectiveDatePeriod> </ns3:CouponValid> <ns3:Status> <ns3:Code>OPEN FOR USE</ns3:Code> </ns3:Status> <ns3:SoldAirlineInfo> <ns3:Departure> <ns3:AirportCode>DME</ns3:AirportCode> <ns3:Date>2023-09-20</ns3:Date> <ns3:Time>12:40</ns3:Time> </ns3:Departure> <ns3:Arrival> <ns3:AirportCode>LED</ns3:AirportCode> <ns3:Date>2023-09-20</ns3:Date> <ns3:Time>14:15</ns3:Time> </ns3:Arrival> <ns3:OperatingCarrier> <ns3:ResBookDesigCode>N</ns3:ResBookDesigCode> </ns3:OperatingCarrier> <ns3:MarketingCarrier> <ns3:AirlineID>S7</ns3:AirlineID> <ns3:FlightNumber>1011</ns3:FlightNumber> </ns3:MarketingCarrier> <ns3:TicketedBaggageAllowance> <ns3:AllowableBag Type="PC" Number="1"/> </ns3:TicketedBaggageAllowance> </ns3:SoldAirlineInfo> </ns3:CouponInfo> </ns3:TicketDocument> <ns3:TicketDocument> <ns3:TicketDocNbr>ANY</ns3:TicketDocNbr> <ns3:Type> <ns3:Code>Y</ns3:Code> </ns3:Type> <ns3:NumberofBooklets>0</ns3:NumberofBooklets> <ns3:DateOfIssue>2023-05-17</ns3:DateOfIssue> <ns3:CouponInfo> <ns3:CouponNumber>0</ns3:CouponNumber> <ns3:Status> <ns3:Code>ANY</ns3:Code> </ns3:Status> <ns3:DateOfService>2023-09-20</ns3:DateOfService> <ns3:Value Code="">0</ns3:Value> <ns3:SoldAirlineInfo> <ns3:SeatNumber>15B</ns3:SeatNumber> </ns3:SoldAirlineInfo> <ns3:PresentInfo To="LED" At="DME"/> <ns3:ReasonForIssuance> <ns3:Code>0B5</ns3:Code> </ns3:ReasonForIssuance> </ns3:CouponInfo> </ns3:TicketDocument> <ns3:Commission> <ns3:Amount>0</ns3:Amount> <ns3:Remarks> <ns3:Remark>S7 ONLY/REF/CHNG/RESTR/ST</ns3:Remark> <ns3:Remark>INCL VAT 518.73RUB</ns3:Remark> <ns3:Remark>2023-05-17T12:56</ns3:Remark> </ns3:Remarks> </ns3:Commission> <ns3:PassengerSpecificData>SP222222</ns3:PassengerSpecificData> </ns3:TicketDocInfo> </ns3:TicketDocInfos> </ns3:Response> </ns3:AirDocDisplayRS> </ns2:Body> </ns2:Envelope>
- No labels