qid
stringlengths
6
9
source
stringlengths
7
216
target
stringlengths
6
409
atis_2439
on august thirtieth please schedule me on a flight from denver to san francisco early in the morning
( lambda $0 e ( and ( flight $0 ) ( during_day $0 early : pd ) ( during_day $0 morning : pd ) ( from $0 denver : ci ) ( to $0 san_francisco : ci ) ( day_number $0 30 : dn ) ( month $0 august : mn ) ) )
atis_132
are there any flights from denver to pittsburgh with a stopover in atlanta
( lambda $0 e ( and ( flight $0 ) ( from $0 denver : ci ) ( to $0 pittsburgh : ci ) ( stop $0 atlanta : ci ) ) )
atis_1770
i'd like to leave from boston on tuesday and i'd like to leave sometime in the morning
( lambda $0 e ( and ( during_day $0 morning : pd ) ( from $0 boston : ci ) ( day $0 tuesday : da ) ) )
atis_1494
i would like the cheapest one way fare from dallas to denver
( min $0 ( exists $1 ( and ( oneway $1 ) ( from $1 dallas : ci ) ( to $1 denver : ci ) ( = ( fare $1 ) $0 ) ) ) )
atis_2743
round trip houston to las vegas nonstop
( lambda $0 e ( and ( to $0 las_vegas : ci ) ( round_trip $0 ) ( from $0 houston : ci ) ( nonstop $0 ) ) )
atis_1667
i'd like flight information between boston and washington september third
( lambda $0 e ( and ( flight $0 ) ( from $0 boston : ci ) ( to $0 washington : ci ) ( day_number $0 3 : dn ) ( month $0 september : mn ) ) )
atis_299
could you show me all the flights from oakland to salt lake city
( lambda $0 e ( and ( flight $0 ) ( from $0 oakland : ci ) ( to $0 salt_lake_city : ci ) ) )
atis_616
flights from cincinnati to dallas departing after 718am
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) 718 : ti ) ( from $0 cincinnati : ci ) ( to $0 dallas : ci ) ) )
atis_2729
round trip fares from baltimore to philadelphia less than 1000 dollars or round trip fares from denver to philadelphia less than 1000 dollars or round trip fares from pittsburgh to philadelphia less than 1000 dollars
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( round_trip $1 ) ( or ( and ( < ( fare $1 ) 1000 : do ) ( from $1 denver : ci ) ( to $1 philadelphia : ci ) ) ( and ( < ( fare $1 ) 1000 : do ) ( from $1 pittsburgh : ci ) ( to $1 philadelphia : ci ) ) ( and ( < ( fare $1 ) 1000 : do ) ( from $1 baltimore : ci ) ( to $1 philadelphia : ci ) ) ) ( = ( fare $1 ) $0 ) ) ) )
atis_3820
what are the classes of service on delta airlines
( lambda $0 e ( exists $1 ( and ( airline $1 dl : al ) ( = ( booking_class $1 ) $0 ) ) ) )
atis_1059
i live in washington and i would like to make a trip to san francisco can you tell me which airlines connect with those two cities
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( from $1 washington : ci ) ( to $1 san_francisco : ci ) ( = ( airline : e $1 ) $0 ) ) ) )
atis_4534
what is the earliest flight departing san francisco and arriving in oakland on november eighth
( argmin $0 ( and ( flight $0 ) ( from $0 san_francisco : ci ) ( to $0 oakland : ci ) ( day_number $0 8 : dn ) ( month $0 november : mn ) ) ( departure_time $0 ) )
atis_4779
what kind of ground transportation is available in las vegas
( lambda $0 e ( and ( ground_transport $0 ) ( from_airport $0 las_vegas : ci ) ) )
atis_4574
what is the earliest flight that eastern has between boston and washington
( argmin $0 ( and ( flight $0 ) ( airline $0 ea : al ) ( from $0 boston : ci ) ( to $0 washington : ci ) ) ( departure_time $0 ) )
atis_4874
what's the cheapest flight from atlanta to baltimore
( argmin $0 ( and ( flight $0 ) ( from $0 atlanta : ci ) ( to $0 baltimore : ci ) ) ( fare $0 ) )
atis_4325
what flights leave from nashville to milwaukee
( lambda $0 e ( and ( flight $0 ) ( from $0 nashville : ci ) ( to $0 milwaukee : ci ) ) )
atis_703
flying from pittsburgh to philadelphia on us air
( lambda $0 e ( and ( flight $0 ) ( airline $0 us : al ) ( from $0 pittsburgh : ci ) ( to $0 philadelphia : ci ) ) )
atis_1128
i need a flight from san francisco to boston that leaves after 10pm
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) 2200 : ti ) ( from $0 san_francisco : ci ) ( to $0 boston : ci ) ) )
atis_2234
list the cheapest one way flight from miami florida to charlotte north carolina
( argmin $0 ( and ( flight $0 ) ( oneway $0 ) ( from $0 miami : ci ) ( to $0 charlotte : ci ) ) ( fare $0 ) )
atis_3663
tell me about the ground transportation in chicago
( lambda $0 e ( and ( ground_transport $0 ) ( to_city $0 chicago : ci ) ) )
atis_4673
what is the latest flight leaving washington for denver
( argmax $0 ( and ( flight $0 ) ( from $0 washington : ci ) ( to $0 denver : ci ) ) ( departure_time $0 ) )
atis_414
does delta airlines fly from boston to washington dc
( lambda $0 e ( and ( flight $0 ) ( airline $0 dl : al ) ( from $0 boston : ci ) ( to $0 washington : ci ) ) )
atis_3558
show me the last flight available in the evening from boston to dc on july twenty first
( argmax $0 ( and ( flight $0 ) ( during_day $0 evening : pd ) ( from $0 boston : ci ) ( to $0 washington : ci ) ( day_number $0 21 : dn ) ( month $0 july : mn ) ) ( departure_time $0 ) )
atis_211
can you list flights from washington to toronto with the lowest one way fares
( argmin $0 ( and ( flight $0 ) ( oneway $0 ) ( from $0 washington : ci ) ( to $0 toronto : ci ) ) ( fare $0 ) )
atis_4824
what times does continental depart from boston to san francisco
( lambda $0 e ( exists $1 ( and ( airline $1 co : al ) ( from $1 boston : ci ) ( to $1 san_francisco : ci ) ( = ( departure_time $1 ) $0 ) ) ) )
atis_2285
list the nonstop flights on wednesday june second from miami to baltimore arriving in baltimore between 1115am and 1245pm
( lambda $0 e ( and ( flight $0 ) ( nonstop $0 ) ( > ( arrival_time $0 ) 1115 : ti ) ( < ( arrival_time $0 ) 1245 : ti ) ( from $0 miami : ci ) ( to $0 baltimore : ci ) ( day $0 wednesday : da ) ( day_number $0 2 : dn ) ( month $0 june : mn ) ) )
atis_3010
show me all prices of first class from baltimore to dallas
( lambda $0 e ( exists $1 ( and ( class_type $1 first : cl ) ( from $1 baltimore : ci ) ( to $1 dallas : ci ) ( = ( fare $1 ) $0 ) ) ) )
atis_2122
list daily flights from oakland to boston using continental airlines
( lambda $0 e ( and ( flight $0 ) ( daily $0 ) ( airline $0 co : al ) ( from $0 oakland : ci ) ( to $0 boston : ci ) ) )
atis_4532
what is the earliest flight between pittsburgh and denver that serves breakfast
( argmin $0 ( and ( flight $0 ) ( meal $0 breakfast : me ) ( from $0 pittsburgh : ci ) ( to $0 denver : ci ) ) ( departure_time $0 ) )
atis_1646
i'd like a limo in denver on august seventh
( lambda $0 e ( and ( limousine $0 ) ( to_city $0 denver : ci ) ( day_number $0 7 : dn ) ( month $0 august : mn ) ) )
atis_940
how long is a trip from philadelphia airport to downtown philadelphia
( lambda $0 e ( exists $1 ( and ( = ( minutes_distant $1 ) $0 ) ( to_city $1 philadelphia : ci ) ( from_airport $1 philadelphia : ci ) ) ) )
atis_5017
which nonstop flight from atlanta to oakland leaves in the afternoon and arrives at 5pm
( lambda $0 e ( and ( flight $0 ) ( nonstop $0 ) ( arrival_time $0 1700 : ti ) ( during_day $0 afternoon : pd ) ( from $0 atlanta : ci ) ( to $0 oakland : ci ) ) )
atis_3914
what are the flights from milwaukee to seattle
( lambda $0 e ( and ( flight $0 ) ( from $0 milwaukee : ci ) ( to $0 seattle : ci ) ) )
atis_713
from las vegas to new york a nonstop twa and fare
( lambda $0 e ( lambda $1 e ( and ( nonstop $0 ) ( airline $0 tw : al ) ( from $0 las_vegas : ci ) ( to $0 new_york : ci ) ( = ( fare $0 ) $1 ) ) ) )
atis_1078
i need a flight from boston to san francisco leaving in the afternoon and arriving in the evening thank you
( lambda $0 e ( and ( flight $0 ) ( during_day_arrival $0 evening : pd ) ( during_day $0 afternoon : pd ) ( from $0 boston : ci ) ( to $0 san_francisco : ci ) ) )
atis_4695
what is the lowest cost fare that delta has between boston and san francisco
( min $0 ( exists $1 ( and ( airline $1 dl : al ) ( from $1 boston : ci ) ( to $1 san_francisco : ci ) ( = ( fare $1 ) $0 ) ) ) )
atis_4608
what is the first class fare from boston to dallas
( lambda $0 e ( exists $1 ( and ( class_type $1 first : cl ) ( from $1 boston : ci ) ( to $1 dallas : ci ) ( = ( fare $1 ) $0 ) ) ) )
atis_1955
is there ground transportation in oakland
( lambda $0 e ( and ( ground_transport $0 ) ( to_city $0 oakland : ci ) ) )
atis_4828
what type of aircraft are flying from cleveland to dallas before noon
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( < ( departure_time $1 ) 1200 : ti ) ( from $1 cleveland : ci ) ( to $1 dallas : ci ) ( = ( aircraft_code $1 ) $0 ) ) ) )
atis_779
give me flights on american airlines from milwaukee to phoenix
( lambda $0 e ( and ( flight $0 ) ( airline $0 aa : al ) ( from $0 milwaukee : ci ) ( to $0 phoenix : ci ) ) )
atis_796
give me the cheapest round trip flights from indianapolis to orlando around december twenty fifth
( argmin $0 ( and ( flight $0 ) ( from $0 indianapolis : ci ) ( to $0 orlando : ci ) ( day_number $0 25 : dn ) ( month $0 december : mn ) ( round_trip $0 ) ) ( fare $0 ) )
atis_2481
phoenix to denver
( lambda $0 e ( and ( from $0 phoenix : ci ) ( to $0 denver : ci ) ) )
atis_4543
what is the earliest flight from boston to philadelphia
( argmin $0 ( and ( flight $0 ) ( from $0 boston : ci ) ( to $0 philadelphia : ci ) ) ( departure_time $0 ) )
atis_4174
what flights are there tomorrow from tacoma to san jose
( lambda $0 e ( and ( flight $0 ) ( from $0 tacoma : ci ) ( to $0 san_jose : ci ) ( tomorrow $0 ) ) )
atis_4854
what types of ground transportation are available in philadelphia
( lambda $0 e ( and ( ground_transport $0 ) ( to_city $0 philadelphia : ci ) ) )
atis_936
how long does it take to get from atlanta airport into the city of atlanta
( lambda $0 e ( exists $1 ( and ( from $1 denver : ci ) ( to $1 oakland : ci ) ( = ( time_elapsed $1 ) $0 ) ) ) )
atis_351
do any us air flights leave from san francisco
( lambda $0 e ( and ( flight $0 ) ( airline $0 us : al ) ( from $0 san_francisco : ci ) ) )
atis_2457
on september fourth i'll be traveling from pittsburgh to atlanta can you tell me what flight would be the cheapest
( argmin $0 ( and ( flight $0 ) ( from $0 pittsburgh : ci ) ( to $0 atlanta : ci ) ( day_number $0 4 : dn ) ( month $0 september : mn ) ) ( fare $0 ) )
atis_1733
i'd like to fly from minneapolis to long beach two days from today in the early morning
( lambda $0 e ( and ( flight $0 ) ( during_day $0 early : pd ) ( during_day $0 morning : pd ) ( from $0 minneapolis : ci ) ( to $0 long_beach : ci ) ( days_from_today $0 2 : i ) ) )
atis_365
do you have a flight from philadelphia to san francisco with a stopover in dallas
( lambda $0 e ( and ( flight $0 ) ( from $0 philadelphia : ci ) ( to $0 san_francisco : ci ) ( stop $0 dallas : ci ) ) )
atis_2284
list the nonstop flights from miami to washington dc
( lambda $0 e ( and ( flight $0 ) ( nonstop $0 ) ( from $0 miami : ci ) ( to $0 washington : ci ) ) )
atis_3374
show me the flight schedule from pittsburgh to san francisco
( lambda $0 e ( exists $1 ( and ( from $1 pittsburgh : ci ) ( to $1 san_francisco : ci ) ( = ( departure_time $1 ) $0 ) ) ) )
atis_5027
would you be able to put me on a flight with delta leaving the morning of august twenty seventh from baltimore to san francisco
( lambda $0 e ( and ( flight $0 ) ( airline $0 dl : al ) ( during_day $0 morning : pd ) ( from $0 baltimore : ci ) ( to $0 san_francisco : ci ) ( day_number $0 27 : dn ) ( month $0 august : mn ) ) )
atis_1015
how much does it cost to fly one way from boston to washington first class
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( oneway $1 ) ( class_type $1 first : cl ) ( from $1 boston : ci ) ( to $1 washington : ci ) ( = ( fare $1 ) $0 ) ) ) )
atis_1081
i need a flight from chicago to dallas on continental on june fifth
( lambda $0 e ( and ( flight $0 ) ( airline $0 co : al ) ( from $0 chicago : ci ) ( to $0 dallas : ci ) ( day_number $0 5 : dn ) ( month $0 june : mn ) ) )
atis_2397
okay and then from pittsburgh i'd like to travel to atlanta on september fourth
( lambda $0 e ( and ( from $0 pittsburgh : ci ) ( to $0 atlanta : ci ) ( day_number $0 4 : dn ) ( month $0 september : mn ) ) )
atis_4638
what is the last flight from atlanta to boston
( argmax $0 ( and ( flight $0 ) ( from $0 atlanta : ci ) ( to $0 boston : ci ) ) ( departure_time $0 ) )
atis_744
get the saturday fare from washington to toronto
( lambda $0 e ( exists $1 ( and ( from $1 washington : ci ) ( to $1 toronto : ci ) ( day $1 saturday : da ) ( = ( fare $1 ) $0 ) ) ) )
atis_686
flights from san francisco august one
( lambda $0 e ( and ( flight $0 ) ( from $0 san_francisco : ci ) ( day_number $0 1 : dn ) ( month $0 august : mn ) ) )
atis_963
how many first class flights does united have leaving from all cities today
( count $0 ( and ( flight $0 ) ( airline $0 ua : al ) ( class_type $0 first : cl ) ( today $0 ) ) )
atis_677
flights from phoenix to las vegas
( lambda $0 e ( and ( flight $0 ) ( from $0 phoenix : ci ) ( to $0 las_vegas : ci ) ) )
atis_3986
what city is the airport mco in
( lambda $0 e ( and ( city $0 ) ( loc : t mco : ap $0 ) ) )
atis_3572
show me the least expensive flight leaving miami on sunday after 12 o'clock noon and arriving cleveland
( argmin $0 ( and ( flight $0 ) ( > ( departure_time $0 ) 1200 : ti ) ( from $0 miami : ci ) ( to $0 cleveland : ci ) ( day $0 sunday : da ) ) ( fare $0 ) )
atis_1719
i'd like to fly from atlanta to denver on august twenty ninth
( lambda $0 e ( and ( flight $0 ) ( from $0 atlanta : ci ) ( to $0 denver : ci ) ( day_number $0 29 : dn ) ( month $0 august : mn ) ) )
atis_4819
what time does the flight leave denver going to san francisco on continental airlines
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( airline $1 co : al ) ( from $1 denver : ci ) ( to $1 san_francisco : ci ) ( = ( departure_time $1 ) $0 ) ) ) )
atis_1235
i need to fly from boston to denver on to san francisco and back
( lambda $0 e ( lambda $1 e ( lambda $2 e ( and ( flight $0 ) ( flight $1 ) ( flight $2 ) ( from $0 boston : ci ) ( to $0 denver : ci ) ( from $1 denver : ci ) ( to $1 san_francisco : ci ) ( from $2 san_francisco : ci ) ( to $2 boston : ci ) ) ) ) )
atis_3180
show me flights from philadelphia to oakland on friday
( lambda $0 e ( and ( flight $0 ) ( from $0 philadelphia : ci ) ( to $0 oakland : ci ) ( day $0 friday : da ) ) )
atis_2396
okay and on may four i would like to go from atlanta to denver leaving early in the morning around 8
( lambda $0 e ( and ( from $0 atlanta : ci ) ( approx_departure_time $0 800 : ti ) ( during_day $0 morning : pd ) ( during_day $0 early : pd ) ( to $0 denver : ci ) ( month $0 may : mn ) ( day_number $0 4 : dn ) ) )
atis_2263
list the flights from indianapolis to memphis that leave before noon
( lambda $0 e ( and ( flight $0 ) ( < ( departure_time $0 ) 1200 : ti ) ( from $0 indianapolis : ci ) ( to $0 memphis : ci ) ) )
atis_3484
show me the flights from philadelphia to dallas with one stop
( lambda $0 e ( and ( flight $0 ) ( stops $0 1 : i ) ( from $0 philadelphia : ci ) ( to $0 dallas : ci ) ) )
atis_4668
what is the latest flight in the day to arrive in boston from baltimore
( argmax $0 ( and ( flight $0 ) ( from $0 baltimore : ci ) ( to $0 boston : ci ) ) ( departure_time $0 ) )
atis_1236
i need to fly from boston to denver this monday
( lambda $0 e ( and ( flight $0 ) ( from $0 boston : ci ) ( to $0 denver : ci ) ( day $0 monday : da ) ) )
atis_1037
how much is the cheapest flight from denver to pittsburgh
( fare ( argmin $0 ( and ( flight $0 ) ( from $0 denver : ci ) ( to $0 pittsburgh : ci ) ) ( fare $0 ) ) )
atis_2471
only show continental flights
( lambda $0 e ( and ( flight $0 ) ( airline $0 co : al ) ) )
atis_2676
please show me all the flights from denver to oakland that are nonstop
( lambda $0 e ( and ( flight $0 ) ( nonstop $0 ) ( from $0 denver : ci ) ( to $0 oakland : ci ) ) )
atis_3453
show me the flights from denver to philadelphia
( lambda $0 e ( and ( flight $0 ) ( from $0 denver : ci ) ( to $0 philadelphia : ci ) ) )
atis_3598
show me the price of all flights from atlanta to washington dc
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( from $1 atlanta : ci ) ( to $1 washington : ci ) ( = ( fare $1 ) $0 ) ) ) )
atis_458
explain fare code qx
qx : fb
atis_4685
what is the least expensive flight from atlanta to denver leaving on october twelfth
( argmin $0 ( and ( flight $0 ) ( from $0 atlanta : ci ) ( to $0 denver : ci ) ( day_number $0 12 : dn ) ( month $0 october : mn ) ) ( fare $0 ) )
atis_955
how many different flight classes are there
( count $0 ( class_of_service $0 ) )
atis_924
how do i get from the airport to downtown in tacoma
( lambda $0 e ( and ( to_city $0 tacoma : ci ) ( from_airport $0 tacoma : ci ) ) )
atis_4852
what types of ground transportation are available in denver
( lambda $0 e ( and ( ground_transport $0 ) ( to_city $0 denver : ci ) ) )
atis_2487
pittsburgh to atlanta wednesday
( lambda $0 e ( and ( from $0 pittsburgh : ci ) ( to $0 atlanta : ci ) ( day $0 wednesday : da ) ) )
atis_574
flight information from denver to san francisco
( lambda $0 e ( and ( flight $0 ) ( from $0 denver : ci ) ( to $0 san_francisco : ci ) ) )
atis_3515
show me the flights from toronto to cincinnati
( lambda $0 e ( and ( flight $0 ) ( from $0 toronto : ci ) ( to $0 cincinnati : ci ) ) )
atis_719
from new york to toronto on thursday morning
( lambda $0 e ( and ( during_day $0 morning : pd ) ( from $0 new_york : ci ) ( to $0 toronto : ci ) ( day $0 thursday : da ) ) )
atis_1195
i need ground transportation in dallas please show me what's available
( lambda $0 e ( and ( ground_transport $0 ) ( to_city $0 dallas : ci ) ) )
atis_1074
i need a flight from baltimore to seattle
( lambda $0 e ( and ( flight $0 ) ( from $0 baltimore : ci ) ( to $0 seattle : ci ) ) )
atis_4020
what does fare code qw mean
qw : fb
atis_2377
now i'd like to see flights from detroit to st. petersburg on the next tuesday
( lambda $0 e ( and ( flight $0 ) ( from $0 detroit : ci ) ( to $0 st_petersburg : ci ) ( day $0 tuesday : da ) ) )
atis_3378
show me the flights arriving at love field from all other airports
( lambda $0 e ( and ( flight $0 ) ( to $0 dal : ap ) ( exists $1 ( and ( airport $1 ) ( from $0 $1 ) ) ) ) )
atis_4016
what does fare code h mean
h : fb
atis_3095
show me fares from philadelphia to san francisco on thursday morning
( lambda $0 e ( exists $1 ( and ( during_day $1 morning : pd ) ( from $1 philadelphia : ci ) ( to $1 san_francisco : ci ) ( day $1 thursday : da ) ( = ( fare $1 ) $0 ) ) ) )
atis_1553
i would like to fly from boston to denver early in the morning
( lambda $0 e ( and ( flight $0 ) ( during_day $0 early : pd ) ( during_day $0 morning : pd ) ( from $0 boston : ci ) ( to $0 denver : ci ) ) )
atis_3530
show me the flights on delta or twa which go through atlanta
( lambda $0 e ( and ( flight $0 ) ( or ( airline $0 dl : al ) ( airline $0 tw : al ) ) ( stop $0 atlanta : ci ) ) )
atis_4300
what flights go from pittsburgh to baltimore after 8 o'clock next wednesday
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) 800 : ti ) ( from $0 pittsburgh : ci ) ( to $0 baltimore : ci ) ( day $0 wednesday : da ) ) )
atis_1032
how much is a us air boston to pittsburgh daily nonstop flight
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( nonstop $1 ) ( daily $1 ) ( airline $1 us : al ) ( from $1 boston : ci ) ( to $1 pittsburgh : ci ) ( = ( fare $1 ) $0 ) ) ) )
atis_1856
information on flights from boston to washington
( lambda $0 e ( and ( flight $0 ) ( from $0 boston : ci ) ( to $0 washington : ci ) ) )
atis_4048
what does the fare code qx mean
qx : fb
atis_547
first flights and fares from pittsburgh to atlanta on a thursday
( lambda $0 e ( lambda $1 e ( and ( equals $0 ( argmin $2 ( and ( flight $2 ) ( from $2 pittsburgh : ci ) ( to $2 atlanta : ci ) ( day $2 thursday : da ) ) ( departure_time $2 ) ) ) ( = ( fare $0 ) $1 ) ) ) )