qid
stringlengths 6
9
| source
stringlengths 6
259
| target
stringlengths 6
409
| anonymized_target
stringlengths 16
454
|
---|---|---|---|
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 ) ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( < ( arrival_time $0 ) ANON_ENTITY : ti ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( or ( nonstop $0 ) ( connecting $0 ) ) ) )
|
atis_3233
|
show me ground transportation in philadelphia on monday morning
|
( lambda $0 e ( and ( ground_transport $0 ) ( to_city $0 philadelphia : ci ) ( during_day $0 morning : pd ) ( day $0 monday : da ) ) )
|
( lambda $0 e ( and ( ground_transport $0 ) ( to_city $0 ANON_ENTITY : ci ) ( during_day $0 ANON_ENTITY : pd ) ( day $0 ANON_ENTITY : da ) ) )
|
atis_4706
|
what is the most expensive flight from boston to dallas round trip
|
( argmax $0 ( and ( flight $0 ) ( from $0 boston : ci ) ( to $0 dallas : ci ) ( round_trip $0 ) ) ( fare $0 ) )
|
( argmax $0 ( and ( flight $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( round_trip $0 ) ) ( fare $0 ) )
|
atis_3350
|
show me the earliest nonstop flight from dallas to houston
|
( argmin $0 ( and ( flight $0 ) ( nonstop $0 ) ( from $0 dallas : ci ) ( to $0 houston : ci ) ) ( departure_time $0 ) )
|
( argmin $0 ( and ( flight $0 ) ( nonstop $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) ( departure_time $0 ) )
|
atis_4583
|
what is the earliest nonstop flight from washington to san francisco
|
( argmin $0 ( and ( flight $0 ) ( nonstop $0 ) ( from $0 washington : ci ) ( to $0 san_francisco : ci ) ) ( departure_time $0 ) )
|
( argmin $0 ( and ( flight $0 ) ( nonstop $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) ( departure_time $0 ) )
|
atis_4584
|
what is the earliest united airlines flight flying from denver to baltimore and arriving on july fourth
|
( argmin $0 ( and ( flight $0 ) ( airline $0 ua : al ) ( from $0 denver : ci ) ( to $0 baltimore : ci ) ( day_number $0 4 : dn ) ( month $0 july : mn ) ) ( departure_time $0 ) )
|
( argmin $0 ( and ( flight $0 ) ( airline $0 ANON_ENTITY : al ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day_number $0 ANON_ENTITY : dn ) ( month $0 ANON_ENTITY : mn ) ) ( departure_time $0 ) )
|
atis_4790
|
what limousine service in los angeles
|
( lambda $0 e ( and ( limousine $0 ) ( to_city $0 los_angeles : ci ) ) )
|
( lambda $0 e ( and ( limousine $0 ) ( to_city $0 ANON_ENTITY : ci ) ) )
|
atis_4791
|
what limousine service in toronto
|
( lambda $0 e ( and ( limousine $0 ) ( to_city $0 toronto : ci ) ) )
|
( lambda $0 e ( and ( limousine $0 ) ( to_city $0 ANON_ENTITY : ci ) ) )
|
atis_4792
|
what limousine service is in boston
|
( lambda $0 e ( and ( limousine $0 ) ( to_city $0 boston : ci ) ) )
|
( lambda $0 e ( and ( limousine $0 ) ( to_city $0 ANON_ENTITY : ci ) ) )
|
atis_2943
|
show me all flights from orlando to san diego on a boeing 737
|
( lambda $0 e ( and ( flight $0 ) ( manufacturer $0 boeing : mf ) ( aircraft_code $0 737 : ac ) ( from $0 orlando : ci ) ( to $0 san_diego : ci ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( manufacturer $0 ANON_ENTITY : mf ) ( aircraft_code $0 ANON_ENTITY : ac ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) )
|
atis_2972
|
show me all flights from san diego to phoenix on a boeing 737
|
( lambda $0 e ( and ( flight $0 ) ( manufacturer $0 boeing : mf ) ( aircraft_code $0 737 : ac ) ( from $0 san_diego : ci ) ( to $0 phoenix : ci ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( manufacturer $0 ANON_ENTITY : mf ) ( aircraft_code $0 ANON_ENTITY : ac ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) )
|
atis_24
|
all flights and fares from denver to pittsburgh on us air number 1039 on a thursday
|
( lambda $0 e ( lambda $1 e ( and ( flight $0 ) ( airline $0 us : al ) ( flight_number $0 1039 : fn ) ( from $0 denver : ci ) ( to $0 pittsburgh : ci ) ( day $0 thursday : da ) ( = ( fare $0 ) $1 ) ) ) )
|
( lambda $0 e ( lambda $1 e ( and ( flight $0 ) ( airline $0 ANON_ENTITY : al ) ( flight_number $0 ANON_ENTITY : fn ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day $0 ANON_ENTITY : da ) ( = ( fare $0 ) $1 ) ) ) )
|
atis_3016
|
show me all the cheapest fares from new york to miami leaving on tuesday
|
( min $0 ( exists $1 ( and ( from $1 new_york : ci ) ( to $1 miami : ci ) ( day $1 tuesday : da ) ( = ( fare $1 ) $0 ) ) ) )
|
( min $0 ( exists $1 ( and ( from $1 ANON_ENTITY : ci ) ( to $1 ANON_ENTITY : ci ) ( day $1 ANON_ENTITY : da ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_3305
|
show me the cheapest fares from miami to new york leaving on a sunday
|
( min $0 ( exists $1 ( and ( from $1 miami : ci ) ( to $1 new_york : ci ) ( day $1 sunday : da ) ( = ( fare $1 ) $0 ) ) ) )
|
( min $0 ( exists $1 ( and ( from $1 ANON_ENTITY : ci ) ( to $1 ANON_ENTITY : ci ) ( day $1 ANON_ENTITY : da ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_2159
|
list flights from indianapolis to memphis with fares on monday
|
( lambda $0 e ( lambda $1 e ( and ( flight $0 ) ( from $0 indianapolis : ci ) ( to $0 memphis : ci ) ( day $0 monday : da ) ( = ( fare $0 ) $1 ) ) ) )
|
( lambda $0 e ( lambda $1 e ( and ( flight $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day $0 ANON_ENTITY : da ) ( = ( fare $0 ) $1 ) ) ) )
|
atis_3386
|
show me the flights available from san francisco to pittsburgh for tuesday and also the price
|
( lambda $0 e ( lambda $1 e ( and ( flight $0 ) ( from $0 san_francisco : ci ) ( to $0 pittsburgh : ci ) ( day $0 tuesday : da ) ( = ( fare $0 ) $1 ) ) ) )
|
( lambda $0 e ( lambda $1 e ( and ( flight $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day $0 ANON_ENTITY : da ) ( = ( fare $0 ) $1 ) ) ) )
|
atis_3677
|
thank you for that information now i would like to book a flight from philadelphia to boston on the night of april sixteen around 9 o'clock
|
( lambda $0 e ( and ( flight $0 ) ( from $0 philadelphia : ci ) ( to $0 boston : ci ) ( during_day $0 late : pd ) ( month $0 april : mn ) ( approx_departure_time $0 2100 : ti ) ( day_number $0 16 : dn ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( during_day $0 ANON_ENTITY : pd ) ( month $0 ANON_ENTITY : mn ) ( approx_departure_time $0 ANON_ENTITY : ti ) ( day_number $0 ANON_ENTITY : dn ) ) )
|
atis_379
|
do you have any airlines that would stop at denver on the way from baltimore to san francisco
|
( lambda $0 e ( exists $1 ( and ( from $1 baltimore : ci ) ( to $1 san_francisco : ci ) ( stop $1 denver : ci ) ( = ( airline : e $1 ) $0 ) ) ) )
|
( lambda $0 e ( exists $1 ( and ( from $1 ANON_ENTITY : ci ) ( to $1 ANON_ENTITY : ci ) ( stop $1 ANON_ENTITY : ci ) ( = ( ANON_ENTITY : e $1 ) $0 ) ) ) )
|
atis_4979
|
which airlines go from san francisco to washington by way of indianapolis
|
( lambda $0 e ( exists $1 ( and ( from $1 san_francisco : ci ) ( to $1 washington : ci ) ( stop $1 indianapolis : ci ) ( = ( airline : e $1 ) $0 ) ) ) )
|
( lambda $0 e ( exists $1 ( and ( from $1 ANON_ENTITY : ci ) ( to $1 ANON_ENTITY : ci ) ( stop $1 ANON_ENTITY : ci ) ( = ( ANON_ENTITY : e $1 ) $0 ) ) ) )
|
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 ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( turboprop $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day_number $0 ANON_ENTITY : dn ) ( month $0 ANON_ENTITY : mn ) ) )
|
atis_4177
|
what flights arrive in chicago on sunday on continental
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 co : al ) ( to $0 chicago : ci ) ( day_arrival $0 sunday : da ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 ANON_ENTITY : al ) ( to $0 ANON_ENTITY : ci ) ( day_arrival $0 ANON_ENTITY : da ) ) )
|
atis_4610
|
what is the first class fare on united flight 352 from denver to boston
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( airline $1 ua : al ) ( class_type $1 first : cl ) ( flight_number $1 352 : fn ) ( from $1 denver : ci ) ( to $1 boston : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( airline $1 ANON_ENTITY : al ) ( class_type $1 ANON_ENTITY : cl ) ( flight_number $1 ANON_ENTITY : fn ) ( from $1 ANON_ENTITY : ci ) ( to $1 ANON_ENTITY : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_2564
|
please list all flights on northwest and united airlines that go to denver
|
( lambda $0 e ( and ( flight $0 ) ( or ( airline $0 ua : al ) ( airline $0 nw : al ) ) ( to $0 denver : ci ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( or ( airline $0 ANON_ENTITY : al ) ( airline $0 ANON_ENTITY : al ) ) ( to $0 ANON_ENTITY : ci ) ) )
|
atis_2566
|
please list all flights on united airlines and northwest which go to denver
|
( lambda $0 e ( and ( flight $0 ) ( or ( airline $0 ua : al ) ( airline $0 nw : al ) ) ( to $0 denver : ci ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( or ( airline $0 ANON_ENTITY : al ) ( airline $0 ANON_ENTITY : al ) ) ( to $0 ANON_ENTITY : ci ) ) )
|
atis_1474
|
i would like information on flights from dallas to atlanta arriving in atlanta on tuesday morning
|
( lambda $0 e ( and ( flight $0 ) ( during_day_arrival $0 morning : pd ) ( from $0 dallas : ci ) ( to $0 atlanta : ci ) ( day $0 tuesday : da ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( during_day_arrival $0 ANON_ENTITY : pd ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day $0 ANON_ENTITY : da ) ) )
|
atis_2372
|
now i need flights leaving from atlanta and arriving in philadelphia on wednesday morning
|
( lambda $0 e ( and ( flight $0 ) ( during_day_arrival $0 morning : pd ) ( from $0 atlanta : ci ) ( to $0 philadelphia : ci ) ( day $0 wednesday : da ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( during_day_arrival $0 ANON_ENTITY : pd ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day $0 ANON_ENTITY : da ) ) )
|
atis_1256
|
i need to make a trip starting in boston going to dallas denver oakland and back to boston
|
( lambda $0 e ( lambda $1 e ( lambda $2 e ( lambda $3 e ( and ( flight $0 ) ( flight $1 ) ( flight $2 ) ( flight $3 ) ( from $0 boston : ci ) ( to $0 dallas : ci ) ( from $1 dallas : ci ) ( to $1 denver : ci ) ( from $2 denver : ci ) ( to $2 oakland : ci ) ( from $3 oakland : ci ) ( to $3 boston : ci ) ) ) ) ) )
|
( lambda $0 e ( lambda $1 e ( lambda $2 e ( lambda $3 e ( and ( flight $0 ) ( flight $1 ) ( flight $2 ) ( flight $3 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( from $1 ANON_ENTITY : ci ) ( to $1 ANON_ENTITY : ci ) ( from $2 ANON_ENTITY : ci ) ( to $2 ANON_ENTITY : ci ) ( from $3 ANON_ENTITY : ci ) ( to $3 ANON_ENTITY : ci ) ) ) ) ) )
|
atis_4775
|
what kind of airplanes are used by delta airlines flying between washington and denver
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( airline $1 dl : al ) ( from $1 washington : ci ) ( to $1 denver : ci ) ( = ( aircraft_code $1 ) $0 ) ) ) )
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( airline $1 ANON_ENTITY : al ) ( from $1 ANON_ENTITY : ci ) ( to $1 ANON_ENTITY : ci ) ( = ( aircraft_code $1 ) $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 ) ) )
|
( count $0 ( and ( flight $0 ) ( airline $0 ANON_ENTITY : al ) ( from $0 ANON_ENTITY : ci ) ( day_number $0 ANON_ENTITY : dn ) ( month $0 ANON_ENTITY : mn ) ) )
|
atis_927
|
how expensive is the san francisco limousine service
|
( lambda $0 e ( exists $1 ( and ( limousine $1 ) ( to_city $1 san_francisco : ci ) ( = ( ground_fare $1 ) $0 ) ) ) )
|
( lambda $0 e ( exists $1 ( and ( limousine $1 ) ( to_city $1 ANON_ENTITY : ci ) ( = ( ground_fare $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 ) ) ) )
|
( lambda $0 e ( exists $1 ( and ( limousine $1 ) ( to_city $1 ANON_ENTITY : ci ) ( = ( ground_fare $1 ) $0 ) ) ) )
|
atis_4510
|
what is the cost of limousine service in philadelphia
|
( lambda $0 e ( exists $1 ( and ( limousine $1 ) ( to_city $1 philadelphia : ci ) ( = ( ground_fare $1 ) $0 ) ) ) )
|
( lambda $0 e ( exists $1 ( and ( limousine $1 ) ( to_city $1 ANON_ENTITY : ci ) ( = ( ground_fare $1 ) $0 ) ) ) )
|
atis_4807
|
what price is a limousine service in boston
|
( lambda $0 e ( exists $1 ( and ( limousine $1 ) ( to_city $1 boston : ci ) ( = ( ground_fare $1 ) $0 ) ) ) )
|
( lambda $0 e ( exists $1 ( and ( limousine $1 ) ( to_city $1 ANON_ENTITY : ci ) ( = ( ground_fare $1 ) $0 ) ) ) )
|
atis_3961
|
what are the nonstop flights from kansas city to burbank arriving on saturday may twenty two
|
( lambda $0 e ( and ( flight $0 ) ( nonstop $0 ) ( from $0 kansas_city : ci ) ( to $0 burbank : ci ) ( day_arrival $0 saturday : da ) ( day_number_arrival $0 22 : dn ) ( month_arrival $0 may : mn ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( nonstop $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day_arrival $0 ANON_ENTITY : da ) ( day_number_arrival $0 ANON_ENTITY : dn ) ( month_arrival $0 ANON_ENTITY : mn ) ) )
|
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 ) ) ) )
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( round_trip $1 ) ( from $1 ANON_ENTITY : ci ) ( to $1 ANON_ENTITY : ci ) ( day $1 ANON_ENTITY : da ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_1536
|
i would like to find flights from columbus to minneapolis on monday june fourteenth early in the morning or in the evening sunday june thirteenth thank you
|
( lambda $0 e ( and ( flight $0 ) ( from $0 columbus : ci ) ( to $0 minneapolis : ci ) ( or ( and ( during_day $0 evening : pd ) ( day $0 sunday : da ) ( day_number $0 13 : dn ) ( month $0 june : mn ) ) ( and ( during_day $0 early : pd ) ( during_day $0 morning : pd ) ( day $0 monday : da ) ( day_number $0 14 : dn ) ( month $0 june : mn ) ) ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( or ( and ( during_day $0 ANON_ENTITY : pd ) ( day $0 ANON_ENTITY : da ) ( day_number $0 ANON_ENTITY : dn ) ( month $0 ANON_ENTITY : mn ) ) ( and ( during_day $0 ANON_ENTITY : pd ) ( during_day $0 ANON_ENTITY : pd ) ( day $0 ANON_ENTITY : da ) ( day_number $0 ANON_ENTITY : dn ) ( month $0 ANON_ENTITY : 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 ) ) ) )
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( oneway $1 ) ( class_type $1 ANON_ENTITY : cl ) ( from $1 ANON_ENTITY : ci ) ( to $1 ANON_ENTITY : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_26
|
all flights before 10am boston denver
|
( lambda $0 e ( and ( flight $0 ) ( < ( departure_time $0 ) 1000 : ti ) ( from $0 boston : ci ) ( to $0 denver : ci ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( < ( departure_time $0 ) ANON_ENTITY : ti ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) )
|
atis_51
|
all flights from san francisco to boston leaving before noon
|
( lambda $0 e ( and ( flight $0 ) ( < ( departure_time $0 ) 1200 : ti ) ( from $0 san_francisco : ci ) ( to $0 boston : ci ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( < ( departure_time $0 ) ANON_ENTITY : ti ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) )
|
atis_127
|
are there any flights from dallas fort worth to boston leaving before 10am
|
( lambda $0 e ( and ( flight $0 ) ( < ( departure_time $0 ) 1000 : ti ) ( from $0 dallas : ci ) ( to $0 boston : ci ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( < ( departure_time $0 ) ANON_ENTITY : ti ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) )
|
atis_898
|
hi i need to get a flight from memphis to salt lake city departing before 10am
|
( lambda $0 e ( and ( flight $0 ) ( < ( departure_time $0 ) 1000 : ti ) ( from $0 memphis : ci ) ( to $0 salt_lake_city : ci ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( < ( departure_time $0 ) ANON_ENTITY : ti ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) )
|
atis_1083
|
i need a flight from cleveland to dallas that leaves before noon see if too much information
|
( lambda $0 e ( and ( flight $0 ) ( < ( departure_time $0 ) 1200 : ti ) ( from $0 cleveland : ci ) ( to $0 dallas : ci ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( < ( departure_time $0 ) ANON_ENTITY : ti ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) )
|
atis_1372
|
i want to leave before 8 in the morning what flight should i take to atlanta from boston
|
( lambda $0 e ( and ( flight $0 ) ( < ( departure_time $0 ) 800 : ti ) ( from $0 boston : ci ) ( to $0 atlanta : ci ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( < ( departure_time $0 ) ANON_ENTITY : ti ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) )
|
atis_1819
|
i'm looking for flights from oakland to atlanta leaving before 1045am
|
( lambda $0 e ( and ( flight $0 ) ( < ( departure_time $0 ) 1045 : ti ) ( from $0 oakland : ci ) ( to $0 atlanta : ci ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( < ( departure_time $0 ) ANON_ENTITY : ti ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) )
|
atis_1820
|
i'm looking for flights from pittsburgh to philadelphia leaving before 9am
|
( lambda $0 e ( and ( flight $0 ) ( < ( departure_time $0 ) 900 : ti ) ( from $0 pittsburgh : ci ) ( to $0 philadelphia : ci ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( < ( departure_time $0 ) ANON_ENTITY : ti ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) )
|
atis_2133
|
list flights before 9am from cincinnati to tampa
|
( lambda $0 e ( and ( flight $0 ) ( < ( departure_time $0 ) 900 : ti ) ( from $0 cincinnati : ci ) ( to $0 tampa : ci ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( < ( departure_time $0 ) ANON_ENTITY : ti ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) )
|
atis_2147
|
list flights from cincinnati to tampa before noon
|
( lambda $0 e ( and ( flight $0 ) ( < ( departure_time $0 ) 1200 : ti ) ( from $0 cincinnati : ci ) ( to $0 tampa : ci ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( < ( departure_time $0 ) ANON_ENTITY : ti ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) )
|
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 ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( < ( departure_time $0 ) ANON_ENTITY : ti ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) )
|
atis_2412
|
okay i'd like a flight from boston to san francisco that leaves before 8am
|
( lambda $0 e ( and ( flight $0 ) ( < ( departure_time $0 ) 800 : ti ) ( from $0 boston : ci ) ( to $0 san_francisco : ci ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( < ( departure_time $0 ) ANON_ENTITY : ti ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) )
|
atis_2416
|
okay i'm looking for a flight from tampa to st. louis leaving before 10am any day
|
( lambda $0 e ( and ( flight $0 ) ( < ( departure_time $0 ) 1000 : ti ) ( from $0 tampa : ci ) ( to $0 st_louis : ci ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( < ( departure_time $0 ) ANON_ENTITY : ti ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) )
|
atis_2433
|
on a flight from san francisco to atlanta that leaves before 8am is there such a flight
|
( lambda $0 e ( and ( flight $0 ) ( < ( departure_time $0 ) 800 : ti ) ( from $0 san_francisco : ci ) ( to $0 atlanta : ci ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( < ( departure_time $0 ) ANON_ENTITY : ti ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) )
|
atis_2505
|
please give me a flight from boston to atlanta before 10am in the morning
|
( lambda $0 e ( and ( flight $0 ) ( < ( departure_time $0 ) 1000 : ti ) ( from $0 boston : ci ) ( to $0 atlanta : ci ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( < ( departure_time $0 ) ANON_ENTITY : ti ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) )
|
atis_2510
|
please give me all flights from dallas to oakland before noon
|
( lambda $0 e ( and ( flight $0 ) ( < ( departure_time $0 ) 1200 : ti ) ( from $0 dallas : ci ) ( to $0 oakland : ci ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( < ( departure_time $0 ) ANON_ENTITY : ti ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) )
|
atis_2574
|
please list all the flights from boston to san francisco leaving before 10am
|
( lambda $0 e ( and ( flight $0 ) ( < ( departure_time $0 ) 1000 : ti ) ( from $0 boston : ci ) ( to $0 san_francisco : ci ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( < ( departure_time $0 ) ANON_ENTITY : ti ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) )
|
atis_2598
|
please list only the flights from cleveland to dallas that leave before noon
|
( lambda $0 e ( and ( flight $0 ) ( < ( departure_time $0 ) 1200 : ti ) ( from $0 cleveland : ci ) ( to $0 dallas : ci ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( < ( departure_time $0 ) ANON_ENTITY : ti ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) )
|
atis_2961
|
show me all flights from pittsburgh to boston which leave before noon
|
( lambda $0 e ( and ( flight $0 ) ( < ( departure_time $0 ) 1200 : ti ) ( from $0 pittsburgh : ci ) ( to $0 boston : ci ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( < ( departure_time $0 ) ANON_ENTITY : ti ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) )
|
atis_3203
|
show me flights from tampa to st. louis leaving before 10am
|
( lambda $0 e ( and ( flight $0 ) ( < ( departure_time $0 ) 1000 : ti ) ( from $0 tampa : ci ) ( to $0 st_louis : ci ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( < ( departure_time $0 ) ANON_ENTITY : ti ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) )
|
atis_4274
|
what flights go from boston to denver before 10am
|
( lambda $0 e ( and ( flight $0 ) ( < ( departure_time $0 ) 1000 : ti ) ( from $0 boston : ci ) ( to $0 denver : ci ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( < ( departure_time $0 ) ANON_ENTITY : ti ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) )
|
atis_982
|
how many nonstop flights going from dallas to oakland july twenty seventh
|
( count $0 ( and ( flight $0 ) ( nonstop $0 ) ( from $0 dallas : ci ) ( to $0 oakland : ci ) ( day_number $0 27 : dn ) ( month $0 july : mn ) ) )
|
( count $0 ( and ( flight $0 ) ( nonstop $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day_number $0 ANON_ENTITY : dn ) ( month $0 ANON_ENTITY : mn ) ) )
|
atis_2730
|
round trip fares from baltimore to philadelphia less than 1000 dollars round trip fares from denver to philadelphia less than 1000 dollars round trip fares from pittsburgh to philadelphia less than 1000 dollars
|
( lambda $0 e ( exists $1 ( and ( 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 ) ) ) )
|
( lambda $0 e ( exists $1 ( and ( round_trip $1 ) ( or ( and ( < ( fare $1 ) ANON_ENTITY : do ) ( from $1 ANON_ENTITY : ci ) ( to $1 ANON_ENTITY : ci ) ) ( and ( < ( fare $1 ) ANON_ENTITY : do ) ( from $1 ANON_ENTITY : ci ) ( to $1 ANON_ENTITY : ci ) ) ( and ( < ( fare $1 ) ANON_ENTITY : do ) ( from $1 ANON_ENTITY : ci ) ( to $1 ANON_ENTITY : ci ) ) ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_1384
|
i want to travel from atlanta to baltimore early in the morning first flight
|
( argmin $0 ( and ( flight $0 ) ( during_day $0 early : pd ) ( during_day $0 morning : pd ) ( from $0 atlanta : ci ) ( to $0 baltimore : ci ) ) ( departure_time $0 ) )
|
( argmin $0 ( and ( flight $0 ) ( during_day $0 ANON_ENTITY : pd ) ( during_day $0 ANON_ENTITY : pd ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) ( departure_time $0 ) )
|
atis_599
|
flights from atlanta august second
|
( lambda $0 e ( and ( flight $0 ) ( from $0 atlanta : ci ) ( day_number $0 2 : dn ) ( month $0 august : mn ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( from $0 ANON_ENTITY : ci ) ( day_number $0 ANON_ENTITY : dn ) ( month $0 ANON_ENTITY : mn ) ) )
|
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 ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( from $0 ANON_ENTITY : ci ) ( day_number $0 ANON_ENTITY : dn ) ( month $0 ANON_ENTITY : mn ) ) )
|
atis_689
|
flights from washington august second
|
( lambda $0 e ( and ( flight $0 ) ( from $0 washington : ci ) ( day_number $0 2 : dn ) ( month $0 august : mn ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( from $0 ANON_ENTITY : ci ) ( day_number $0 ANON_ENTITY : dn ) ( month $0 ANON_ENTITY : mn ) ) )
|
atis_1637
|
i'd like a flight leaving atlanta august seventh and arriving in denver colorado august seventh leaving in the afternoon
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 afternoon : pd ) ( from $0 atlanta : ci ) ( to $0 denver : ci ) ( day_number $0 7 : dn ) ( month $0 august : mn ) ( day_number_arrival $0 7 : dn ) ( month_arrival $0 august : mn ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 ANON_ENTITY : pd ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day_number $0 ANON_ENTITY : dn ) ( month $0 ANON_ENTITY : mn ) ( day_number_arrival $0 ANON_ENTITY : dn ) ( month_arrival $0 ANON_ENTITY : mn ) ) )
|
atis_4439
|
what is the cheapest fare between atlanta and san francisco
|
( min $0 ( exists $1 ( and ( = ( fare $1 ) $0 ) ( to $1 san_francisco : ci ) ( from $1 atlanta : ci ) ) ) )
|
( min $0 ( exists $1 ( and ( = ( fare $1 ) $0 ) ( to $1 ANON_ENTITY : ci ) ( from $1 ANON_ENTITY : ci ) ) ) )
|
atis_2571
|
please list all of the flights leaving atlanta heading to baltimore after 8pm wednesday and before 9am thursday
|
( lambda $0 e ( and ( flight $0 ) ( from $0 atlanta : ci ) ( to $0 baltimore : ci ) ( > ( departure_time $0 ) 2000 : ti ) ( after_day $0 wednesday : da ) ( < ( departure_time $0 ) 900 : ti ) ( before_day $0 thursday : da ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( > ( departure_time $0 ) ANON_ENTITY : ti ) ( after_day $0 ANON_ENTITY : da ) ( < ( departure_time $0 ) ANON_ENTITY : ti ) ( before_day $0 ANON_ENTITY : da ) ) )
|
atis_341
|
display all flights from toronto to san diego on us air stopping over in denver
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 us : al ) ( from $0 toronto : ci ) ( to $0 san_diego : ci ) ( stop $0 denver : ci ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 ANON_ENTITY : al ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( stop $0 ANON_ENTITY : ci ) ) )
|
atis_342
|
display all flights from toronto to san diego on us air with a layover in phoenix
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 us : al ) ( from $0 toronto : ci ) ( to $0 san_diego : ci ) ( stop $0 phoenix : ci ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 ANON_ENTITY : al ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( stop $0 ANON_ENTITY : ci ) ) )
|
atis_343
|
display all flights leaving from toronto to san diego on us air laying over in washington dc
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 us : al ) ( from $0 toronto : ci ) ( to $0 san_diego : ci ) ( stop $0 washington : ci ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 ANON_ENTITY : al ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( stop $0 ANON_ENTITY : ci ) ) )
|
atis_349
|
do any of the continental flights from boston to san francisco stop in denver
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 co : al ) ( from $0 boston : ci ) ( to $0 san_francisco : ci ) ( stop $0 denver : ci ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 ANON_ENTITY : al ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( stop $0 ANON_ENTITY : ci ) ) )
|
atis_408
|
does continental fly from boston to san francisco with a stop in denver
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 co : al ) ( from $0 boston : ci ) ( to $0 san_francisco : ci ) ( stop $0 denver : ci ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 ANON_ENTITY : al ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( stop $0 ANON_ENTITY : ci ) ) )
|
atis_480
|
find a flight from toronto to san diego with a layover in dc on delta airlines
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 dl : al ) ( from $0 toronto : ci ) ( to $0 san_diego : ci ) ( stop $0 washington : ci ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 ANON_ENTITY : al ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( stop $0 ANON_ENTITY : ci ) ) )
|
atis_481
|
find a flight from toronto to san diego with a layover in san francisco on air canada
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 ac : al ) ( from $0 toronto : ci ) ( to $0 san_diego : ci ) ( stop $0 san_francisco : ci ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 ANON_ENTITY : al ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( stop $0 ANON_ENTITY : ci ) ) )
|
atis_483
|
find a flight on american airlines from boston to san francisco that makes a stopover in denver
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 aa : al ) ( from $0 boston : ci ) ( to $0 san_francisco : ci ) ( stop $0 denver : ci ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 ANON_ENTITY : al ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( stop $0 ANON_ENTITY : ci ) ) )
|
atis_487
|
find a transcontinental flight on american airlines from boston to san francisco that makes a stopover in denver
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 aa : al ) ( from $0 boston : ci ) ( to $0 san_francisco : ci ) ( stop $0 denver : ci ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 ANON_ENTITY : al ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( stop $0 ANON_ENTITY : ci ) ) )
|
atis_500
|
find me a flight from boston to san francisco with layover in denver on united
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 ua : al ) ( from $0 boston : ci ) ( to $0 san_francisco : ci ) ( stop $0 denver : ci ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 ANON_ENTITY : al ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( stop $0 ANON_ENTITY : ci ) ) )
|
atis_503
|
find me a flight on united from boston to san francisco with a stopover in denver
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 ua : al ) ( from $0 boston : ci ) ( to $0 san_francisco : ci ) ( stop $0 denver : ci ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 ANON_ENTITY : al ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( stop $0 ANON_ENTITY : ci ) ) )
|
atis_1138
|
i need a flight from toronto to san diego with a layover in washington dc on air canada
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 ac : al ) ( from $0 toronto : ci ) ( to $0 san_diego : ci ) ( stop $0 washington : ci ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 ANON_ENTITY : al ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( stop $0 ANON_ENTITY : ci ) ) )
|
atis_1141
|
i need a flight on air canada from toronto to san diego with a layover in dc
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 ac : al ) ( from $0 toronto : ci ) ( to $0 san_diego : ci ) ( stop $0 washington : ci ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 ANON_ENTITY : al ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( stop $0 ANON_ENTITY : ci ) ) )
|
atis_1336
|
i want to fly from boston to san francisco via dallas fort worth on american airlines
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 aa : al ) ( from $0 boston : ci ) ( to $0 san_francisco : ci ) ( stop $0 dallas : ci ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 ANON_ENTITY : al ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( stop $0 ANON_ENTITY : ci ) ) )
|
atis_1405
|
i would like a flight from baltimore to san francisco on twa with a stop in denver
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 tw : al ) ( from $0 baltimore : ci ) ( to $0 san_francisco : ci ) ( stop $0 denver : ci ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 ANON_ENTITY : al ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( stop $0 ANON_ENTITY : ci ) ) )
|
atis_1429
|
i would like a flight on american airlines from baltimore to san francisco with a stop in denver
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 aa : al ) ( from $0 baltimore : ci ) ( to $0 san_francisco : ci ) ( stop $0 denver : ci ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 ANON_ENTITY : al ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( stop $0 ANON_ENTITY : ci ) ) )
|
atis_1430
|
i would like a flight on continental airlines leaving from boston making a stop in denver and arriving in san francisco
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 co : al ) ( from $0 boston : ci ) ( to $0 san_francisco : ci ) ( stop $0 denver : ci ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 ANON_ENTITY : al ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( stop $0 ANON_ENTITY : ci ) ) )
|
atis_1451
|
i would like a twa flight from atlanta to san francisco with a stopover in denver
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 tw : al ) ( from $0 atlanta : ci ) ( to $0 san_francisco : ci ) ( stop $0 denver : ci ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 ANON_ENTITY : al ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( stop $0 ANON_ENTITY : ci ) ) )
|
atis_1452
|
i would like a us air flight from toronto to san diego with a stopover in denver please
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 us : al ) ( from $0 toronto : ci ) ( to $0 san_diego : ci ) ( stop $0 denver : ci ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 ANON_ENTITY : al ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( stop $0 ANON_ENTITY : ci ) ) )
|
atis_1457
|
i would like an american flight from toronto to san diego with a stopover in denver please
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 aa : al ) ( from $0 toronto : ci ) ( to $0 san_diego : ci ) ( stop $0 denver : ci ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 ANON_ENTITY : al ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( stop $0 ANON_ENTITY : ci ) ) )
|
atis_1601
|
i would like to schedule a flight on american airlines from philadelphia to san francisco that makes a stop in denver
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 aa : al ) ( from $0 philadelphia : ci ) ( to $0 san_francisco : ci ) ( stop $0 denver : ci ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 ANON_ENTITY : al ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( stop $0 ANON_ENTITY : ci ) ) )
|
atis_1695
|
i'd like to book an flight on american airlines from boston to san francisco with one stop in pittsburgh
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 aa : al ) ( from $0 boston : ci ) ( to $0 san_francisco : ci ) ( stop $0 pittsburgh : ci ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 ANON_ENTITY : al ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( stop $0 ANON_ENTITY : ci ) ) )
|
atis_1738
|
i'd like to fly from san francisco to boston with a stopover in dallas fort worth and i want to fly on delta airlines
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 dl : al ) ( from $0 san_francisco : ci ) ( to $0 boston : ci ) ( stop $0 dallas : ci ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 ANON_ENTITY : al ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( stop $0 ANON_ENTITY : ci ) ) )
|
atis_1826
|
i'm sorry i wanted to fly twa is there a flight between oakland and boston with a stopover in dallas fort worth on twa
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 tw : al ) ( from $0 oakland : ci ) ( to $0 boston : ci ) ( stop $0 dallas : ci ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 ANON_ENTITY : al ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( stop $0 ANON_ENTITY : ci ) ) )
|
atis_1877
|
is there a delta flight from boston to san francisco that stops in denver
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 dl : al ) ( from $0 boston : ci ) ( to $0 san_francisco : ci ) ( stop $0 denver : ci ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 ANON_ENTITY : al ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( stop $0 ANON_ENTITY : ci ) ) )
|
atis_1883
|
is there a flight between oakland and boston with a stopover in dallas fort worth on twa
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 tw : al ) ( from $0 oakland : ci ) ( to $0 boston : ci ) ( stop $0 dallas : ci ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 ANON_ENTITY : al ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( stop $0 ANON_ENTITY : ci ) ) )
|
atis_1892
|
is there a flight from baltimore to san francisco with a stop in denver on twa
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 tw : al ) ( from $0 baltimore : ci ) ( to $0 san_francisco : ci ) ( stop $0 denver : ci ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 ANON_ENTITY : al ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( stop $0 ANON_ENTITY : ci ) ) )
|
atis_1909
|
is there a flight on twa from baltimore to san francisco with a stop in denver
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 tw : al ) ( from $0 baltimore : ci ) ( to $0 san_francisco : ci ) ( stop $0 denver : ci ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 ANON_ENTITY : al ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( stop $0 ANON_ENTITY : ci ) ) )
|
atis_2775
|
show all flights on united airlines from san francisco to denver to washington dc
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 ua : al ) ( from $0 san_francisco : ci ) ( to $0 washington : ci ) ( stop $0 denver : ci ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 ANON_ENTITY : al ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( stop $0 ANON_ENTITY : ci ) ) )
|
atis_2833
|
show flights on us air from pittsburgh to oakland connecting through denver
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 us : al ) ( from $0 pittsburgh : ci ) ( to $0 oakland : ci ) ( stop $0 denver : ci ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 ANON_ENTITY : al ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( stop $0 ANON_ENTITY : ci ) ) )
|
atis_3051
|
show me all the flights on northwest airlines from new york to milwaukee to los angeles
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 nw : al ) ( from $0 new_york : ci ) ( to $0 los_angeles : ci ) ( stop $0 milwaukee : ci ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 ANON_ENTITY : al ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( stop $0 ANON_ENTITY : ci ) ) )
|
atis_3428
|
show me the flights from boston to san francisco stopping in dallas on american airlines
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 aa : al ) ( from $0 boston : ci ) ( to $0 san_francisco : ci ) ( stop $0 dallas : ci ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 ANON_ENTITY : al ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( stop $0 ANON_ENTITY : ci ) ) )
|
atis_5021
|
which transcontinental flight on united airlines from boston to dallas makes a stopover in philadelphia
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 ua : al ) ( from $0 boston : ci ) ( to $0 dallas : ci ) ( stop $0 philadelphia : ci ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 ANON_ENTITY : al ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( stop $0 ANON_ENTITY : ci ) ) )
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.