qid
stringlengths
6
9
source
stringlengths
7
216
target
stringlengths
6
409
atis_1995
list all arrivals from any airport to baltimore on thursday morning arriving before 9am
( lambda $0 e ( and ( day_arrival $0 thursday : da ) ( to $0 baltimore : ci ) ( < ( arrival_time $0 ) 900 : ti ) ( during_day $0 morning : pd ) ( exists $1 ( and ( airport $1 ) ( from $0 $1 ) ) ) ) )
atis_576
flight information from pittsburgh to denver
( lambda $0 e ( and ( flight $0 ) ( from $0 pittsburgh : ci ) ( to $0 denver : ci ) ) )
atis_836
give me the flights from pittsburgh to los angeles thursday evening
( lambda $0 e ( and ( flight $0 ) ( during_day $0 evening : pd ) ( from $0 pittsburgh : ci ) ( to $0 los_angeles : ci ) ( day $0 thursday : da ) ) )
atis_2417
okay i'm sorry could you tell me what flights leave atlanta and arrive in philadelphia around 5 o'clock
( lambda $0 e ( and ( flight $0 ) ( approx_arrival_time $0 1700 : ti ) ( from $0 atlanta : ci ) ( to $0 philadelphia : ci ) ) )
atis_4056
what does y mean
( lambda $0 e ( or ( equals $0 h : fb ) ( equals $0 y : fb ) ) )
atis_3809
what are the cheapest flights from pittsburgh to atlanta
( argmin $0 ( and ( flight $0 ) ( from $0 pittsburgh : ci ) ( to $0 atlanta : ci ) ) ( fare $0 ) )
atis_569
flight from ontario to orlando that departs 9 hours before arriving
( lambda $0 e ( and ( flight $0 ) ( from $0 ontario : ci ) ( to $0 orlando : ci ) ( time_elapsed $0 9 : hr ) ) )
atis_1726
i'd like to fly from columbus to nashville tomorrow morning
( lambda $0 e ( and ( flight $0 ) ( during_day $0 morning : pd ) ( from $0 columbus : ci ) ( to $0 nashville : ci ) ( tomorrow $0 ) ) )
atis_2323
may i have a listing of flights from milwaukee to tacoma washington departing in the evening
( lambda $0 e ( and ( flight $0 ) ( during_day $0 evening : pd ) ( from $0 milwaukee : ci ) ( to $0 tacoma : ci ) ) )
atis_4966
which airlines fly between baltimore and san francisco
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( from $1 baltimore : ci ) ( to $1 san_francisco : ci ) ( = ( airline : e $1 ) $0 ) ) ) )
atis_182
can i rent a car in san jose too
( lambda $0 e ( and ( rental_car $0 ) ( to_city $0 san_jose : ci ) ) )
atis_382
do you have any flights from chicago to indianapolis
( lambda $0 e ( and ( flight $0 ) ( from $0 chicago : ci ) ( to $0 indianapolis : ci ) ) )
atis_2140
list flights from baltimore to san francisco on friday
( lambda $0 e ( and ( flight $0 ) ( from $0 baltimore : ci ) ( to $0 san_francisco : ci ) ( day $0 friday : da ) ) )
atis_2804
show flights first class on american airlines between dallas and philadelphia
( lambda $0 e ( and ( flight $0 ) ( airline $0 aa : al ) ( class_type $0 first : cl ) ( from $0 dallas : ci ) ( to $0 philadelphia : ci ) ) )
atis_4672
what is the latest flight leaving pittsburgh returning to denver
( argmax $0 ( and ( flight $0 ) ( from $0 pittsburgh : ci ) ( to $0 denver : ci ) ) ( departure_time $0 ) )
atis_2451
on monday i'd like to travel from las vegas to detroit michigan
( lambda $0 e ( and ( from $0 las_vegas : ci ) ( to $0 detroit : ci ) ( day $0 monday : da ) ) )
atis_4572
what is the earliest flight on friday from washington to san francisco
( argmin $0 ( and ( flight $0 ) ( from $0 washington : ci ) ( to $0 san_francisco : ci ) ( day $0 friday : da ) ) ( departure_time $0 ) )
atis_706
from atlanta to washington dc
( lambda $0 e ( and ( from $0 atlanta : ci ) ( to $0 washington : ci ) ) )
atis_1949
is there ground transportation from the memphis airport into town when if i arrive at 842 in the morning
( lambda $0 e ( and ( ground_transport $0 ) ( to_city $0 memphis : ci ) ( from_airport $0 memphis : ci ) ) )
atis_3714
what afternoon flights are available from atlanta to san francisco
( lambda $0 e ( and ( flight $0 ) ( during_day $0 afternoon : pd ) ( from $0 atlanta : ci ) ( to $0 san_francisco : ci ) ) )
atis_1789
i'd like to see the flights from denver to philadelphia again
( lambda $0 e ( and ( flight $0 ) ( from $0 denver : ci ) ( to $0 philadelphia : ci ) ) )
atis_206
can you list all the airlines that have flights from boston to san francisco
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( from $1 boston : ci ) ( to $1 san_francisco : ci ) ( = ( airline : e $1 ) $0 ) ) ) )
atis_1615
i would like to travel from boston to denver early in the morning
( lambda $0 e ( and ( during_day $0 early : pd ) ( during_day $0 morning : pd ) ( from $0 boston : ci ) ( to $0 denver : ci ) ) )
atis_384
do you have any flights from pittsburgh to boston on wednesday of next week in the morning
( lambda $0 e ( and ( flight $0 ) ( during_day $0 morning : pd ) ( from $0 pittsburgh : ci ) ( to $0 boston : ci ) ( day $0 wednesday : da ) ) )
atis_3830
what are the coach flights between dallas and baltimore leaving august tenth and returning august twelve
( lambda $0 e ( and ( flight $0 ) ( class_type $0 coach : cl ) ( from $0 dallas : ci ) ( to $0 dallas : ci ) ( day_number $0 10 : dn ) ( month $0 august : mn ) ( day_number_return $0 12 : dn ) ( month_return $0 august : mn ) ) )
atis_2455
on november twenty third what flights are available between boston and denver
( lambda $0 e ( and ( flight $0 ) ( from $0 boston : ci ) ( to $0 denver : ci ) ( day_number $0 23 : dn ) ( month $0 november : mn ) ) )
atis_3390
show me the flights between boston and san francisco denver and san francisco boston and denver
( lambda $0 e ( lambda $1 e ( lambda $2 e ( and ( flight $0 ) ( flight $1 ) ( flight $2 ) ( from $0 boston : ci ) ( to $0 san_francisco : ci ) ( from $1 denver : ci ) ( to $1 san_francisco : ci ) ( from $2 boston : ci ) ( to $2 denver : ci ) ) ) ) )
atis_2100
list all the flights that takeoff from general mitchell international
( lambda $0 e ( and ( flight $0 ) ( from $0 mke : ap ) ) )
atis_4315
what flights leave after 7pm from pittsburgh to philadelphia
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) 1900 : ti ) ( from $0 pittsburgh : ci ) ( to $0 philadelphia : ci ) ) )
atis_457
evening flights from philadelphia to oakland
( lambda $0 e ( and ( flight $0 ) ( during_day $0 evening : pd ) ( from $0 philadelphia : ci ) ( to $0 oakland : ci ) ) )
atis_358
do you have a flight from atlanta to boston that will stop in washington
( lambda $0 e ( and ( flight $0 ) ( from $0 atlanta : ci ) ( to $0 boston : ci ) ( stop $0 washington : ci ) ) )
atis_3217
show me flights on wednesday morning boston to denver for united airlines first class
( lambda $0 e ( and ( flight $0 ) ( airline $0 ua : al ) ( class_type $0 first : cl ) ( during_day $0 morning : pd ) ( from $0 boston : ci ) ( to $0 denver : ci ) ( day $0 wednesday : da ) ) )
atis_4424
what is seating capacity on the aircraft 73s
( capacity 73s : ac )
atis_3131
show me flights from baltimore to philadelphia please
( lambda $0 e ( and ( flight $0 ) ( from $0 baltimore : ci ) ( to $0 philadelphia : ci ) ) )
atis_3975
what are the two american airlines flights that leave from dallas to san francisco in the evening
( lambda $0 e ( and ( flight $0 ) ( airline $0 aa : al ) ( during_day $0 evening : pd ) ( from $0 dallas : ci ) ( to $0 san_francisco : ci ) ) )
atis_1852
information on american airlines from washington to fort worth
( lambda $0 e ( and ( airline $0 aa : al ) ( from $0 washington : ci ) ( to $0 fort_worth : ci ) ) )
atis_929
how far is downtown from the airport in dallas
( lambda $0 e ( and ( miles_distant $0 ) ( to_city $0 dallas : ci ) ( from_airport $0 dallas : ci ) ) )
atis_2578
please list all the takeoffs and landings for general mitchell international
( lambda $0 e ( and ( flight $0 ) ( or ( from $0 mke : ap ) ( to $0 mke : ap ) ) ) )
atis_663
flights from newark new jersey to cleveland ohio
( lambda $0 e ( and ( flight $0 ) ( from $0 newark : ci ) ( to $0 cleveland : ci ) ) )
atis_4330
what flights leave from phoenix
( lambda $0 e ( and ( flight $0 ) ( from $0 phoenix : ci ) ) )
atis_1499
i would like the first flight from toronto to montreal next friday
( argmin $0 ( and ( flight $0 ) ( from $0 toronto : ci ) ( to $0 montreal : ci ) ( day $0 friday : da ) ) ( departure_time $0 ) )
atis_1595
i would like to leave thursday morning from indianapolis to toronto
( lambda $0 e ( and ( during_day $0 morning : pd ) ( from $0 indianapolis : ci ) ( to $0 toronto : ci ) ( day $0 thursday : da ) ) )
atis_3617
show me times for flights from san francisco to atlanta
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( from $1 san_francisco : ci ) ( to $1 atlanta : ci ) ( = ( departure_time $1 ) $0 ) ) ) )
atis_3816
what are the cities served by delta airlines
( lambda $0 e ( and ( city $0 ) ( services dl : al $0 ) ) )
atis_4744
what is the smallest aircraft available flying from pittsburgh to baltimore arriving on may seventh
( aircraft ( argmin $0 ( and ( flight $0 ) ( from $0 pittsburgh : ci ) ( to $0 baltimore : ci ) ( month_arrival $0 may : mn ) ( day_number_arrival $0 7 : dn ) ) ( capacity $0 ) ) )
atis_4518
what is the distance from los angeles international airport to los angeles
( lambda $0 e ( and ( miles_distant $0 ) ( to_city $0 los_angeles : ci ) ( from_airport $0 lga : ap ) ) )
atis_768
give me all the flights from new york to miami round trip
( lambda $0 e ( and ( flight $0 ) ( round_trip $0 ) ( from $0 new_york : ci ) ( to $0 miami : ci ) ) )
atis_3487
show me the flights from pittsburgh to baltimore
( lambda $0 e ( and ( flight $0 ) ( from $0 pittsburgh : ci ) ( to $0 baltimore : ci ) ) )
atis_4198
what flights do you have in the morning of september twentieth on united airlines from pittsburgh to san francisco and a stopover in denver
( lambda $0 e ( and ( flight $0 ) ( airline $0 ua : al ) ( during_day $0 morning : pd ) ( from $0 pittsburgh : ci ) ( to $0 san_francisco : ci ) ( stop $0 denver : ci ) ( day_number $0 20 : dn ) ( month $0 september : mn ) ) )
atis_4241
what flights from miami to indianapolis
( lambda $0 e ( and ( flight $0 ) ( from $0 miami : ci ) ( to $0 indianapolis : ci ) ) )
atis_4149
what flights are there from indianapolis to orlando
( lambda $0 e ( and ( flight $0 ) ( from $0 indianapolis : ci ) ( to $0 orlando : ci ) ) )
atis_1411
i would like a flight from denver to pittsburgh
( lambda $0 e ( and ( flight $0 ) ( from $0 denver : ci ) ( to $0 pittsburgh : ci ) ) )
atis_3433
show me the flights from chicago to indianapolis
( lambda $0 e ( and ( flight $0 ) ( from $0 chicago : ci ) ( to $0 indianapolis : ci ) ) )
atis_4004
what does co mean
co : al
atis_1879
is there a direct flight from atlanta to philadelphia that arrives in philadelphia around 12 noon
( lambda $0 e ( and ( flight $0 ) ( nonstop $0 ) ( approx_arrival_time $0 1200 : ti ) ( from $0 atlanta : ci ) ( to $0 philadelphia : ci ) ) )
atis_1448
i would like a schedule of flights from san francisco to boston on wednesday
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( from $1 san_francisco : ci ) ( to $1 boston : ci ) ( day $1 wednesday : da ) ( = ( departure_time $1 ) $0 ) ) ) )
atis_1870
is ground transportation available in st. louis
( lambda $0 e ( and ( ground_transport $0 ) ( to_city $0 st_louis : ci ) ) )
atis_1692
i'd like to book a flight from columbus to nashville please
( lambda $0 e ( and ( flight $0 ) ( from $0 columbus : ci ) ( to $0 nashville : ci ) ) )
atis_3140
show me flights from boston to san francisco arriving before 1pm
( lambda $0 e ( and ( flight $0 ) ( < ( arrival_time $0 ) 1300 : ti ) ( from $0 boston : ci ) ( to $0 san_francisco : ci ) ) )
atis_4082
what flights are available friday from san francisco to boston
( lambda $0 e ( and ( flight $0 ) ( from $0 san_francisco : ci ) ( to $0 boston : ci ) ( day $0 friday : da ) ) )
atis_2303
list wednesday night flights from oakland to salt lake city
( lambda $0 e ( and ( flight $0 ) ( during_day $0 late : pd ) ( from $0 oakland : ci ) ( to $0 salt_lake_city : ci ) ( day $0 wednesday : da ) ) )
atis_3166
show me flights from milwaukee to orlando on a thursday before noon
( lambda $0 e ( and ( flight $0 ) ( < ( departure_time $0 ) 1200 : ti ) ( from $0 milwaukee : ci ) ( to $0 orlando : ci ) ( day $0 thursday : da ) ) )
atis_4530
what is the earliest flight between boston and washington
( argmin $0 ( and ( flight $0 ) ( from $0 boston : ci ) ( to $0 washington : ci ) ) ( departure_time $0 ) )
atis_841
give me the flights from washington dc to philadelphia for december second
( lambda $0 e ( and ( flight $0 ) ( from $0 washington : ci ) ( to $0 philadelphia : ci ) ( day_number $0 2 : dn ) ( month $0 december : mn ) ) )
atis_1984
list airports in la
( lambda $0 e ( and ( airport $0 ) ( loc : t $0 los_angeles : ci ) ) )
atis_1872
is the american flight 813 from boston to oakland a flight that goes straight through from boston to oakland without stopping at another city
( lambda $0 e ( and ( flight $0 ) ( nonstop $0 ) ( airline $0 aa : al ) ( flight_number $0 813 : fn ) ( from $0 boston : ci ) ( to $0 oakland : ci ) ) )
atis_3943
what are the flights which depart from san francisco fly to washington via indianapolis and arrive by 9pm
( lambda $0 e ( and ( flight $0 ) ( < ( arrival_time $0 ) 2100 : ti ) ( from $0 san_francisco : ci ) ( to $0 washington : ci ) ( stop $0 indianapolis : ci ) ) )
atis_3779
what are all flights from san francisco to philadelphia with stops in pittsburgh
( lambda $0 e ( and ( flight $0 ) ( from $0 san_francisco : ci ) ( to $0 philadelphia : ci ) ( stop $0 pittsburgh : ci ) ) )
atis_3328
show me the cheapest round trips from dallas to baltimore
( argmin $0 ( and ( from $0 dallas : ci ) ( to $0 baltimore : ci ) ( round_trip $0 ) ) ( fare $0 ) )
atis_1957
is there limo service at pittsburgh airport
( lambda $0 e ( and ( limousine $0 ) ( from_airport $0 pit : ap ) ) )
atis_4246
what flights from new york to los angeles
( lambda $0 e ( and ( flight $0 ) ( from $0 new_york : ci ) ( to $0 los_angeles : ci ) ) )
atis_4522
what is the earliest american airlines flight that i can get first class from philadelphia to dallas
( departure_time ( argmin $0 ( and ( flight $0 ) ( airline $0 aa : al ) ( class_type $0 first : cl ) ( from $0 philadelphia : ci ) ( to $0 dallas : ci ) ) ( departure_time $0 ) ) )
atis_4366
what ground transportation is available in baltimore for the day after tomorrow
( lambda $0 e ( and ( ground_transport $0 ) ( to_city $0 baltimore : ci ) ( day_after_tomorrow $0 ) ) )
atis_857
give me the round trip coach fare from dallas to baltimore
( lambda $0 e ( exists $1 ( and ( round_trip $1 ) ( class_type $1 coach : cl ) ( from $1 dallas : ci ) ( to $1 baltimore : ci ) ( = ( fare $1 ) $0 ) ) ) )
atis_4194
what flights do you have from burbank to tacoma washington
( lambda $0 e ( and ( flight $0 ) ( from $0 burbank : ci ) ( to $0 tacoma : ci ) ) )
atis_2994
show me all flights that depart from san francisco and go to either boston philadelphia or baltimore
( lambda $0 e ( and ( flight $0 ) ( from $0 san_francisco : ci ) ( or ( to $0 boston : ci ) ( to $0 philadelphia : ci ) ( to $0 baltimore : ci ) ) ) )
atis_1303
i want a nonstop flight from indianapolis to toronto that leaves thursday morning
( lambda $0 e ( and ( flight $0 ) ( nonstop $0 ) ( during_day $0 morning : pd ) ( from $0 indianapolis : ci ) ( to $0 toronto : ci ) ( day $0 thursday : da ) ) )
atis_925
how do i get to philadelphia downtown from the airport
( lambda $0 e ( and ( to_city $0 philadelphia : ci ) ( from_airport $0 philadelphia : ci ) ) )
atis_2899
show me all flights from boston to dallas fort worth both direct and connecting that arrive before noon
( lambda $0 e ( and ( flight $0 ) ( < ( arrival_time $0 ) 1200 : ti ) ( from $0 boston : ci ) ( to $0 dallas : ci ) ( or ( nonstop $0 ) ( connecting $0 ) ) ) )
atis_1642
i'd like a flight tomorrow from columbus to houston with a stopover in nashville
( lambda $0 e ( and ( flight $0 ) ( from $0 columbus : ci ) ( to $0 houston : ci ) ( stop $0 nashville : ci ) ( tomorrow $0 ) ) )
atis_4426
what is the abbreviation for canadian airlines international
( abbrev canadian_airlines_international : al )
atis_1531
i would like to find a flight from kansas city to salt lake city on delta and arriving at about 8 o'clock in the evening could you please tell me the aircraft and the flight number thank you
( lambda $0 e ( lambda $1 e ( exists $2 ( and ( flight $2 ) ( airline $2 dl : al ) ( approx_arrival_time $2 2000 : ti ) ( from $2 kansas_city : ci ) ( to $2 salt_lake_city : ci ) ( = ( aircraft_code $2 ) $0 ) ( = ( flight_number $2 ) $1 ) ) ) ) )
atis_2215
list nonstop flights on sunday from new york to las vegas and list nonstop flights on sunday from memphis to las vegas
( lambda $0 e ( or ( and ( flight $0 ) ( nonstop $0 ) ( from $0 new_york : ci ) ( to $0 las_vegas : ci ) ( day $0 sunday : da ) ) ( and ( flight $0 ) ( nonstop $0 ) ( from $0 memphis : ci ) ( to $0 las_vegas : ci ) ( day $0 sunday : da ) ) ) )
atis_1422
i would like a flight from san francisco to pittsburgh on friday morning after 10 o'clock
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) 1000 : ti ) ( during_day $0 morning : pd ) ( from $0 san_francisco : ci ) ( to $0 pittsburgh : ci ) ( day $0 friday : da ) ) )
atis_4596
what is the fare going from baltimore to boston one way on november seventh
( lambda $0 e ( exists $1 ( and ( oneway $1 ) ( from $1 baltimore : ci ) ( to $1 boston : ci ) ( day_number $1 7 : dn ) ( month $1 november : mn ) ( = ( fare $1 ) $0 ) ) ) )
atis_3718
what aircraft is co 1209
( lambda $0 e ( exists $1 ( and ( airline $1 co : al ) ( flight_number $1 1209 : fn ) ( = ( aircraft_code $1 ) $0 ) ) ) )
atis_2728
round trip fare from baltimore to philadelphia less than 1000 dollars
( lambda $0 e ( exists $1 ( and ( round_trip $1 ) ( < ( fare $1 ) 1000 : do ) ( from $1 baltimore : ci ) ( to $1 philadelphia : ci ) ( = ( fare $1 ) $0 ) ) ) )
atis_3497
show me the flights from san diego to newark by way of houston
( lambda $0 e ( and ( flight $0 ) ( from $0 san_diego : ci ) ( to $0 newark : ci ) ( stop $0 houston : ci ) ) )
atis_1828
i'm traveling from boston to atlanta and i'd like to go sometime after 5pm but i want to know what kind of airplane it's on
( lambda $0 e ( lambda $1 e ( and ( = ( airline : e $0 ) $1 ) ( flight $0 ) ( > ( departure_time $0 ) 1700 : ti ) ( from $0 boston : ci ) ( to $0 atlanta : ci ) ) ) )
atis_2017
list all flights from baltimore to san francisco on friday
( lambda $0 e ( and ( flight $0 ) ( from $0 baltimore : ci ) ( to $0 san_francisco : ci ) ( day $0 friday : da ) ) )
atis_4918
what's the latest flight from san jose to houston
( argmax $0 ( and ( flight $0 ) ( from $0 san_jose : ci ) ( to $0 houston : ci ) ) ( departure_time $0 ) )
atis_1544
i would like to fly from atlanta to denver on september fifteenth
( lambda $0 e ( and ( flight $0 ) ( from $0 atlanta : ci ) ( to $0 denver : ci ) ( day_number $0 15 : dn ) ( month $0 september : mn ) ) )
atis_4533
what is the earliest flight departing san francisco and arriving in boston on november ninth
( argmin $0 ( and ( flight $0 ) ( from $0 san_francisco : ci ) ( to $0 boston : ci ) ( day_number $0 9 : dn ) ( month $0 november : mn ) ) ( departure_time $0 ) )
atis_1273
i want a flight from boston to atlanta
( lambda $0 e ( and ( flight $0 ) ( from $0 boston : ci ) ( to $0 atlanta : ci ) ) )
atis_1288
i want a flight from pittsburgh to los angeles that departs after 6pm on thursday
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) 1800 : ti ) ( from $0 pittsburgh : ci ) ( to $0 los_angeles : ci ) ( day $0 thursday : da ) ) )
atis_1493
i would like the cheapest flight from pittsburgh to atlanta leaving april twenty fifth and returning may sixth
( argmin $0 ( and ( flight $0 ) ( from $0 pittsburgh : ci ) ( to $0 atlanta : ci ) ( day_number $0 25 : dn ) ( month $0 april : mn ) ( round_trip $0 ) ) ( fare $0 ) )
atis_3874
what are the flights from baltimore to dallas on sunday afternoon
( lambda $0 e ( and ( flight $0 ) ( during_day $0 afternoon : pd ) ( from $0 baltimore : ci ) ( to $0 dallas : ci ) ( day $0 sunday : da ) ) )
atis_1891
is there a flight from atlanta to san francisco which connects in dallas
( lambda $0 e ( and ( flight $0 ) ( from $0 atlanta : ci ) ( to $0 san_francisco : ci ) ( stop $0 dallas : ci ) ) )
atis_1906
is there a flight on continental airlines from boston to denver
( lambda $0 e ( and ( flight $0 ) ( airline $0 co : al ) ( from $0 boston : ci ) ( to $0 denver : ci ) ) )
atis_3135
show me flights from boston to denver on tuesday
( lambda $0 e ( and ( flight $0 ) ( from $0 boston : ci ) ( to $0 denver : ci ) ( day $0 tuesday : da ) ) )