qid
stringlengths
6
9
source
stringlengths
7
216
target
stringlengths
6
409
atis_804
give me the fares for round trip flights from cleveland to miami next wednesday
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( round_trip $1 ) ( from $1 cleveland : ci ) ( to $1 miami : ci ) ( day $1 wednesday : da ) ( = ( fare $1 ) $0 ) ) ) )
atis_577
flight information from san francisco to pittsburgh
( lambda $0 e ( and ( flight $0 ) ( from $0 san_francisco : ci ) ( to $0 pittsburgh : ci ) ) )
atis_126
are there any flights from chicago to minneapolis on saturday on continental
( lambda $0 e ( and ( airline $0 co : al ) ( day $0 saturday : da ) ( to $0 minneapolis : ci ) ( from $0 chicago : ci ) ( flight $0 ) ) )
atis_3331
show me the coach fares from baltimore to dallas
( lambda $0 e ( exists $1 ( and ( class_type $1 coach : cl ) ( from $1 baltimore : ci ) ( to $1 dallas : ci ) ( = ( fare $1 ) $0 ) ) ) )
atis_3793
what are flights from boston to st. petersburg
( lambda $0 e ( and ( flight $0 ) ( from $0 boston : ci ) ( to $0 st_petersburg : ci ) ) )
atis_1400
i would like a flight between boston and atlanta on any day at one in the afternoon
( lambda $0 e ( and ( flight $0 ) ( departure_time $0 1300 : ti ) ( from $0 boston : ci ) ( to $0 atlanta : ci ) ) )
atis_851
give me the list of flights for continental airlines between boston and denver
( lambda $0 e ( and ( flight $0 ) ( airline $0 co : al ) ( from $0 boston : ci ) ( to $0 denver : ci ) ) )
atis_4796
what nonstop flights are available from oakland to pittsburgh
( lambda $0 e ( and ( flight $0 ) ( nonstop $0 ) ( from $0 oakland : ci ) ( to $0 pittsburgh : ci ) ) )
atis_3057
show me all the flights to baltimore after 6 o'clock pm
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) 1800 : ti ) ( to $0 baltimore : ci ) ) )
atis_2665
please show me airlines with flights from denver to philadelphia
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( from $1 denver : ci ) ( to $1 philadelphia : ci ) ( = ( airline : e $1 ) $0 ) ) ) )
atis_4103
what flights are available from pittsburgh to boston on saturday
( lambda $0 e ( and ( flight $0 ) ( from $0 pittsburgh : ci ) ( to $0 boston : ci ) ( day $0 saturday : da ) ) )
atis_2995
show me all flights that go from new york to miami on tuesday and go from miami to new york on sunday
( lambda $0 e ( or ( and ( flight $0 ) ( from $0 new_york : ci ) ( to $0 miami : ci ) ( day $0 tuesday : da ) ) ( and ( flight $0 ) ( from $0 miami : ci ) ( to $0 new_york : ci ) ( day $0 sunday : da ) ) ) )
atis_2679
please show me continental flights from san francisco to pittsburgh on friday
( lambda $0 e ( and ( flight $0 ) ( airline $0 co : al ) ( from $0 san_francisco : ci ) ( to $0 pittsburgh : ci ) ( day $0 friday : da ) ) )
atis_3893
what are the flights from dallas to boston for tomorrow night or evening
( lambda $0 e ( and ( flight $0 ) ( or ( during_day $0 evening : pd ) ( during_day $0 late : pd ) ) ( from $0 dallas : ci ) ( to $0 boston : ci ) ( tomorrow $0 ) ) )
atis_2977
show me all flights from san francisco to denver
( lambda $0 e ( and ( flight $0 ) ( from $0 san_francisco : ci ) ( to $0 denver : ci ) ) )
atis_1053
i am looking to get one air fare from baltimore to san francisco on a 747 leaving august twenty seventh
( lambda $0 e ( exists $1 ( and ( aircraft_code $1 747 : ac ) ( from $1 baltimore : ci ) ( to $1 san_francisco : ci ) ( day_number $1 27 : dn ) ( month $1 august : mn ) ( = ( fare $1 ) $0 ) ) ) )
atis_4503
what is the cost of a round trip flight from pittsburgh to atlanta beginning on april twenty fifth and returning on may sixth
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( round_trip $1 ) ( from $1 pittsburgh : ci ) ( to $1 atlanta : ci ) ( day_number $1 25 : dn ) ( month $1 april : mn ) ( = ( fare $1 ) $0 ) ) ) )
atis_5006
which flights depart burbank after noon and arrive in denver by 6pm
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) 1200 : ti ) ( < ( arrival_time $0 ) 1800 : ti ) ( from $0 burbank : ci ) ( to $0 denver : ci ) ) )
atis_2405
okay how about a flight on sunday from tampa to charlotte
( lambda $0 e ( and ( flight $0 ) ( from $0 tampa : ci ) ( to $0 charlotte : ci ) ( day $0 sunday : da ) ) )
atis_3860
what are the flights available between 10am and 3pm between pittsburgh and fort worth
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) 1000 : ti ) ( < ( departure_time $0 ) 1500 : ti ) ( from $0 pittsburgh : ci ) ( to $0 fort_worth : ci ) ) )
atis_153
are there any turboprop flights from pittsburgh to baltimore on december seventeenth
( lambda $0 e ( and ( flight $0 ) ( turboprop $0 ) ( from $0 pittsburgh : ci ) ( to $0 baltimore : ci ) ( day_number $0 17 : dn ) ( month $0 december : mn ) ) )
atis_2391
of all airlines which airline has the most arrivals in atlanta
( argmax $0 ( airline $0 ) ( count $1 ( and ( flight $1 ) ( to $1 atlanta : ci ) ( airline $1 $0 ) ) ) )
atis_2353
newark to tampa on friday
( lambda $0 e ( and ( from $0 newark : ci ) ( to $0 tampa : ci ) ( day $0 friday : da ) ) )
atis_2660
please show me airlines with flight service from boston to denver from denver to philadelphia and from philadelphia to boston
( lambda $0 e ( and ( airline $0 ) ( and ( exists $1 ( and ( flight $1 ) ( from $1 boston : ci ) ( to $1 denver : ci ) ( airline $1 $0 ) ) ) ( exists $1 ( and ( flight $1 ) ( from $1 denver : ci ) ( to $1 philadelphia : ci ) ( airline $1 $0 ) ) ) ( exists $1 ( and ( flight $1 ) ( from $1 philadelphia : ci ) ( to $1 boston : ci ) ( airline $1 $0 ) ) ) ) ) )
atis_4765
what kind of aircraft does delta use before 8am on august second from boston to denver
( lambda $0 e ( exists $1 ( and ( airline $1 dl : al ) ( < ( departure_time $1 ) 800 : ti ) ( from $1 boston : ci ) ( to $1 denver : ci ) ( day_number $1 2 : dn ) ( month $1 august : mn ) ( = ( aircraft_code $1 ) $0 ) ) ) )
atis_280
could you give me a flight between pittsburgh and philadelphia
( lambda $0 e ( and ( flight $0 ) ( from $0 pittsburgh : ci ) ( to $0 philadelphia : ci ) ) )
atis_4862
what're the flights from memphis to las vegas that arrive on a sunday
( lambda $0 e ( and ( flight $0 ) ( from $0 memphis : ci ) ( to $0 las_vegas : ci ) ( day_arrival $0 sunday : da ) ) )
atis_3821
what are the classes of service on lufthansa
( lambda $0 e ( exists $1 ( and ( airline $1 lh : al ) ( = ( booking_class $1 ) $0 ) ) ) )
atis_3128
show me flights from baltimore to boston
( lambda $0 e ( and ( flight $0 ) ( from $0 baltimore : ci ) ( to $0 boston : ci ) ) )
atis_4496
what is the cost for a one way trip from pittsburgh to atlanta
( lambda $0 e ( exists $1 ( and ( oneway $1 ) ( from $1 pittsburgh : ci ) ( to $1 atlanta : ci ) ( = ( fare $1 ) $0 ) ) ) )
atis_1479
i would like information on flights from san francisco to pittsburgh leaving after 8pm monday night
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) 2000 : ti ) ( from $0 san_francisco : ci ) ( to $0 pittsburgh : ci ) ( day $0 monday : da ) ( during_day $0 late : pd ) ) )
atis_3811
what are the cheapest one way flights from atlanta to pittsburgh
( argmin $0 ( and ( flight $0 ) ( oneway $0 ) ( from $0 atlanta : ci ) ( to $0 pittsburgh : ci ) ) ( fare $0 ) )
atis_504
find me a flight that flies from memphis to tacoma
( lambda $0 e ( and ( flight $0 ) ( from $0 memphis : ci ) ( to $0 tacoma : ci ) ) )
atis_903
hi i'd like a flight on alaska airlines from san diego to toronto please
( lambda $0 e ( and ( flight $0 ) ( airline $0 as : al ) ( from $0 san_diego : ci ) ( to $0 toronto : ci ) ) )
atis_2040
list all flights from seattle on continental which depart after 430pm
( lambda $0 e ( and ( flight $0 ) ( airline $0 co : al ) ( > ( departure_time $0 ) 1630 : ti ) ( from $0 seattle : ci ) ) )
atis_1672
i'd like information on a flight from atlanta to denver a morning flight
( lambda $0 e ( and ( flight $0 ) ( during_day $0 morning : pd ) ( from $0 atlanta : ci ) ( to $0 denver : ci ) ) )
atis_3751
what airlines fly from philadelphia to san francisco
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( from $1 philadelphia : ci ) ( to $1 san_francisco : ci ) ( = ( airline : e $1 ) $0 ) ) ) )
atis_550
flight 417 from cincinnati to dallas
( lambda $0 e ( and ( flight $0 ) ( flight_number $0 417 : fn ) ( from $0 cincinnati : ci ) ( to $0 dallas : ci ) ) )
atis_1862
information on ground transportation in denver
( lambda $0 e ( and ( ground_transport $0 ) ( to_city $0 denver : ci ) ) )
atis_1805
i'm interested in a flight on american airlines from dallas to washington
( lambda $0 e ( and ( flight $0 ) ( airline $0 aa : al ) ( from $0 dallas : ci ) ( to $0 washington : ci ) ) )
atis_4943
when is the first flight leaving from oakland to boston
( departure_time ( argmin $0 ( and ( flight $0 ) ( from $0 oakland : ci ) ( to $0 boston : ci ) ) ( departure_time $0 ) ) )
atis_945
how many american airline flights leave denver june tenth
( count $0 ( and ( flight $0 ) ( airline $0 aa : al ) ( from $0 denver : ci ) ( day_number $0 10 : dn ) ( month $0 june : mn ) ) )
atis_3642
sure i'd like to determine what aircraft are use on july seventh leaving from boston and arriving in atlanta on july seventh
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( from $1 boston : ci ) ( to $1 atlanta : ci ) ( day_number $1 7 : dn ) ( month $1 july : mn ) ( day_number_arrival $1 7 : dn ) ( arrival_month $1 july : mn ) ( = ( aircraft_code $1 ) $0 ) ) ) )
atis_4259
what flights from st. paul to kansas city on friday with a meal
( lambda $0 e ( and ( flight $0 ) ( has_meal $0 ) ( from $0 st_paul : ci ) ( to $0 kansas_city : ci ) ( day $0 friday : da ) ) )
atis_1690
i'd like to book a flight from atlanta to denver
( lambda $0 e ( and ( flight $0 ) ( from $0 atlanta : ci ) ( to $0 denver : ci ) ) )
atis_2107
list all united flights from boston to san francisco
( lambda $0 e ( and ( flight $0 ) ( airline $0 ua : al ) ( from $0 boston : ci ) ( to $0 san_francisco : ci ) ) )
atis_4950
where is general mitchell international located
( lambda $0 e ( loc : t mke : ap $0 ) )
atis_3125
show me flights from atlanta to washington dc on wednesday evening
( lambda $0 e ( and ( flight $0 ) ( during_day $0 evening : pd ) ( from $0 atlanta : ci ) ( to $0 washington : ci ) ( day $0 wednesday : da ) ) )
atis_3398
show me the flights from atlanta to philadelphia
( lambda $0 e ( and ( flight $0 ) ( from $0 atlanta : ci ) ( to $0 philadelphia : ci ) ) )
atis_449
does us air have a flight from toronto to salt lake city monday may thirty first
( lambda $0 e ( and ( flight $0 ) ( airline $0 us : al ) ( from $0 toronto : ci ) ( to $0 salt_lake_city : ci ) ( day $0 monday : da ) ( day_number $0 31 : dn ) ( month $0 may : mn ) ) )
atis_2903
show me all flights from boston to denver
( lambda $0 e ( and ( flight $0 ) ( from $0 boston : ci ) ( to $0 denver : ci ) ) )
atis_941
how long is the flight from atlanta to san francisco at noon on november seventh
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( departure_time $1 1200 : ti ) ( from $1 atlanta : ci ) ( to $1 san_francisco : ci ) ( day_number $1 7 : dn ) ( month $1 november : mn ) ( = ( time_elapsed $1 ) $0 ) ) ) )
atis_1020
how much does the limousine service cost within pittsburgh
( lambda $0 e ( exists $1 ( and ( limousine $1 ) ( to_city $1 pittsburgh : ci ) ( = ( ground_fare $1 ) $0 ) ) ) )
atis_1532
i would like to find a flight from pittsburgh to boston on wednesday and i have to be in boston by one so i'd like a flight out of here no later than 11am
( lambda $0 e ( and ( flight $0 ) ( < ( arrival_time $0 ) 1300 : ti ) ( from $0 pittsburgh : ci ) ( to $0 boston : ci ) ( day $0 wednesday : da ) ( > ( departure_time $0 ) 1100 : ti ) ) )
atis_1847
information on a flight from san francisco to philadelphia
( lambda $0 e ( and ( flight $0 ) ( from $0 san_francisco : ci ) ( to $0 philadelphia : ci ) ) )
atis_4011
what does ea mean
ea : al
atis_3898
what are the flights from denver to oakland
( lambda $0 e ( and ( flight $0 ) ( from $0 denver : ci ) ( to $0 oakland : ci ) ) )
atis_437
does northwest fly into denver
( lambda $0 e ( and ( flight $0 ) ( airline $0 nw : al ) ( to $0 denver : ci ) ) )
atis_3445
show me the flights from denver that go to pittsburgh and then atlanta
( lambda $0 e ( and ( flight $0 ) ( from $0 denver : ci ) ( to $0 atlanta : ci ) ( stop $0 pittsburgh : ci ) ) )
atis_739
get last flight from oakland to salt lake city on wednesday
( argmax $0 ( and ( flight $0 ) ( from $0 oakland : ci ) ( to $0 salt_lake_city : ci ) ( day $0 wednesday : da ) ) ( departure_time $0 ) )
atis_2867
show me all economy prices from dallas to baltimore
( lambda $0 e ( exists $1 ( and ( economy $1 ) ( from $1 dallas : ci ) ( to $1 baltimore : ci ) ( = ( fare $1 ) $0 ) ) ) )
atis_3291
show me the airlines that fly from san francisco to boston
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( from $1 san_francisco : ci ) ( to $1 boston : ci ) ( = ( airline : e $1 ) $0 ) ) ) )
atis_586
flight numbers from columbus to minneapolis tomorrow
( lambda $0 e ( exists $1 ( and ( from $1 columbus : ci ) ( to $1 minneapolis : ci ) ( tomorrow $1 ) ( = ( flight_number $1 ) $0 ) ) ) )
atis_2989
show me all flights on southwest airlines from san diego to san francisco
( lambda $0 e ( and ( flight $0 ) ( airline $0 wn : al ) ( from $0 san_diego : ci ) ( to $0 san_francisco : ci ) ) )
atis_4444
what is the cheapest fare from baltimore to dallas in any class
( min $0 ( exists $1 ( and ( from $1 baltimore : ci ) ( to $1 dallas : ci ) ( = ( fare $1 ) $0 ) ) ) )
atis_1028
how much is a round trip fare from indianapolis to seattle
( lambda $0 e ( exists $1 ( and ( round_trip $1 ) ( from $1 indianapolis : ci ) ( to $1 seattle : ci ) ( = ( fare $1 ) $0 ) ) ) )
atis_3279
show me some information on making a reservation from philadelphia to denver on sunday
( lambda $0 e ( and ( from $0 philadelphia : ci ) ( to $0 denver : ci ) ( day $0 sunday : da ) ) )
atis_3208
show me flights going from san francisco to pittsburgh first class on monday of leaving after 12 noon
( lambda $0 e ( and ( flight $0 ) ( class_type $0 first : cl ) ( > ( departure_time $0 ) 1200 : ti ) ( from $0 san_francisco : ci ) ( to $0 pittsburgh : ci ) ( day $0 monday : da ) ) )
atis_4953
which airline can fly me from atlanta to denver to san francisco
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( from $1 atlanta : ci ) ( to $1 san_francisco : ci ) ( stop $1 denver : ci ) ( = ( airline : e $1 ) $0 ) ) ) )
atis_573
flight information between washington and denver on september third
( lambda $0 e ( and ( flight $0 ) ( from $0 washington : ci ) ( to $0 denver : ci ) ( day_number $0 3 : dn ) ( month $0 september : mn ) ) )
atis_4040
what does s/ designate as a meal
s_ : rc
atis_647
flights from las vegas to phoenix
( lambda $0 e ( and ( flight $0 ) ( from $0 las_vegas : ci ) ( to $0 phoenix : ci ) ) )
atis_595
flights between milwaukee and orlando one way
( lambda $0 e ( and ( flight $0 ) ( oneway $0 ) ( from $0 milwaukee : ci ) ( to $0 orlando : ci ) ) )
atis_3396
show me the flights from atlanta to denver on friday
( lambda $0 e ( and ( flight $0 ) ( from $0 atlanta : ci ) ( to $0 denver : ci ) ( day $0 friday : da ) ) )
atis_1308
i want an early morning flight between philadelphia and pittsburgh on tuesday morning
( lambda $0 e ( and ( flight $0 ) ( during_day $0 early : pd ) ( during_day $0 morning : pd ) ( from $0 philadelphia : ci ) ( to $0 pittsburgh : ci ) ( day $0 tuesday : da ) ) )
atis_4566
what is the earliest flight leaving boston and going to washington on september third
( argmin $0 ( and ( flight $0 ) ( from $0 boston : ci ) ( to $0 washington : ci ) ( day_number $0 3 : dn ) ( month $0 september : mn ) ) ( departure_time $0 ) )
atis_4913
what's the last flight from atlanta to boston
( argmax $0 ( and ( flight $0 ) ( from $0 atlanta : ci ) ( to $0 boston : ci ) ) ( departure_time $0 ) )
atis_281
could you give me the schedule of flights for american and delta to dfw on august fifteenth
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( airline $1 aa : al ) ( to $1 dfw : ap ) ( day_number $1 15 : dn ) ( month $1 august : mn ) ( or ( airline $1 aa : al ) ( airline $1 dl : al ) ) ( = ( departure_time $1 ) $0 ) ) ) )
atis_732
get first flight from oakland to salt lake city on thursday
( argmin $0 ( and ( flight $0 ) ( from $0 oakland : ci ) ( to $0 salt_lake_city : ci ) ( day $0 thursday : da ) ) ( departure_time $0 ) )
atis_2763
show all connecting flights from pittsburgh to oakland
( lambda $0 e ( and ( flight $0 ) ( connecting $0 ) ( from $0 pittsburgh : ci ) ( to $0 oakland : ci ) ) )
atis_2999
show me all flights which leave pittsburgh tomorrow and arrive in baltimore after 5 o'clock pm
( lambda $0 e ( and ( flight $0 ) ( > ( arrival_time $0 ) 1700 : ti ) ( from $0 pittsburgh : ci ) ( to $0 baltimore : ci ) ( tomorrow $0 ) ) )
atis_1908
is there a flight on eastern airlines from boston to denver
( lambda $0 e ( and ( flight $0 ) ( airline $0 ea : al ) ( from $0 boston : ci ) ( to $0 denver : ci ) ) )
atis_3085
show me dallas to boston flights
( lambda $0 e ( and ( flight $0 ) ( from $0 dallas : ci ) ( to $0 boston : ci ) ) )
atis_1111
i need a flight from philadelphia to boston
( lambda $0 e ( and ( flight $0 ) ( from $0 philadelphia : ci ) ( to $0 boston : ci ) ) )
atis_4680
what is the least expensive business class flight between boston and san francisco
( argmin $0 ( and ( flight $0 ) ( class_type $0 business : cl ) ( from $0 boston : ci ) ( to $0 san_francisco : ci ) ) ( fare $0 ) )
atis_2195
list flights leaving denver and arriving in orlando on saturday departing after 12pm
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) 1200 : ti ) ( from $0 denver : ci ) ( to $0 orlando : ci ) ( day $0 saturday : da ) ) )
atis_160
atlanta to oakland thursday
( lambda $0 e ( and ( from $0 atlanta : ci ) ( to $0 oakland : ci ) ( day $0 thursday : da ) ) )
atis_2798
show flights and fare information from pittsburgh connecting through denver to oakland
( lambda $0 e ( lambda $1 e ( and ( flight $0 ) ( from $0 pittsburgh : ci ) ( to $0 oakland : ci ) ( stop $0 denver : ci ) ( = ( fare $0 ) $1 ) ) ) )
atis_3165
show me flights from miami to new york leaving on a sunday first class
( lambda $0 e ( and ( flight $0 ) ( class_type $0 first : cl ) ( from $0 miami : ci ) ( to $0 new_york : ci ) ( day $0 sunday : da ) ) )
atis_952
how many cities are served by twa with first class flights
( count $0 ( and ( city $0 ) ( exists $1 ( and ( flight $1 ) ( airline $1 tw : al ) ( class_type $1 first : cl ) ( to $1 $0 ) ) ) ) )
atis_4232
what flights from kansas city to chicago next wednesday arrive at chicago at about 7pm
( lambda $0 e ( and ( flight $0 ) ( approx_arrival_time $0 1900 : ti ) ( from $0 kansas_city : ci ) ( to $0 chicago : ci ) ( day $0 wednesday : da ) ) )
atis_1331
i want to fly from boston to atlanta i would like the cheapest fare please
( min $0 ( exists $1 ( and ( flight $1 ) ( from $1 boston : ci ) ( to $1 atlanta : ci ) ( = ( fare $1 ) $0 ) ) ) )
atis_1219
i need the cheapest direct flight from atlanta to denver leaving on may seventh
( argmin $0 ( and ( flight $0 ) ( nonstop $0 ) ( from $0 atlanta : ci ) ( to $0 denver : ci ) ( day_number $0 7 : dn ) ( month $0 may : mn ) ) ( fare $0 ) )
atis_606
flights from baltimore denver and pittsburgh to philadelphia where the round trip fare for each is less than 1000 dollars
( lambda $0 e ( and ( flight $0 ) ( < ( fare $0 ) 1000 : do ) ( or ( from $0 baltimore : ci ) ( from $0 denver : ci ) ( from $0 pittsburgh : ci ) ) ( to $0 philadelphia : ci ) ) )
atis_164
baltimore to newark wednesday morning
( lambda $0 e ( and ( during_day $0 morning : pd ) ( from $0 baltimore : ci ) ( to $0 newark : ci ) ( day $0 wednesday : da ) ) )
atis_1040
how much will it cost taking coach from orlando to indianapolis on december twenty ninth flying us air 311
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( airline $1 us : al ) ( class_type $1 coach : cl ) ( flight_number $1 311 : fn ) ( from $1 orlando : ci ) ( to $1 indianapolis : ci ) ( day_number $1 29 : dn ) ( month $1 december : mn ) ( = ( fare $1 ) $0 ) ) ) )
atis_3968
what are the restrictions on the cheapest one way fare between boston and oakland
( restriction_code ( min $0 ( exists $1 ( and ( flight $1 ) ( oneway $1 ) ( from $1 boston : ci ) ( to $1 oakland : ci ) ( = ( fare $1 ) $0 ) ) ) ) )
atis_209
can you list flights departing from las vegas and arriving in san diego
( lambda $0 e ( and ( flight $0 ) ( from $0 las_vegas : ci ) ( to $0 san_diego : ci ) ) )
atis_3612
show me the united flights from bwi to denver
( lambda $0 e ( and ( flight $0 ) ( airline $0 ua : al ) ( from $0 bwi : ap ) ( to $0 denver : ci ) ) )
atis_329
describe fare code qx
qx : fb