qid
stringlengths 6
9
| source
stringlengths 6
259
| target
stringlengths 6
409
| anonymized_target
stringlengths 16
454
|
---|---|---|---|
atis_1780
|
i'd like to see all the one way flights from denver to pittsburgh
|
( lambda $0 e ( and ( flight $0 ) ( oneway $0 ) ( from $0 denver : ci ) ( to $0 pittsburgh : ci ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( oneway $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) )
|
atis_2368
|
now i need a one way flight from pittsburgh to denver
|
( lambda $0 e ( and ( flight $0 ) ( oneway $0 ) ( from $0 pittsburgh : ci ) ( to $0 denver : ci ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( oneway $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) )
|
atis_2928
|
show me all flights from milwaukee to orlando one way
|
( lambda $0 e ( and ( flight $0 ) ( oneway $0 ) ( from $0 milwaukee : ci ) ( to $0 orlando : ci ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( oneway $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) )
|
atis_2941
|
show me all flights from ontario to tacoma one way
|
( lambda $0 e ( and ( flight $0 ) ( oneway $0 ) ( from $0 ontario : ci ) ( to $0 tacoma : ci ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( oneway $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) )
|
atis_3172
|
show me flights from milwaukee to orlando one way
|
( lambda $0 e ( and ( flight $0 ) ( oneway $0 ) ( from $0 milwaukee : ci ) ( to $0 orlando : ci ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( oneway $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) )
|
atis_3256
|
show me one way flights from milwaukee to orlando
|
( lambda $0 e ( and ( flight $0 ) ( oneway $0 ) ( from $0 milwaukee : ci ) ( to $0 orlando : ci ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( oneway $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) )
|
atis_3596
|
show me the one way flights from atlanta to pittsburgh
|
( lambda $0 e ( and ( flight $0 ) ( oneway $0 ) ( from $0 atlanta : ci ) ( to $0 pittsburgh : ci ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( oneway $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) )
|
atis_3597
|
show me the one way flights from detroit to westchester county
|
( lambda $0 e ( and ( flight $0 ) ( oneway $0 ) ( from $0 detroit : ci ) ( to $0 westchester_county : ci ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( oneway $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) )
|
atis_72
|
all right would you let me know type of aircraft united airlines is using on the flights from denver to san francisco i would like to know the type of aircraft that they use on these flights before 10 in the morning
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( airline $1 ua : al ) ( < ( departure_time $1 ) 1000 : ti ) ( from $1 denver : ci ) ( to $1 san_francisco : ci ) ( = ( aircraft_code $1 ) $0 ) ) ) )
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( airline $1 ANON_ENTITY : al ) ( < ( departure_time $1 ) ANON_ENTITY : ti ) ( from $1 ANON_ENTITY : ci ) ( to $1 ANON_ENTITY : ci ) ( = ( aircraft_code $1 ) $0 ) ) ) )
|
atis_454
|
eastern flies from atlanta to denver what type of aircraft do you use before 6pm
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( airline $1 ea : al ) ( < ( departure_time $1 ) 1800 : ti ) ( from $1 atlanta : ci ) ( to $1 denver : ci ) ( = ( aircraft_code $1 ) $0 ) ) ) )
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( airline $1 ANON_ENTITY : al ) ( < ( departure_time $1 ) ANON_ENTITY : ti ) ( from $1 ANON_ENTITY : ci ) ( to $1 ANON_ENTITY : ci ) ( = ( aircraft_code $1 ) $0 ) ) ) )
|
atis_2466
|
on united airlines flying from denver to san francisco before 10am what type of aircraft is used
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( airline $1 ua : al ) ( < ( departure_time $1 ) 1000 : ti ) ( from $1 denver : ci ) ( to $1 san_francisco : ci ) ( = ( aircraft_code $1 ) $0 ) ) ) )
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( airline $1 ANON_ENTITY : al ) ( < ( departure_time $1 ) ANON_ENTITY : ti ) ( from $1 ANON_ENTITY : ci ) ( to $1 ANON_ENTITY : ci ) ( = ( aircraft_code $1 ) $0 ) ) ) )
|
atis_3707
|
well i'll try last time tell me the kind of aircraft united airlines flies from denver to san francisco before 10 o'clock in the morning
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( airline $1 ua : al ) ( < ( departure_time $1 ) 1000 : ti ) ( from $1 denver : ci ) ( to $1 san_francisco : ci ) ( = ( aircraft_code $1 ) $0 ) ) ) )
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( airline $1 ANON_ENTITY : al ) ( < ( departure_time $1 ) ANON_ENTITY : ti ) ( from $1 ANON_ENTITY : ci ) ( to $1 ANON_ENTITY : ci ) ( = ( aircraft_code $1 ) $0 ) ) ) )
|
atis_4830
|
what type of aircraft does eastern fly from atlanta to denver before 6pm
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( airline $1 ea : al ) ( < ( departure_time $1 ) 1800 : ti ) ( from $1 atlanta : ci ) ( to $1 denver : ci ) ( = ( aircraft_code $1 ) $0 ) ) ) )
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( airline $1 ANON_ENTITY : al ) ( < ( departure_time $1 ) ANON_ENTITY : ti ) ( from $1 ANON_ENTITY : ci ) ( to $1 ANON_ENTITY : ci ) ( = ( aircraft_code $1 ) $0 ) ) ) )
|
atis_2431
|
okay what i'd like to do on this one is go from washington to atlanta i want a nonstop and i'd like to leave around 5pm
|
( lambda $0 e ( and ( nonstop $0 ) ( approx_departure_time $0 1700 : ti ) ( from $0 washington : ci ) ( to $0 atlanta : ci ) ) )
|
( lambda $0 e ( and ( nonstop $0 ) ( approx_departure_time $0 ANON_ENTITY : ti ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) )
|
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 ) ) ) )
|
( argmax $0 ( airline $0 ) ( count $1 ( and ( flight $1 ) ( to $1 ANON_ENTITY : ci ) ( airline $1 $0 ) ) ) )
|
atis_4955
|
which airline has the most arrivals in atlanta
|
( argmax $0 ( airline $0 ) ( count $1 ( and ( flight $1 ) ( to $1 atlanta : ci ) ( airline $1 $0 ) ) ) )
|
( argmax $0 ( airline $0 ) ( count $1 ( and ( flight $1 ) ( to $1 ANON_ENTITY : ci ) ( airline $1 $0 ) ) ) )
|
atis_2460
|
on the flight from baltimore to san francisco on us air leaving at 420 what type of aircraft is used
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( airline $1 us : al ) ( departure_time $1 1620 : ti ) ( from $1 baltimore : ci ) ( to $1 san_francisco : ci ) ( = ( aircraft_code $1 ) $0 ) ) ) )
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( airline $1 ANON_ENTITY : al ) ( departure_time $1 ANON_ENTITY : ti ) ( from $1 ANON_ENTITY : ci ) ( to $1 ANON_ENTITY : ci ) ( = ( aircraft_code $1 ) $0 ) ) ) )
|
atis_4833
|
what type of aircraft is used for the american flight leaving at 419pm
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( airline $1 aa : al ) ( departure_time $1 1619 : ti ) ( from $1 cincinnati : ci ) ( to $1 burbank : ci ) ( = ( aircraft_code $1 ) $0 ) ) ) )
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( airline $1 ANON_ENTITY : al ) ( departure_time $1 ANON_ENTITY : ti ) ( from $1 ANON_ENTITY : ci ) ( to $1 ANON_ENTITY : ci ) ( = ( aircraft_code $1 ) $0 ) ) ) )
|
atis_1170
|
i need a thursday flight from pittsburgh to baltimore arriving in baltimore before 9 o'clock
|
( lambda $0 e ( and ( day $0 thursday : da ) ( flight $0 ) ( < ( arrival_time $0 ) 2100 : ti ) ( to $0 baltimore : ci ) ( from $0 pittsburgh : ci ) ) )
|
( lambda $0 e ( and ( day $0 ANON_ENTITY : da ) ( flight $0 ) ( < ( arrival_time $0 ) ANON_ENTITY : ti ) ( to $0 ANON_ENTITY : ci ) ( from $0 ANON_ENTITY : ci ) ) )
|
atis_3682
|
the cheapest flights from atlanta to philadelphia that arrive after 12pm on a tuesday
|
( argmin $0 ( and ( flight $0 ) ( > ( arrival_time $0 ) 1200 : ti ) ( from $0 atlanta : ci ) ( to $0 philadelphia : ci ) ( day $0 tuesday : da ) ) ( fare $0 ) )
|
( argmin $0 ( and ( flight $0 ) ( > ( arrival_time $0 ) ANON_ENTITY : ti ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day $0 ANON_ENTITY : da ) ) ( fare $0 ) )
|
atis_1584
|
i would like to know if i fly on american flight number 813 from boston to oakland if i will stop enroute at another city
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( airline $1 aa : al ) ( flight_number $1 813 : fn ) ( from $1 boston : ci ) ( to $1 oakland : ci ) ( stop $1 $0 ) ) ) )
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( airline $1 ANON_ENTITY : al ) ( flight_number $1 ANON_ENTITY : fn ) ( from $1 ANON_ENTITY : ci ) ( to $1 ANON_ENTITY : ci ) ( stop $1 $0 ) ) ) )
|
atis_4812
|
what stops does dl 838 make from san francisco to atlanta
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( airline $1 dl : al ) ( flight_number $1 838 : fn ) ( from $1 san_francisco : ci ) ( to $1 atlanta : ci ) ( stop $1 $0 ) ) ) )
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( airline $1 ANON_ENTITY : al ) ( flight_number $1 ANON_ENTITY : fn ) ( from $1 ANON_ENTITY : ci ) ( to $1 ANON_ENTITY : ci ) ( stop $1 $0 ) ) ) )
|
atis_4173
|
what flights are there on wednesday evening or thursday morning from denver to sfo
|
( lambda $0 e ( and ( flight $0 ) ( or ( and ( during_day $0 evening : pd ) ( day $0 wednesday : da ) ) ( and ( during_day $0 morning : pd ) ( day $0 thursday : da ) ) ) ( from $0 denver : ci ) ( to $0 sfo : ap ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( or ( and ( during_day $0 ANON_ENTITY : pd ) ( day $0 ANON_ENTITY : da ) ) ( and ( during_day $0 ANON_ENTITY : pd ) ( day $0 ANON_ENTITY : da ) ) ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ap ) ) )
|
atis_1134
|
i need a flight from st. petersburg to charlotte which will get me into charlotte by 5pm or as soon thereafter as possible
|
( argmin $0 ( and ( flight $0 ) ( > ( arrival_time $0 ) 1700 : ti ) ( < ( arrival_time $0 ) 1700 : ti ) ( from $0 st_petersburg : ci ) ( to $0 charlotte : ci ) ) ( arrival_time $0 ) )
|
( argmin $0 ( and ( flight $0 ) ( > ( arrival_time $0 ) ANON_ENTITY : ti ) ( < ( arrival_time $0 ) ANON_ENTITY : ti ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) ( arrival_time $0 ) )
|
atis_2050
|
list all flights leaving denver between 8pm and 9pm
|
( lambda $0 e ( and ( < ( departure_time $0 ) 2100 : ti ) ( > ( departure_time $0 ) 2000 : ti ) ( from $0 denver : ci ) ( flight $0 ) ) )
|
( lambda $0 e ( and ( < ( departure_time $0 ) ANON_ENTITY : ti ) ( > ( departure_time $0 ) ANON_ENTITY : ti ) ( from $0 ANON_ENTITY : ci ) ( flight $0 ) ) )
|
atis_1450
|
i would like a to know the type of aircraft leaving from atlanta bound to boston on friday this week
|
( lambda $0 e ( exists $1 ( and ( from $1 atlanta : ci ) ( to $1 boston : ci ) ( day $1 friday : da ) ( = ( aircraft_code $1 ) $0 ) ) ) )
|
( lambda $0 e ( exists $1 ( and ( from $1 ANON_ENTITY : ci ) ( to $1 ANON_ENTITY : ci ) ( day $1 ANON_ENTITY : da ) ( = ( aircraft_code $1 ) $0 ) ) ) )
|
atis_2858
|
show me all all flights from pittsburgh to atlanta on wednesday which leave before noon and serve breakfast
|
( lambda $0 e ( and ( flight $0 ) ( meal $0 breakfast : me ) ( < ( departure_time $0 ) 1200 : ti ) ( from $0 pittsburgh : ci ) ( to $0 atlanta : ci ) ( day $0 wednesday : da ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( meal $0 ANON_ENTITY : me ) ( < ( departure_time $0 ) ANON_ENTITY : ti ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day $0 ANON_ENTITY : da ) ) )
|
atis_372
|
do you have a twa flight leaving early in the morning to san francisco from denver
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 tw : al ) ( during_day $0 early : pd ) ( during_day $0 morning : pd ) ( from $0 denver : ci ) ( to $0 san_francisco : ci ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 ANON_ENTITY : al ) ( during_day $0 ANON_ENTITY : pd ) ( during_day $0 ANON_ENTITY : pd ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) )
|
atis_377
|
do you have an american airlines flight from denver to san francisco in the early morning
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 aa : al ) ( during_day $0 early : pd ) ( during_day $0 morning : pd ) ( from $0 denver : ci ) ( to $0 san_francisco : ci ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 ANON_ENTITY : al ) ( during_day $0 ANON_ENTITY : pd ) ( during_day $0 ANON_ENTITY : pd ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) )
|
atis_417
|
does delta have an early afternoon flight from boston to san francisco
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 dl : al ) ( during_day $0 early : pd ) ( during_day $0 afternoon : pd ) ( from $0 boston : ci ) ( to $0 san_francisco : ci ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 ANON_ENTITY : al ) ( during_day $0 ANON_ENTITY : pd ) ( during_day $0 ANON_ENTITY : pd ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) )
|
atis_421
|
does eastern have an early afternoon flight from boston to san francisco
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 ea : al ) ( during_day $0 early : pd ) ( during_day $0 afternoon : pd ) ( from $0 boston : ci ) ( to $0 san_francisco : ci ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 ANON_ENTITY : al ) ( during_day $0 ANON_ENTITY : pd ) ( during_day $0 ANON_ENTITY : pd ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) )
|
atis_1459
|
i would like an early morning flight from chicago into seattle on continental airlines
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 co : al ) ( during_day $0 early : pd ) ( during_day $0 morning : pd ) ( from $0 chicago : ci ) ( to $0 seattle : ci ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 ANON_ENTITY : al ) ( during_day $0 ANON_ENTITY : pd ) ( during_day $0 ANON_ENTITY : pd ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) )
|
atis_1932
|
is there an early morning delta airlines flight between boston and washington
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 dl : al ) ( during_day $0 early : pd ) ( during_day $0 morning : pd ) ( from $0 boston : ci ) ( to $0 washington : ci ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 ANON_ENTITY : al ) ( during_day $0 ANON_ENTITY : pd ) ( during_day $0 ANON_ENTITY : pd ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) )
|
atis_1993
|
list all american airlines flights from phoenix to milwaukee which arrive on wednesday after 4pm
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 aa : al ) ( > ( arrival_time $0 ) 1600 : ti ) ( from $0 phoenix : ci ) ( to $0 milwaukee : ci ) ( day_arrival $0 wednesday : da ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 ANON_ENTITY : al ) ( > ( arrival_time $0 ) ANON_ENTITY : ti ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day_arrival $0 ANON_ENTITY : da ) ) )
|
atis_73
|
all round trip flights between new york and miami business class fare
|
( lambda $0 e ( and ( flight $0 ) ( round_trip $0 ) ( class_type $0 business : cl ) ( from $0 new_york : ci ) ( to $0 miami : ci ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( round_trip $0 ) ( class_type $0 ANON_ENTITY : cl ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) )
|
atis_74
|
all round trip flights between new york and miami coach fare
|
( lambda $0 e ( and ( flight $0 ) ( round_trip $0 ) ( class_type $0 coach : cl ) ( from $0 new_york : ci ) ( to $0 miami : ci ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( round_trip $0 ) ( class_type $0 ANON_ENTITY : cl ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) )
|
atis_75
|
all round trip flights between new york and miami that are first class
|
( lambda $0 e ( and ( flight $0 ) ( round_trip $0 ) ( class_type $0 first : cl ) ( from $0 new_york : ci ) ( to $0 miami : ci ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( round_trip $0 ) ( class_type $0 ANON_ENTITY : cl ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) )
|
atis_1863
|
information on round trip flights from pittsburgh to san francisco first class
|
( lambda $0 e ( and ( flight $0 ) ( round_trip $0 ) ( class_type $0 first : cl ) ( from $0 pittsburgh : ci ) ( to $0 san_francisco : ci ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( round_trip $0 ) ( class_type $0 ANON_ENTITY : cl ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) )
|
atis_3103
|
show me first class flights from new york to miami round trip
|
( lambda $0 e ( and ( flight $0 ) ( round_trip $0 ) ( class_type $0 first : cl ) ( from $0 new_york : ci ) ( to $0 miami : ci ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( round_trip $0 ) ( class_type $0 ANON_ENTITY : cl ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) )
|
atis_2005
|
list all flights arriving in denver between 8 and 9pm
|
( lambda $0 e ( and ( flight $0 ) ( > ( arrival_time $0 ) 2000 : ti ) ( < ( arrival_time $0 ) 2100 : ti ) ( to $0 denver : ci ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( > ( arrival_time $0 ) ANON_ENTITY : ti ) ( < ( arrival_time $0 ) ANON_ENTITY : ti ) ( to $0 ANON_ENTITY : ci ) ) )
|
atis_3054
|
show me all the flights that arrive in baltimore from anywhere between 1850 and midnight
|
( lambda $0 e ( and ( flight $0 ) ( > ( arrival_time $0 ) 1850 : ti ) ( < ( arrival_time $0 ) 2400 : ti ) ( to $0 baltimore : ci ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( > ( arrival_time $0 ) ANON_ENTITY : ti ) ( < ( arrival_time $0 ) ANON_ENTITY : ti ) ( to $0 ANON_ENTITY : ci ) ) )
|
atis_2201
|
list la
|
los_angeles : ci
|
ANON_ENTITY : ci
|
atis_220
|
can you show me fares for december sixteenth from oakland to dallas one way only
|
( lambda $0 e ( exists $1 ( and ( oneway $1 ) ( from $1 oakland : ci ) ( to $1 dallas : ci ) ( day_number $1 16 : dn ) ( month $1 december : mn ) ( = ( fare $1 ) $0 ) ) ) )
|
( lambda $0 e ( exists $1 ( and ( oneway $1 ) ( from $1 ANON_ENTITY : ci ) ( to $1 ANON_ENTITY : ci ) ( day_number $1 ANON_ENTITY : dn ) ( month $1 ANON_ENTITY : mn ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_232
|
can you show me what fares are available from oakland to dallas on december sixteenth one way only
|
( lambda $0 e ( exists $1 ( and ( oneway $1 ) ( from $1 oakland : ci ) ( to $1 dallas : ci ) ( day_number $1 16 : dn ) ( month $1 december : mn ) ( = ( fare $1 ) $0 ) ) ) )
|
( lambda $0 e ( exists $1 ( and ( oneway $1 ) ( from $1 ANON_ENTITY : ci ) ( to $1 ANON_ENTITY : ci ) ( day_number $1 ANON_ENTITY : dn ) ( month $1 ANON_ENTITY : mn ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_4594
|
what is the fare going from atlanta to boston one way on november seventh
|
( lambda $0 e ( exists $1 ( and ( oneway $1 ) ( from $1 atlanta : ci ) ( to $1 boston : ci ) ( day_number $1 7 : dn ) ( month $1 november : mn ) ( = ( fare $1 ) $0 ) ) ) )
|
( lambda $0 e ( exists $1 ( and ( oneway $1 ) ( from $1 ANON_ENTITY : ci ) ( to $1 ANON_ENTITY : ci ) ( day_number $1 ANON_ENTITY : dn ) ( month $1 ANON_ENTITY : mn ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_4595
|
what is the fare going from baltimore to atlanta one way on november seventh
|
( lambda $0 e ( exists $1 ( and ( oneway $1 ) ( from $1 baltimore : ci ) ( to $1 atlanta : ci ) ( day_number $1 7 : dn ) ( month $1 november : mn ) ( = ( fare $1 ) $0 ) ) ) )
|
( lambda $0 e ( exists $1 ( and ( oneway $1 ) ( from $1 ANON_ENTITY : ci ) ( to $1 ANON_ENTITY : ci ) ( day_number $1 ANON_ENTITY : dn ) ( month $1 ANON_ENTITY : mn ) ( = ( fare $1 ) $0 ) ) ) )
|
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 ) ) ) )
|
( lambda $0 e ( exists $1 ( and ( oneway $1 ) ( from $1 ANON_ENTITY : ci ) ( to $1 ANON_ENTITY : ci ) ( day_number $1 ANON_ENTITY : dn ) ( month $1 ANON_ENTITY : mn ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_4597
|
what is the fare going from boston to dallas fort worth one way on november seventh
|
( lambda $0 e ( exists $1 ( and ( oneway $1 ) ( from $1 boston : ci ) ( to $1 dallas : ci ) ( day_number $1 7 : dn ) ( month $1 november : mn ) ( = ( fare $1 ) $0 ) ) ) )
|
( lambda $0 e ( exists $1 ( and ( oneway $1 ) ( from $1 ANON_ENTITY : ci ) ( to $1 ANON_ENTITY : ci ) ( day_number $1 ANON_ENTITY : dn ) ( month $1 ANON_ENTITY : mn ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_4598
|
what is the fare going one way on november seventh from denver to oakland
|
( lambda $0 e ( exists $1 ( and ( oneway $1 ) ( from $1 denver : ci ) ( to $1 oakland : ci ) ( day_number $1 7 : dn ) ( month $1 november : mn ) ( = ( fare $1 ) $0 ) ) ) )
|
( lambda $0 e ( exists $1 ( and ( oneway $1 ) ( from $1 ANON_ENTITY : ci ) ( to $1 ANON_ENTITY : ci ) ( day_number $1 ANON_ENTITY : dn ) ( month $1 ANON_ENTITY : mn ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_4601
|
what is the fare on november seventh going one way from dallas to san francisco
|
( lambda $0 e ( exists $1 ( and ( oneway $1 ) ( from $1 dallas : ci ) ( to $1 san_francisco : ci ) ( day_number $1 7 : dn ) ( month $1 november : mn ) ( = ( fare $1 ) $0 ) ) ) )
|
( lambda $0 e ( exists $1 ( and ( oneway $1 ) ( from $1 ANON_ENTITY : ci ) ( to $1 ANON_ENTITY : ci ) ( day_number $1 ANON_ENTITY : dn ) ( month $1 ANON_ENTITY : mn ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_4602
|
what is the fare on november seventh going one way from pittsburgh to philadelphia
|
( lambda $0 e ( exists $1 ( and ( oneway $1 ) ( from $1 pittsburgh : ci ) ( to $1 philadelphia : ci ) ( day_number $1 7 : dn ) ( month $1 november : mn ) ( = ( fare $1 ) $0 ) ) ) )
|
( lambda $0 e ( exists $1 ( and ( oneway $1 ) ( from $1 ANON_ENTITY : ci ) ( to $1 ANON_ENTITY : ci ) ( day_number $1 ANON_ENTITY : dn ) ( month $1 ANON_ENTITY : mn ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_4603
|
what is the fare on november seventh going one way from san francisco to oakland
|
( lambda $0 e ( exists $1 ( and ( oneway $1 ) ( from $1 san_francisco : ci ) ( to $1 oakland : ci ) ( day_number $1 7 : dn ) ( month $1 november : mn ) ( = ( fare $1 ) $0 ) ) ) )
|
( lambda $0 e ( exists $1 ( and ( oneway $1 ) ( from $1 ANON_ENTITY : ci ) ( to $1 ANON_ENTITY : ci ) ( day_number $1 ANON_ENTITY : dn ) ( month $1 ANON_ENTITY : mn ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_635
|
flights from indianapolis nashville memphis to seattle
|
( lambda $0 e ( and ( flight $0 ) ( or ( from $0 nashville : ci ) ( from $0 memphis : ci ) ( from $0 indianapolis : ci ) ) ( to $0 seattle : ci ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( or ( from $0 ANON_ENTITY : ci ) ( from $0 ANON_ENTITY : ci ) ( from $0 ANON_ENTITY : ci ) ) ( to $0 ANON_ENTITY : ci ) ) )
|
atis_780
|
give me flights that arrive in baltimore from atlanta denver and pittsburgh
|
( lambda $0 e ( and ( flight $0 ) ( or ( from $0 denver : ci ) ( from $0 pittsburgh : ci ) ( from $0 atlanta : ci ) ) ( to $0 baltimore : ci ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( or ( from $0 ANON_ENTITY : ci ) ( from $0 ANON_ENTITY : ci ) ( from $0 ANON_ENTITY : ci ) ) ( to $0 ANON_ENTITY : ci ) ) )
|
atis_2071
|
list all flights that leave from baltimore or denver or pittsburgh and arrive in philadelphia
|
( lambda $0 e ( and ( flight $0 ) ( or ( from $0 baltimore : ci ) ( from $0 denver : ci ) ( from $0 pittsburgh : ci ) ) ( to $0 philadelphia : ci ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( or ( from $0 ANON_ENTITY : ci ) ( from $0 ANON_ENTITY : ci ) ( from $0 ANON_ENTITY : ci ) ) ( to $0 ANON_ENTITY : ci ) ) )
|
atis_2877
|
show me all flights arriving to denver from baltimore oakland and boston
|
( lambda $0 e ( and ( flight $0 ) ( or ( from $0 baltimore : ci ) ( from $0 oakland : ci ) ( from $0 boston : ci ) ) ( to $0 denver : ci ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( or ( from $0 ANON_ENTITY : ci ) ( from $0 ANON_ENTITY : ci ) ( from $0 ANON_ENTITY : ci ) ) ( to $0 ANON_ENTITY : ci ) ) )
|
atis_2894
|
show me all flights from baltimore or denver or pittsburgh that fly to philadelphia
|
( lambda $0 e ( and ( flight $0 ) ( or ( from $0 baltimore : ci ) ( from $0 denver : ci ) ( from $0 pittsburgh : ci ) ) ( to $0 philadelphia : ci ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( or ( from $0 ANON_ENTITY : ci ) ( from $0 ANON_ENTITY : ci ) ( from $0 ANON_ENTITY : ci ) ) ( to $0 ANON_ENTITY : ci ) ) )
|
atis_2915
|
show me all flights from denver or philadelphia or pittsburgh to baltimore
|
( lambda $0 e ( and ( flight $0 ) ( or ( from $0 denver : ci ) ( from $0 philadelphia : ci ) ( from $0 pittsburgh : ci ) ) ( to $0 baltimore : ci ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( or ( from $0 ANON_ENTITY : ci ) ( from $0 ANON_ENTITY : ci ) ( from $0 ANON_ENTITY : ci ) ) ( to $0 ANON_ENTITY : ci ) ) )
|
atis_2993
|
show me all flights that arrive in philadelphia from baltimore denver or pittsburgh
|
( lambda $0 e ( and ( flight $0 ) ( or ( from $0 baltimore : ci ) ( from $0 denver : ci ) ( from $0 pittsburgh : ci ) ) ( to $0 philadelphia : ci ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( or ( from $0 ANON_ENTITY : ci ) ( from $0 ANON_ENTITY : ci ) ( from $0 ANON_ENTITY : ci ) ) ( to $0 ANON_ENTITY : ci ) ) )
|
atis_2996
|
show me all flights to dallas from san francisco atlanta and pittsburgh
|
( lambda $0 e ( and ( flight $0 ) ( or ( from $0 san_francisco : ci ) ( from $0 pittsburgh : ci ) ( from $0 atlanta : ci ) ) ( to $0 dallas : ci ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( or ( from $0 ANON_ENTITY : ci ) ( from $0 ANON_ENTITY : ci ) ( from $0 ANON_ENTITY : ci ) ) ( to $0 ANON_ENTITY : ci ) ) )
|
atis_3058
|
show me all the flights to baltimore from denver or philadelphia or pittsburgh
|
( lambda $0 e ( and ( flight $0 ) ( or ( from $0 denver : ci ) ( from $0 philadelphia : ci ) ( from $0 pittsburgh : ci ) ) ( to $0 baltimore : ci ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( or ( from $0 ANON_ENTITY : ci ) ( from $0 ANON_ENTITY : ci ) ( from $0 ANON_ENTITY : ci ) ) ( to $0 ANON_ENTITY : ci ) ) )
|
atis_3218
|
show me flights to dallas from san francisco and atlanta and pittsburgh
|
( lambda $0 e ( and ( flight $0 ) ( or ( from $0 san_francisco : ci ) ( from $0 pittsburgh : ci ) ( from $0 atlanta : ci ) ) ( to $0 dallas : ci ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( or ( from $0 ANON_ENTITY : ci ) ( from $0 ANON_ENTITY : ci ) ( from $0 ANON_ENTITY : ci ) ) ( to $0 ANON_ENTITY : ci ) ) )
|
atis_4189
|
what flights do you have available from denver dallas and pittsburgh into baltimore
|
( lambda $0 e ( and ( flight $0 ) ( or ( from $0 denver : ci ) ( from $0 dallas : ci ) ( from $0 pittsburgh : ci ) ) ( to $0 baltimore : ci ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( or ( from $0 ANON_ENTITY : ci ) ( from $0 ANON_ENTITY : ci ) ( from $0 ANON_ENTITY : ci ) ) ( to $0 ANON_ENTITY : ci ) ) )
|
atis_4504
|
what is the cost of a round trip ticket first class between oak and atl
|
( lambda $0 e ( exists $1 ( and ( round_trip $1 ) ( class_type $1 first : cl ) ( from $1 oak : ap ) ( to $1 atl : ap ) ( = ( fare $1 ) $0 ) ) ) )
|
( lambda $0 e ( exists $1 ( and ( round_trip $1 ) ( class_type $1 ANON_ENTITY : cl ) ( from $1 ANON_ENTITY : ap ) ( to $1 ANON_ENTITY : ap ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_2464
|
on tuesday the twenty third flights from philadelphia to san francisco on american airlines
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 aa : al ) ( from $0 philadelphia : ci ) ( to $0 san_francisco : ci ) ( day $0 tuesday : da ) ( day_number $0 23 : dn ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 ANON_ENTITY : al ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day $0 ANON_ENTITY : da ) ( day_number $0 ANON_ENTITY : dn ) ) )
|
atis_770
|
give me american airlines from milwaukee to phoenix on saturday and sunday
|
( lambda $0 e ( and ( airline $0 aa : al ) ( from $0 milwaukee : ci ) ( to $0 phoenix : ci ) ( or ( day $0 saturday : da ) ( day $0 sunday : da ) ) ) )
|
( lambda $0 e ( and ( airline $0 ANON_ENTITY : al ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( or ( day $0 ANON_ENTITY : da ) ( day $0 ANON_ENTITY : da ) ) ) )
|
atis_1997
|
list all daily flights between boston and oakland as well as boston and oakland using american airline
|
( lambda $0 e ( and ( flight $0 ) ( daily $0 ) ( airline $0 aa : al ) ( from $0 boston : ci ) ( to $0 oakland : ci ) ( from $0 boston : ci ) ( to $0 oakland : ci ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( daily $0 ) ( airline $0 ANON_ENTITY : al ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) )
|
atis_210
|
can you list flights from boston to washington with the lowest one way fares that leave on saturday
|
( argmin $0 ( and ( flight $0 ) ( oneway $0 ) ( from $0 boston : ci ) ( to $0 washington : ci ) ( day $0 saturday : da ) ) ( fare $0 ) )
|
( argmin $0 ( and ( flight $0 ) ( oneway $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day $0 ANON_ENTITY : da ) ) ( fare $0 ) )
|
atis_2170
|
list flights from montreal to washington with the lowest one way fares that leaves on saturday
|
( argmin $0 ( and ( flight $0 ) ( oneway $0 ) ( from $0 montreal : ci ) ( to $0 washington : ci ) ( day $0 saturday : da ) ) ( fare $0 ) )
|
( argmin $0 ( and ( flight $0 ) ( oneway $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day $0 ANON_ENTITY : da ) ) ( fare $0 ) )
|
atis_3980
|
what car rentals are available next sunday from denver airport
|
( lambda $0 e ( and ( from_airport $0 den : ap ) ( day $0 sunday : da ) ( rental_car $0 ) ) )
|
( lambda $0 e ( and ( from_airport $0 ANON_ENTITY : ap ) ( day $0 ANON_ENTITY : da ) ( rental_car $0 ) ) )
|
atis_4625
|
what is the flight number of the earliest flight between boston and washington dc
|
( flight_number ( argmin $0 ( and ( flight $0 ) ( from $0 boston : ci ) ( to $0 washington : ci ) ) ( departure_time $0 ) ) )
|
( flight_number ( argmin $0 ( and ( flight $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) ( departure_time $0 ) ) )
|
atis_1659
|
i'd like a twa flight from atlanta to pittsburgh with a stopover in fort worth dallas please
|
( lambda $0 e ( and ( from $0 atlanta : ci ) ( to $0 pittsburgh : ci ) ( flight $0 ) ( stop $0 fort_worth : ci ) ( airline $0 tw : al ) ) )
|
( lambda $0 e ( and ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( flight $0 ) ( stop $0 ANON_ENTITY : ci ) ( airline $0 ANON_ENTITY : al ) ) )
|
atis_4083
|
what flights are available from atlanta to oakland with one way economy fares
|
( lambda $0 e ( and ( flight $0 ) ( oneway $0 ) ( economy $0 ) ( from $0 atlanta : ci ) ( to $0 oakland : ci ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( oneway $0 ) ( economy $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) )
|
atis_4093
|
what flights are available from dallas to atlanta with one way economy fares
|
( lambda $0 e ( and ( flight $0 ) ( oneway $0 ) ( economy $0 ) ( from $0 dallas : ci ) ( to $0 atlanta : ci ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( oneway $0 ) ( economy $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) )
|
atis_346
|
display types of aircraft departing from cleveland to dallas before noon
|
( lambda $0 e ( exists $1 ( and ( < ( departure_time $1 ) 1200 : ti ) ( from $1 cleveland : ci ) ( to $1 dallas : ci ) ( = ( aircraft_code $1 ) $0 ) ) ) )
|
( lambda $0 e ( exists $1 ( and ( < ( departure_time $1 ) ANON_ENTITY : ti ) ( from $1 ANON_ENTITY : ci ) ( to $1 ANON_ENTITY : ci ) ( = ( aircraft_code $1 ) $0 ) ) ) )
|
atis_2713
|
please tell me the type of aircraft used from atlanta to denver before 12 o'clock noon
|
( lambda $0 e ( exists $1 ( and ( < ( departure_time $1 ) 1200 : ti ) ( from $1 atlanta : ci ) ( to $1 denver : ci ) ( = ( aircraft_code $1 ) $0 ) ) ) )
|
( lambda $0 e ( exists $1 ( and ( < ( departure_time $1 ) ANON_ENTITY : ti ) ( from $1 ANON_ENTITY : ci ) ( to $1 ANON_ENTITY : ci ) ( = ( aircraft_code $1 ) $0 ) ) ) )
|
atis_2722
|
repeating leaving denver to san francisco before 10am what type of aircraft is used
|
( lambda $0 e ( exists $1 ( and ( < ( departure_time $1 ) 1000 : ti ) ( from $1 denver : ci ) ( to $1 san_francisco : ci ) ( = ( aircraft_code $1 ) $0 ) ) ) )
|
( lambda $0 e ( exists $1 ( and ( < ( departure_time $1 ) ANON_ENTITY : ti ) ( from $1 ANON_ENTITY : ci ) ( to $1 ANON_ENTITY : ci ) ( = ( aircraft_code $1 ) $0 ) ) ) )
|
atis_4839
|
what type of aircraft leaves from boston to washington dc before 9am
|
( lambda $0 e ( exists $1 ( and ( < ( departure_time $1 ) 900 : ti ) ( from $1 boston : ci ) ( to $1 washington : ci ) ( = ( aircraft_code $1 ) $0 ) ) ) )
|
( lambda $0 e ( exists $1 ( and ( < ( departure_time $1 ) ANON_ENTITY : ti ) ( from $1 ANON_ENTITY : ci ) ( to $1 ANON_ENTITY : ci ) ( = ( aircraft_code $1 ) $0 ) ) ) )
|
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 ) ) ) ) )
|
( lambda $0 e ( and ( day_arrival $0 ANON_ENTITY : da ) ( to $0 ANON_ENTITY : ci ) ( < ( arrival_time $0 ) ANON_ENTITY : ti ) ( during_day $0 ANON_ENTITY : pd ) ( exists $1 ( and ( airport $1 ) ( from $0 $1 ) ) ) ) )
|
atis_28
|
all flights from baltimore to philadelphia less than 1000 dollars
|
( lambda $0 e ( and ( flight $0 ) ( < ( fare $0 ) 1000 : do ) ( from $0 baltimore : ci ) ( to $0 philadelphia : ci ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( < ( fare $0 ) ANON_ENTITY : do ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) )
|
atis_3681
|
the cheapest flights between boston and philadelphia which arrive between 3 and 5 o'clock on tuesday
|
( argmin $0 ( and ( flight $0 ) ( > ( arrival_time $0 ) 1500 : ti ) ( < ( arrival_time $0 ) 1700 : ti ) ( from $0 boston : ci ) ( to $0 philadelphia : ci ) ( day $0 tuesday : da ) ) ( fare $0 ) )
|
( argmin $0 ( and ( flight $0 ) ( > ( arrival_time $0 ) ANON_ENTITY : ti ) ( < ( arrival_time $0 ) ANON_ENTITY : ti ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day $0 ANON_ENTITY : da ) ) ( fare $0 ) )
|
atis_304
|
could you tell me if delta flight 296 serves breakfast
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 dl : al ) ( flight_number $0 296 : fn ) ( meal $0 breakfast : me ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 ANON_ENTITY : al ) ( flight_number $0 ANON_ENTITY : fn ) ( meal $0 ANON_ENTITY : me ) ) )
|
atis_2516
|
please give me flight schedules from baltimore to philadelphia
|
( lambda $0 e ( exists $1 ( and ( from $1 baltimore : ci ) ( to $1 philadelphia : ci ) ( = ( departure_time $1 ) $0 ) ) ) )
|
( lambda $0 e ( exists $1 ( and ( from $1 ANON_ENTITY : ci ) ( to $1 ANON_ENTITY : ci ) ( = ( departure_time $1 ) $0 ) ) ) )
|
atis_2517
|
please give me flight schedules from pittsburgh to philadelphia
|
( lambda $0 e ( exists $1 ( and ( from $1 pittsburgh : ci ) ( to $1 philadelphia : ci ) ( = ( departure_time $1 ) $0 ) ) ) )
|
( lambda $0 e ( exists $1 ( and ( from $1 ANON_ENTITY : ci ) ( to $1 ANON_ENTITY : ci ) ( = ( departure_time $1 ) $0 ) ) ) )
|
atis_2609
|
please list the flight times for boston to pittsburgh
|
( lambda $0 e ( exists $1 ( and ( from $1 boston : ci ) ( to $1 pittsburgh : ci ) ( = ( departure_time $1 ) $0 ) ) ) )
|
( lambda $0 e ( exists $1 ( and ( from $1 ANON_ENTITY : ci ) ( to $1 ANON_ENTITY : ci ) ( = ( departure_time $1 ) $0 ) ) ) )
|
atis_2610
|
please list the flight times from boston to pittsburgh
|
( lambda $0 e ( exists $1 ( and ( from $1 boston : ci ) ( to $1 pittsburgh : ci ) ( = ( departure_time $1 ) $0 ) ) ) )
|
( lambda $0 e ( exists $1 ( and ( from $1 ANON_ENTITY : ci ) ( to $1 ANON_ENTITY : ci ) ( = ( departure_time $1 ) $0 ) ) ) )
|
atis_2611
|
please list the flight times from newark to boston
|
( lambda $0 e ( exists $1 ( and ( from $1 newark : ci ) ( to $1 boston : ci ) ( = ( departure_time $1 ) $0 ) ) ) )
|
( lambda $0 e ( exists $1 ( and ( from $1 ANON_ENTITY : ci ) ( to $1 ANON_ENTITY : ci ) ( = ( departure_time $1 ) $0 ) ) ) )
|
atis_2612
|
please list the flight times from pittsburgh to newark
|
( lambda $0 e ( exists $1 ( and ( from $1 pittsburgh : ci ) ( to $1 newark : ci ) ( = ( departure_time $1 ) $0 ) ) ) )
|
( lambda $0 e ( exists $1 ( and ( from $1 ANON_ENTITY : ci ) ( to $1 ANON_ENTITY : ci ) ( = ( departure_time $1 ) $0 ) ) ) )
|
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 ) ) ) )
|
( lambda $0 e ( exists $1 ( and ( from $1 ANON_ENTITY : ci ) ( to $1 ANON_ENTITY : ci ) ( = ( departure_time $1 ) $0 ) ) ) )
|
atis_4576
|
what is the earliest flight that has no stops from washington to san francisco on friday
|
( argmin $0 ( and ( flight $0 ) ( nonstop $0 ) ( from $0 washington : ci ) ( to $0 san_francisco : ci ) ( day $0 friday : da ) ) ( departure_time $0 ) )
|
( argmin $0 ( and ( flight $0 ) ( nonstop $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day $0 ANON_ENTITY : da ) ) ( departure_time $0 ) )
|
atis_1281
|
i want a flight from los angeles to charlotte that leaves on a weekday morning
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 morning : pd ) ( from $0 los_angeles : ci ) ( to $0 charlotte : ci ) ( weekday $0 ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 ANON_ENTITY : pd ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( weekday $0 ) ) )
|
atis_3716
|
what afternoon flights are available from pittsburgh to atlanta on a weekday
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 afternoon : pd ) ( from $0 pittsburgh : ci ) ( to $0 atlanta : ci ) ( weekday $0 ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 ANON_ENTITY : pd ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( weekday $0 ) ) )
|
atis_4489
|
what is the cheapest ticket from baltimore to san francisco on friday august thirtieth
|
( argmin $0 ( and ( day $0 friday : da ) ( to $0 san_francisco : ci ) ( from $0 baltimore : ci ) ( month $0 august : mn ) ( day_number $0 30 : dn ) ) ( fare $0 ) )
|
( argmin $0 ( and ( day $0 ANON_ENTITY : da ) ( to $0 ANON_ENTITY : ci ) ( from $0 ANON_ENTITY : ci ) ( month $0 ANON_ENTITY : mn ) ( day_number $0 ANON_ENTITY : dn ) ) ( fare $0 ) )
|
atis_403
|
does any airline have an early afternoon flight from boston to denver
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( during_day $1 early : pd ) ( during_day $1 afternoon : pd ) ( from $1 boston : ci ) ( to $1 denver : ci ) ( = ( airline : e $1 ) $0 ) ) ) )
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( during_day $1 ANON_ENTITY : pd ) ( during_day $1 ANON_ENTITY : pd ) ( from $1 ANON_ENTITY : ci ) ( to $1 ANON_ENTITY : ci ) ( = ( ANON_ENTITY : e $1 ) $0 ) ) ) )
|
atis_404
|
does any airline have an early afternoon flight from boston to pittsburgh
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( during_day $1 early : pd ) ( during_day $1 afternoon : pd ) ( from $1 boston : ci ) ( to $1 pittsburgh : ci ) ( = ( airline : e $1 ) $0 ) ) ) )
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( during_day $1 ANON_ENTITY : pd ) ( during_day $1 ANON_ENTITY : pd ) ( from $1 ANON_ENTITY : ci ) ( to $1 ANON_ENTITY : ci ) ( = ( ANON_ENTITY : e $1 ) $0 ) ) ) )
|
atis_62
|
all northwest and united airlines flights with stopovers in denver
|
( lambda $0 e ( and ( flight $0 ) ( or ( airline $0 nw : al ) ( airline $0 ua : al ) ) ( stop $0 denver : ci ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( or ( airline $0 ANON_ENTITY : al ) ( airline $0 ANON_ENTITY : al ) ) ( stop $0 ANON_ENTITY : 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 ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( or ( airline $0 ANON_ENTITY : al ) ( airline $0 ANON_ENTITY : al ) ) ( stop $0 ANON_ENTITY : ci ) ) )
|
atis_5015
|
which flights on united airlines and northwest go through denver
|
( lambda $0 e ( and ( flight $0 ) ( or ( airline $0 ua : al ) ( airline $0 nw : al ) ) ( stop $0 denver : ci ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( or ( airline $0 ANON_ENTITY : al ) ( airline $0 ANON_ENTITY : al ) ) ( stop $0 ANON_ENTITY : ci ) ) )
|
atis_1651
|
i'd like a nonstop flight from indianapolis to san diego that serves dinner what's available
|
( lambda $0 e ( and ( flight $0 ) ( nonstop $0 ) ( meal $0 dinner : me ) ( from $0 indianapolis : ci ) ( to $0 san_diego : ci ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( nonstop $0 ) ( meal $0 ANON_ENTITY : me ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) )
|
atis_4062
|
what first class airplane goes from philadelphia to san francisco and stops in dallas in the afternoon on monday
|
( lambda $0 e ( exists $1 ( and ( class_type $1 first : cl ) ( during_day $1 afternoon : pd ) ( from $1 philadelphia : ci ) ( to $1 san_francisco : ci ) ( stop $1 dallas : ci ) ( day $1 monday : da ) ( = ( aircraft_code $1 ) $0 ) ) ) )
|
( lambda $0 e ( exists $1 ( and ( class_type $1 ANON_ENTITY : cl ) ( during_day $1 ANON_ENTITY : pd ) ( from $1 ANON_ENTITY : ci ) ( to $1 ANON_ENTITY : ci ) ( stop $1 ANON_ENTITY : ci ) ( day $1 ANON_ENTITY : da ) ( = ( aircraft_code $1 ) $0 ) ) ) )
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.