qid
stringlengths 6
9
| source
stringlengths 6
259
| target
stringlengths 6
409
| anonymized_target
stringlengths 16
454
|
---|---|---|---|
atis_4309
|
what flights go from tampa to charlotte on sunday
|
( lambda $0 e ( and ( flight $0 ) ( from $0 tampa : ci ) ( to $0 charlotte : ci ) ( day $0 sunday : da ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day $0 ANON_ENTITY : da ) ) )
|
atis_4324
|
what flights leave from chicago to seattle on saturday
|
( lambda $0 e ( and ( flight $0 ) ( from $0 chicago : ci ) ( to $0 seattle : ci ) ( day $0 saturday : da ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day $0 ANON_ENTITY : da ) ) )
|
atis_4343
|
what flights leave washington dc and arrive in san francisco on wednesday
|
( lambda $0 e ( and ( flight $0 ) ( from $0 washington : ci ) ( to $0 san_francisco : ci ) ( day $0 wednesday : da ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day $0 ANON_ENTITY : da ) ) )
|
atis_4346
|
what flights return from denver to philadelphia on a saturday
|
( lambda $0 e ( and ( flight $0 ) ( from $0 denver : ci ) ( to $0 philadelphia : ci ) ( day $0 saturday : da ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day $0 ANON_ENTITY : da ) ) )
|
atis_5004
|
which flights are there on tuesday from san francisco to pittsburgh
|
( lambda $0 e ( and ( flight $0 ) ( from $0 san_francisco : ci ) ( to $0 pittsburgh : ci ) ( day $0 tuesday : da ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day $0 ANON_ENTITY : da ) ) )
|
atis_212
|
can you list the cheapest round trip fare from orlando to kansas city
|
( min $0 ( exists $1 ( and ( from $1 orlando : ci ) ( to $1 kansas_city : ci ) ( round_trip $1 ) ( = ( fare $1 ) $0 ) ) ) )
|
( min $0 ( exists $1 ( and ( from $1 ANON_ENTITY : ci ) ( to $1 ANON_ENTITY : ci ) ( round_trip $1 ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_260
|
cheapest round trip airfare from tacoma to orlando
|
( min $0 ( exists $1 ( and ( from $1 tacoma : ci ) ( to $1 orlando : ci ) ( round_trip $1 ) ( = ( fare $1 ) $0 ) ) ) )
|
( min $0 ( exists $1 ( and ( from $1 ANON_ENTITY : ci ) ( to $1 ANON_ENTITY : ci ) ( round_trip $1 ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_1678
|
i'd like information on the least expensive airfare round trip from pittsburgh to boston
|
( min $0 ( exists $1 ( and ( from $1 pittsburgh : ci ) ( to $1 boston : ci ) ( round_trip $1 ) ( = ( fare $1 ) $0 ) ) ) )
|
( min $0 ( exists $1 ( and ( from $1 ANON_ENTITY : ci ) ( to $1 ANON_ENTITY : ci ) ( round_trip $1 ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_3326
|
show me the cheapest round trip fare from baltimore to dallas
|
( min $0 ( exists $1 ( and ( from $1 baltimore : ci ) ( to $1 dallas : ci ) ( round_trip $1 ) ( = ( fare $1 ) $0 ) ) ) )
|
( min $0 ( exists $1 ( and ( from $1 ANON_ENTITY : ci ) ( to $1 ANON_ENTITY : ci ) ( round_trip $1 ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_3327
|
show me the cheapest round trip fares from san francisco to salt lake city
|
( min $0 ( exists $1 ( and ( from $1 san_francisco : ci ) ( to $1 salt_lake_city : ci ) ( round_trip $1 ) ( = ( fare $1 ) $0 ) ) ) )
|
( min $0 ( exists $1 ( and ( from $1 ANON_ENTITY : ci ) ( to $1 ANON_ENTITY : ci ) ( round_trip $1 ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_4447
|
what is the cheapest fare from dallas to denver round trip
|
( min $0 ( exists $1 ( and ( from $1 dallas : ci ) ( to $1 denver : ci ) ( round_trip $1 ) ( = ( fare $1 ) $0 ) ) ) )
|
( min $0 ( exists $1 ( and ( from $1 ANON_ENTITY : ci ) ( to $1 ANON_ENTITY : ci ) ( round_trip $1 ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_4483
|
what is the cheapest round trip fare between boston and san francisco
|
( min $0 ( exists $1 ( and ( from $1 boston : ci ) ( to $1 san_francisco : ci ) ( round_trip $1 ) ( = ( fare $1 ) $0 ) ) ) )
|
( min $0 ( exists $1 ( and ( from $1 ANON_ENTITY : ci ) ( to $1 ANON_ENTITY : ci ) ( round_trip $1 ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_4484
|
what is the cheapest round trip fare from atlanta to pittsburgh
|
( min $0 ( exists $1 ( and ( from $1 atlanta : ci ) ( to $1 pittsburgh : ci ) ( round_trip $1 ) ( = ( fare $1 ) $0 ) ) ) )
|
( min $0 ( exists $1 ( and ( from $1 ANON_ENTITY : ci ) ( to $1 ANON_ENTITY : ci ) ( round_trip $1 ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_4485
|
what is the cheapest round trip fare from pittsburgh to atlanta
|
( min $0 ( exists $1 ( and ( from $1 pittsburgh : ci ) ( to $1 atlanta : ci ) ( round_trip $1 ) ( = ( fare $1 ) $0 ) ) ) )
|
( min $0 ( exists $1 ( and ( from $1 ANON_ENTITY : ci ) ( to $1 ANON_ENTITY : ci ) ( round_trip $1 ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_4886
|
what's the cheapest round trip fare between boston and washington
|
( min $0 ( exists $1 ( and ( from $1 boston : ci ) ( to $1 washington : ci ) ( round_trip $1 ) ( = ( fare $1 ) $0 ) ) ) )
|
( min $0 ( exists $1 ( and ( from $1 ANON_ENTITY : ci ) ( to $1 ANON_ENTITY : ci ) ( round_trip $1 ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_4887
|
what's the cheapest round trip fare between dallas and baltimore
|
( min $0 ( exists $1 ( and ( from $1 dallas : ci ) ( to $1 baltimore : ci ) ( round_trip $1 ) ( = ( fare $1 ) $0 ) ) ) )
|
( min $0 ( exists $1 ( and ( from $1 ANON_ENTITY : ci ) ( to $1 ANON_ENTITY : ci ) ( round_trip $1 ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_4923
|
what's the lowest round trip fare from atlanta to pittsburgh
|
( min $0 ( exists $1 ( and ( from $1 atlanta : ci ) ( to $1 pittsburgh : ci ) ( round_trip $1 ) ( = ( fare $1 ) $0 ) ) ) )
|
( min $0 ( exists $1 ( and ( from $1 ANON_ENTITY : ci ) ( to $1 ANON_ENTITY : ci ) ( round_trip $1 ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_4926
|
what's the lowest round trip fare from dallas to atlanta
|
( min $0 ( exists $1 ( and ( from $1 dallas : ci ) ( to $1 atlanta : ci ) ( round_trip $1 ) ( = ( fare $1 ) $0 ) ) ) )
|
( min $0 ( exists $1 ( and ( from $1 ANON_ENTITY : ci ) ( to $1 ANON_ENTITY : ci ) ( round_trip $1 ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_4927
|
what's the lowest round trip fare from dallas to baltimore
|
( min $0 ( exists $1 ( and ( from $1 dallas : ci ) ( to $1 baltimore : ci ) ( round_trip $1 ) ( = ( fare $1 ) $0 ) ) ) )
|
( min $0 ( exists $1 ( and ( from $1 ANON_ENTITY : ci ) ( to $1 ANON_ENTITY : ci ) ( round_trip $1 ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_4928
|
what's the lowest round trip fare from denver to atlanta
|
( min $0 ( exists $1 ( and ( from $1 denver : ci ) ( to $1 atlanta : ci ) ( round_trip $1 ) ( = ( fare $1 ) $0 ) ) ) )
|
( min $0 ( exists $1 ( and ( from $1 ANON_ENTITY : ci ) ( to $1 ANON_ENTITY : ci ) ( round_trip $1 ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_4929
|
what's the lowest round trip fare from denver to pittsburgh
|
( min $0 ( exists $1 ( and ( from $1 denver : ci ) ( to $1 pittsburgh : ci ) ( round_trip $1 ) ( = ( fare $1 ) $0 ) ) ) )
|
( min $0 ( exists $1 ( and ( from $1 ANON_ENTITY : ci ) ( to $1 ANON_ENTITY : ci ) ( round_trip $1 ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_88
|
american flight 4400 from cincinnati to houston
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 aa : al ) ( flight_number $0 4400 : fn ) ( from $0 cincinnati : ci ) ( to $0 houston : ci ) ) )
|
( lambda $0 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 ) ) )
|
atis_3837
|
what are the dinner flights from indianapolis to san diego on wednesday may twelfth
|
( lambda $0 e ( and ( flight $0 ) ( meal $0 dinner : me ) ( from $0 indianapolis : ci ) ( to $0 san_diego : ci ) ( day $0 wednesday : da ) ( day_number $0 12 : dn ) ( month $0 may : mn ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( meal $0 ANON_ENTITY : me ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day $0 ANON_ENTITY : da ) ( day_number $0 ANON_ENTITY : dn ) ( month $0 ANON_ENTITY : mn ) ) )
|
atis_1191
|
i need flight numbers and airlines for flights departing from oakland to salt lake city on thursday departing before 8am
|
( lambda $0 e ( lambda $1 e ( exists $2 ( and ( flight $2 ) ( < ( departure_time $2 ) 800 : ti ) ( from $2 oakland : ci ) ( to $2 salt_lake_city : ci ) ( day $2 thursday : da ) ( = ( flight_number $2 ) $0 ) ( = ( airline : e $2 ) $1 ) ) ) ) )
|
( lambda $0 e ( lambda $1 e ( exists $2 ( and ( flight $2 ) ( < ( departure_time $2 ) ANON_ENTITY : ti ) ( from $2 ANON_ENTITY : ci ) ( to $2 ANON_ENTITY : ci ) ( day $2 ANON_ENTITY : da ) ( = ( flight_number $2 ) $0 ) ( = ( ANON_ENTITY : e $2 ) $1 ) ) ) ) )
|
atis_57
|
all flights leaving washington dc to san francisco that are first class
|
( lambda $0 e ( and ( flight $0 ) ( class_type $0 first : cl ) ( from $0 washington : ci ) ( to $0 san_francisco : ci ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( class_type $0 ANON_ENTITY : cl ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) )
|
atis_152
|
are there any thrift economy flights to san francisco from boston
|
( lambda $0 e ( and ( flight $0 ) ( class_type $0 thrift : cl ) ( from $0 boston : ci ) ( to $0 san_francisco : ci ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( class_type $0 ANON_ENTITY : cl ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) )
|
atis_1397
|
i would like a coach class seat on a flight leaving denver arriving atlanta
|
( lambda $0 e ( and ( flight $0 ) ( class_type $0 coach : cl ) ( from $0 denver : ci ) ( to $0 atlanta : ci ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( class_type $0 ANON_ENTITY : cl ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) )
|
atis_1701
|
i'd like to buy a coach class ticket for a flight from denver to atlanta
|
( lambda $0 e ( and ( flight $0 ) ( class_type $0 coach : cl ) ( from $0 denver : ci ) ( to $0 atlanta : ci ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( class_type $0 ANON_ENTITY : cl ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) )
|
atis_2245
|
list the first class flights from baltimore to denver
|
( lambda $0 e ( and ( flight $0 ) ( class_type $0 first : cl ) ( from $0 baltimore : ci ) ( to $0 denver : ci ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( class_type $0 ANON_ENTITY : cl ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) )
|
atis_2304
|
listing of all first class flights from washington to san francisco
|
( lambda $0 e ( and ( flight $0 ) ( class_type $0 first : cl ) ( from $0 washington : ci ) ( to $0 san_francisco : ci ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( class_type $0 ANON_ENTITY : cl ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) )
|
atis_2777
|
show all flights with first class from baltimore to dallas
|
( lambda $0 e ( and ( flight $0 ) ( class_type $0 first : cl ) ( from $0 baltimore : ci ) ( to $0 dallas : ci ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( class_type $0 ANON_ENTITY : cl ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) )
|
atis_3370
|
show me the first class flights from denver to baltimore
|
( lambda $0 e ( and ( flight $0 ) ( class_type $0 first : cl ) ( from $0 denver : ci ) ( to $0 baltimore : ci ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( class_type $0 ANON_ENTITY : cl ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) )
|
atis_3440
|
show me the flights from dallas to baltimore in first class
|
( lambda $0 e ( and ( flight $0 ) ( class_type $0 first : cl ) ( from $0 dallas : ci ) ( to $0 baltimore : ci ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( class_type $0 ANON_ENTITY : cl ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) )
|
atis_1192
|
i need flight numbers for those flights departing on thursday before 8am from oakland going to salt lake city
|
( lambda $0 e ( exists $1 ( and ( < ( departure_time $1 ) 800 : ti ) ( from $1 oakland : ci ) ( to $1 salt_lake_city : ci ) ( day $1 thursday : da ) ( = ( flight_number $1 ) $0 ) ) ) )
|
( lambda $0 e ( exists $1 ( and ( < ( departure_time $1 ) ANON_ENTITY : ti ) ( from $1 ANON_ENTITY : ci ) ( to $1 ANON_ENTITY : ci ) ( day $1 ANON_ENTITY : da ) ( = ( flight_number $1 ) $0 ) ) ) )
|
atis_1096
|
i need a flight from long beach to st. louis stopping in dallas the flight should also serve lunch
|
( lambda $0 e ( and ( flight $0 ) ( meal $0 lunch : me ) ( from $0 long_beach : ci ) ( to $0 st_louis : ci ) ( stop $0 dallas : ci ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( meal $0 ANON_ENTITY : me ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( stop $0 ANON_ENTITY : ci ) ) )
|
atis_1533
|
i would like to find a flight that goes from boston to orlando i would like it to have a stop in new york and i would like a flight that serves breakfast
|
( lambda $0 e ( and ( flight $0 ) ( meal $0 breakfast : me ) ( from $0 boston : ci ) ( to $0 orlando : ci ) ( stop $0 new_york : ci ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( meal $0 ANON_ENTITY : me ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( stop $0 ANON_ENTITY : ci ) ) )
|
atis_1535
|
i would like to find a flight that goes from tampa to montreal making a stop in new york and a flight that serves lunch
|
( lambda $0 e ( and ( flight $0 ) ( meal $0 lunch : me ) ( from $0 tampa : ci ) ( to $0 montreal : ci ) ( stop $0 new_york : ci ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( meal $0 ANON_ENTITY : me ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( stop $0 ANON_ENTITY : ci ) ) )
|
atis_1628
|
i'd like a flight from columbus to phoenix stopping in cincinnati and serving dinner what's available
|
( lambda $0 e ( and ( flight $0 ) ( meal $0 dinner : me ) ( from $0 columbus : ci ) ( to $0 phoenix : ci ) ( stop $0 cincinnati : ci ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( meal $0 ANON_ENTITY : me ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( stop $0 ANON_ENTITY : ci ) ) )
|
atis_1812
|
i'm looking for a flight from charlotte to las vegas that stops in st. louis hopefully a dinner flight how can i find that out
|
( lambda $0 e ( and ( flight $0 ) ( meal $0 dinner : me ) ( from $0 charlotte : ci ) ( to $0 las_vegas : ci ) ( stop $0 st_louis : ci ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( meal $0 ANON_ENTITY : me ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( stop $0 ANON_ENTITY : ci ) ) )
|
atis_2432
|
on a breakfast flight from philadelphia to dallas via atlanta
|
( lambda $0 e ( and ( flight $0 ) ( meal $0 breakfast : me ) ( from $0 philadelphia : ci ) ( to $0 dallas : ci ) ( stop $0 atlanta : ci ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( meal $0 ANON_ENTITY : me ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( stop $0 ANON_ENTITY : ci ) ) )
|
atis_1034
|
how much is coach flight from pittsburgh to atlanta
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( class_type $1 coach : cl ) ( from $1 pittsburgh : ci ) ( to $1 atlanta : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( class_type $1 ANON_ENTITY : cl ) ( from $1 ANON_ENTITY : ci ) ( to $1 ANON_ENTITY : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_1586
|
i would like to know the first class fare on a flight from baltimore to denver
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( class_type $1 first : cl ) ( from $1 baltimore : ci ) ( to $1 denver : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( class_type $1 ANON_ENTITY : cl ) ( from $1 ANON_ENTITY : ci ) ( to $1 ANON_ENTITY : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_3823
|
what are the coach class fares on flights from pittsburgh to atlanta
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( class_type $1 coach : cl ) ( from $1 pittsburgh : ci ) ( to $1 atlanta : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( class_type $1 ANON_ENTITY : cl ) ( from $1 ANON_ENTITY : ci ) ( to $1 ANON_ENTITY : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_3827
|
what are the coach fares for flights from pittsburgh to denver
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( class_type $1 coach : cl ) ( from $1 pittsburgh : ci ) ( to $1 denver : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( class_type $1 ANON_ENTITY : cl ) ( from $1 ANON_ENTITY : ci ) ( to $1 ANON_ENTITY : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_4605
|
what is the fare on the thrift economy flight from boston to san francisco
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( class_type $1 thrift : cl ) ( from $1 boston : ci ) ( to $1 san_francisco : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( class_type $1 ANON_ENTITY : cl ) ( from $1 ANON_ENTITY : ci ) ( to $1 ANON_ENTITY : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_4747
|
what is the thrift economy flight fare from washington to san francisco
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( class_type $1 thrift : cl ) ( from $1 washington : ci ) ( to $1 san_francisco : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( class_type $1 ANON_ENTITY : cl ) ( from $1 ANON_ENTITY : ci ) ( to $1 ANON_ENTITY : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_2886
|
show me all flights direct only from boston to san francisco or oakland that arrive before 10am local time
|
( lambda $0 e ( and ( flight $0 ) ( nonstop $0 ) ( < ( arrival_time $0 ) 1000 : ti ) ( or ( to $0 san_francisco : ci ) ( to $0 oakland : ci ) ) ( from $0 boston : ci ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( nonstop $0 ) ( < ( arrival_time $0 ) ANON_ENTITY : ti ) ( or ( to $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) ( from $0 ANON_ENTITY : ci ) ) )
|
atis_3243
|
show me morning flights from toronto
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 morning : pd ) ( from $0 toronto : ci ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 ANON_ENTITY : pd ) ( from $0 ANON_ENTITY : ci ) ) )
|
atis_3629
|
show nonstop flights from new york to miami on a tuesday which cost less than 466 dollars one way
|
( lambda $0 e ( and ( flight $0 ) ( nonstop $0 ) ( < ( fare $0 ) 466 : do ) ( from $0 new_york : ci ) ( to $0 miami : ci ) ( day $0 tuesday : da ) ( oneway $0 ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( nonstop $0 ) ( < ( fare $0 ) ANON_ENTITY : do ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day $0 ANON_ENTITY : da ) ( oneway $0 ) ) )
|
atis_920
|
how do i get downtown from the toronto airport
|
( lambda $0 e ( and ( from_airport $0 toronto : ci ) ) )
|
( lambda $0 e ( and ( from_airport $0 ANON_ENTITY : ci ) ) )
|
atis_271
|
continental airlines on saturday from chicago to seattle
|
( lambda $0 e ( and ( airline $0 co : al ) ( from $0 chicago : ci ) ( to $0 seattle : ci ) ( day $0 saturday : da ) ) )
|
( lambda $0 e ( and ( airline $0 ANON_ENTITY : al ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day $0 ANON_ENTITY : da ) ) )
|
atis_1994
|
list all american airlines from milwaukee to phoenix on saturday
|
( lambda $0 e ( and ( airline $0 aa : al ) ( from $0 milwaukee : ci ) ( to $0 phoenix : ci ) ( day $0 saturday : da ) ) )
|
( lambda $0 e ( and ( airline $0 ANON_ENTITY : al ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day $0 ANON_ENTITY : da ) ) )
|
atis_2725
|
return from miami to new york on tower air on saturdays
|
( lambda $0 e ( and ( airline $0 ff : al ) ( from $0 miami : ci ) ( to $0 new_york : ci ) ( day $0 saturday : da ) ) )
|
( lambda $0 e ( and ( airline $0 ANON_ENTITY : al ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day $0 ANON_ENTITY : da ) ) )
|
atis_3700
|
us air next wednesday from cleveland to miami
|
( lambda $0 e ( and ( airline $0 us : al ) ( from $0 cleveland : ci ) ( to $0 miami : ci ) ( day $0 wednesday : da ) ) )
|
( lambda $0 e ( and ( airline $0 ANON_ENTITY : al ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day $0 ANON_ENTITY : da ) ) )
|
atis_1366
|
i want to go from denver to atlanta round trip and make a stop at pittsburgh may i have the cheapest fare
|
( min $0 ( exists $1 ( and ( from $1 denver : ci ) ( to $1 atlanta : ci ) ( stop $1 pittsburgh : ci ) ( round_trip $1 ) ( = ( fare $1 ) $0 ) ) ) )
|
( min $0 ( exists $1 ( and ( from $1 ANON_ENTITY : ci ) ( to $1 ANON_ENTITY : ci ) ( stop $1 ANON_ENTITY : ci ) ( round_trip $1 ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_2660
|
please show me airlines with flight service from boston to denver from denver to philadelphia and from philadelphia to boston
|
( lambda $0 e ( and ( airline $0 ) ( and ( exists $1 ( and ( flight $1 ) ( from $1 boston : ci ) ( to $1 denver : ci ) ( airline $1 $0 ) ) ) ( exists $1 ( and ( flight $1 ) ( from $1 denver : ci ) ( to $1 philadelphia : ci ) ( airline $1 $0 ) ) ) ( exists $1 ( and ( flight $1 ) ( from $1 philadelphia : ci ) ( to $1 boston : ci ) ( airline $1 $0 ) ) ) ) ) )
|
( lambda $0 e ( and ( airline $0 ) ( and ( exists $1 ( and ( flight $1 ) ( from $1 ANON_ENTITY : ci ) ( to $1 ANON_ENTITY : ci ) ( airline $1 $0 ) ) ) ( exists $1 ( and ( flight $1 ) ( from $1 ANON_ENTITY : ci ) ( to $1 ANON_ENTITY : ci ) ( airline $1 $0 ) ) ) ( exists $1 ( and ( flight $1 ) ( from $1 ANON_ENTITY : ci ) ( to $1 ANON_ENTITY : ci ) ( airline $1 $0 ) ) ) ) ) )
|
atis_4641
|
what is the last flight from dallas to boston in the evening
|
( argmax $0 ( and ( flight $0 ) ( during_day $0 evening : pd ) ( from $0 dallas : ci ) ( to $0 boston : ci ) ) ( departure_time $0 ) )
|
( argmax $0 ( and ( flight $0 ) ( during_day $0 ANON_ENTITY : pd ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) ( departure_time $0 ) )
|
atis_4653
|
what is the latest evening flight leaving san francisco for washington
|
( argmax $0 ( and ( flight $0 ) ( during_day $0 evening : pd ) ( from $0 san_francisco : ci ) ( to $0 washington : ci ) ) ( departure_time $0 ) )
|
( argmax $0 ( and ( flight $0 ) ( during_day $0 ANON_ENTITY : pd ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) ( departure_time $0 ) )
|
atis_1395
|
i wish to book a flight from pittsburgh to atlanta coach discount fare
|
( lambda $0 e ( and ( flight $0 ) ( discounted $0 ) ( class_type $0 coach : cl ) ( from $0 pittsburgh : ci ) ( to $0 atlanta : ci ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( discounted $0 ) ( class_type $0 ANON_ENTITY : cl ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) )
|
atis_1283
|
i want a flight from milwaukee to orlando one way leaving after 5pm on wednesday
|
( lambda $0 e ( and ( flight $0 ) ( oneway $0 ) ( > ( departure_time $0 ) 1700 : ti ) ( from $0 milwaukee : ci ) ( to $0 orlando : ci ) ( day $0 wednesday : da ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( oneway $0 ) ( > ( departure_time $0 ) ANON_ENTITY : ti ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day $0 ANON_ENTITY : da ) ) )
|
atis_3253
|
show me one way flights from milwaukee to orlando after 6pm on wednesday
|
( lambda $0 e ( and ( flight $0 ) ( oneway $0 ) ( > ( departure_time $0 ) 1800 : ti ) ( from $0 milwaukee : ci ) ( to $0 orlando : ci ) ( day $0 wednesday : da ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( oneway $0 ) ( > ( departure_time $0 ) ANON_ENTITY : ti ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day $0 ANON_ENTITY : da ) ) )
|
atis_4557
|
what is the earliest flight from washington to atlanta leaving on wednesday september fourth
|
( argmin $0 ( and ( flight $0 ) ( from $0 washington : ci ) ( to $0 atlanta : ci ) ( day $0 wednesday : da ) ( day_number $0 4 : dn ) ( month $0 september : mn ) ) ( departure_time $0 ) )
|
( argmin $0 ( and ( flight $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day $0 ANON_ENTITY : da ) ( day_number $0 ANON_ENTITY : dn ) ( month $0 ANON_ENTITY : mn ) ) ( departure_time $0 ) )
|
atis_4560
|
what is the earliest flight going from san francisco to dallas on monday august nineteenth
|
( argmin $0 ( and ( flight $0 ) ( from $0 san_francisco : ci ) ( to $0 dallas : ci ) ( day $0 monday : da ) ( day_number $0 19 : dn ) ( month $0 august : mn ) ) ( departure_time $0 ) )
|
( argmin $0 ( and ( flight $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day $0 ANON_ENTITY : da ) ( day_number $0 ANON_ENTITY : dn ) ( month $0 ANON_ENTITY : mn ) ) ( departure_time $0 ) )
|
atis_4615
|
what is the first flight from atlanta to boston leaving on thursday september fifth
|
( argmin $0 ( and ( flight $0 ) ( from $0 atlanta : ci ) ( to $0 boston : ci ) ( day $0 thursday : da ) ( day_number $0 5 : dn ) ( month $0 september : mn ) ) ( departure_time $0 ) )
|
( argmin $0 ( and ( flight $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day $0 ANON_ENTITY : da ) ( day_number $0 ANON_ENTITY : dn ) ( month $0 ANON_ENTITY : mn ) ) ( departure_time $0 ) )
|
atis_283
|
could you please find me a nonstop flight from atlanta to baltimore on a boeing 757 arriving at 7pm
|
( lambda $0 e ( and ( flight $0 ) ( manufacturer $0 boeing : mf ) ( nonstop $0 ) ( aircraft_code $0 757 : ac ) ( arrival_time $0 1900 : ti ) ( from $0 atlanta : ci ) ( to $0 baltimore : ci ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( manufacturer $0 ANON_ENTITY : mf ) ( nonstop $0 ) ( aircraft_code $0 ANON_ENTITY : ac ) ( arrival_time $0 ANON_ENTITY : ti ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) )
|
atis_901
|
hi i want a round trip ticket to dallas
|
( lambda $0 e ( and ( round_trip $0 ) ( to $0 dallas : ci ) ) )
|
( lambda $0 e ( and ( round_trip $0 ) ( to $0 ANON_ENTITY : ci ) ) )
|
atis_533
|
find travel arrangements for a round trip flight from baltimore to pittsburgh after 8 o'clock pm before 10 o'clock pm
|
( lambda $0 e ( and ( flight $0 ) ( round_trip $0 ) ( > ( departure_time $0 ) 2000 : ti ) ( < ( departure_time $0 ) 2200 : ti ) ( from $0 baltimore : ci ) ( to $0 pittsburgh : ci ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( round_trip $0 ) ( > ( departure_time $0 ) ANON_ENTITY : ti ) ( < ( departure_time $0 ) ANON_ENTITY : ti ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) )
|
atis_297
|
could you please tell me the first flight leaving baltimore to san francisco on a 747 on august twenty seventh
|
( argmin $0 ( and ( flight $0 ) ( aircraft_code $0 747 : ac ) ( from $0 baltimore : ci ) ( to $0 san_francisco : ci ) ( day_number $0 27 : dn ) ( month $0 august : mn ) ) ( departure_time $0 ) )
|
( argmin $0 ( and ( flight $0 ) ( aircraft_code $0 ANON_ENTITY : ac ) ( 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_1375
|
i want to leave chicago next tuesday and arrive in detroit around 6pm
|
( lambda $0 e ( and ( approx_arrival_time $0 1800 : ti ) ( from $0 chicago : ci ) ( to $0 detroit : ci ) ( day $0 tuesday : da ) ) )
|
( lambda $0 e ( and ( approx_arrival_time $0 ANON_ENTITY : ti ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day $0 ANON_ENTITY : da ) ) )
|
atis_545
|
first class price san francisco pittsburgh round trip
|
( lambda $0 e ( exists $1 ( and ( round_trip $1 ) ( class_type $1 first : cl ) ( from $1 san_francisco : ci ) ( to $1 pittsburgh : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
( lambda $0 e ( exists $1 ( and ( round_trip $1 ) ( class_type $1 ANON_ENTITY : cl ) ( from $1 ANON_ENTITY : ci ) ( to $1 ANON_ENTITY : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_546
|
first class round trip airfare from indianapolis to memphis
|
( lambda $0 e ( exists $1 ( and ( round_trip $1 ) ( class_type $1 first : cl ) ( from $1 indianapolis : ci ) ( to $1 memphis : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
( lambda $0 e ( exists $1 ( and ( round_trip $1 ) ( class_type $1 ANON_ENTITY : cl ) ( from $1 ANON_ENTITY : ci ) ( to $1 ANON_ENTITY : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_856
|
give me the round trip coach fare from baltimore to dallas
|
( lambda $0 e ( exists $1 ( and ( round_trip $1 ) ( class_type $1 coach : cl ) ( from $1 baltimore : ci ) ( to $1 dallas : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
( lambda $0 e ( exists $1 ( and ( round_trip $1 ) ( class_type $1 ANON_ENTITY : cl ) ( from $1 ANON_ENTITY : ci ) ( to $1 ANON_ENTITY : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_857
|
give me the round trip coach fare from dallas to baltimore
|
( lambda $0 e ( exists $1 ( and ( round_trip $1 ) ( class_type $1 coach : cl ) ( from $1 dallas : ci ) ( to $1 baltimore : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
( lambda $0 e ( exists $1 ( and ( round_trip $1 ) ( class_type $1 ANON_ENTITY : cl ) ( from $1 ANON_ENTITY : ci ) ( to $1 ANON_ENTITY : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_1002
|
how much does a first class ticket cost from boston to san francisco round trip
|
( lambda $0 e ( exists $1 ( and ( round_trip $1 ) ( class_type $1 first : cl ) ( from $1 boston : ci ) ( to $1 san_francisco : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
( lambda $0 e ( exists $1 ( and ( round_trip $1 ) ( class_type $1 ANON_ENTITY : cl ) ( from $1 ANON_ENTITY : ci ) ( to $1 ANON_ENTITY : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_1021
|
how much is a first class round trip from atlanta to san francisco
|
( lambda $0 e ( exists $1 ( and ( round_trip $1 ) ( class_type $1 first : cl ) ( from $1 atlanta : ci ) ( to $1 san_francisco : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
( lambda $0 e ( exists $1 ( and ( round_trip $1 ) ( class_type $1 ANON_ENTITY : cl ) ( from $1 ANON_ENTITY : ci ) ( to $1 ANON_ENTITY : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_1031
|
how much is a round trip first class fare between boston and washington
|
( lambda $0 e ( exists $1 ( and ( round_trip $1 ) ( class_type $1 first : cl ) ( from $1 boston : ci ) ( to $1 washington : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
( lambda $0 e ( exists $1 ( and ( round_trip $1 ) ( class_type $1 ANON_ENTITY : cl ) ( from $1 ANON_ENTITY : ci ) ( to $1 ANON_ENTITY : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_1980
|
list airfares for first class round trip from detroit to st. petersburg
|
( lambda $0 e ( exists $1 ( and ( round_trip $1 ) ( class_type $1 first : cl ) ( from $1 detroit : ci ) ( to $1 st_petersburg : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
( lambda $0 e ( exists $1 ( and ( round_trip $1 ) ( class_type $1 ANON_ENTITY : cl ) ( from $1 ANON_ENTITY : ci ) ( to $1 ANON_ENTITY : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_2113
|
list coach round trip airfare from detroit to st. petersburg
|
( lambda $0 e ( exists $1 ( and ( round_trip $1 ) ( class_type $1 coach : cl ) ( from $1 detroit : ci ) ( to $1 st_petersburg : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
( lambda $0 e ( exists $1 ( and ( round_trip $1 ) ( class_type $1 ANON_ENTITY : cl ) ( from $1 ANON_ENTITY : ci ) ( to $1 ANON_ENTITY : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_2737
|
round trip first class fares new york to miami
|
( lambda $0 e ( exists $1 ( and ( round_trip $1 ) ( class_type $1 first : cl ) ( from $1 new_york : ci ) ( to $1 miami : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
( lambda $0 e ( exists $1 ( and ( round_trip $1 ) ( class_type $1 ANON_ENTITY : cl ) ( from $1 ANON_ENTITY : ci ) ( to $1 ANON_ENTITY : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_4511
|
what is the cost of round trip ticket first class between oakland and atlanta
|
( lambda $0 e ( exists $1 ( and ( round_trip $1 ) ( class_type $1 first : cl ) ( from $1 oakland : ci ) ( to $1 atlanta : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
( lambda $0 e ( exists $1 ( and ( round_trip $1 ) ( class_type $1 ANON_ENTITY : cl ) ( from $1 ANON_ENTITY : ci ) ( to $1 ANON_ENTITY : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_4606
|
what is the first class fare for a round trip dallas to denver
|
( lambda $0 e ( exists $1 ( and ( round_trip $1 ) ( class_type $1 first : cl ) ( from $1 dallas : ci ) ( to $1 denver : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
( lambda $0 e ( exists $1 ( and ( round_trip $1 ) ( class_type $1 ANON_ENTITY : cl ) ( from $1 ANON_ENTITY : ci ) ( to $1 ANON_ENTITY : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_4715
|
what is the price of a first class ticket from milwaukee to san francisco round trip
|
( lambda $0 e ( exists $1 ( and ( round_trip $1 ) ( class_type $1 first : cl ) ( from $1 milwaukee : ci ) ( to $1 san_francisco : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
( lambda $0 e ( exists $1 ( and ( round_trip $1 ) ( class_type $1 ANON_ENTITY : cl ) ( from $1 ANON_ENTITY : ci ) ( to $1 ANON_ENTITY : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_4721
|
what is the round trip cost of a first class ticket from boston to san francisco
|
( lambda $0 e ( exists $1 ( and ( round_trip $1 ) ( class_type $1 first : cl ) ( from $1 boston : ci ) ( to $1 san_francisco : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
( lambda $0 e ( exists $1 ( and ( round_trip $1 ) ( class_type $1 ANON_ENTITY : cl ) ( from $1 ANON_ENTITY : ci ) ( to $1 ANON_ENTITY : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_4907
|
what's the first class fare round trip from atlanta to denver
|
( lambda $0 e ( exists $1 ( and ( round_trip $1 ) ( class_type $1 first : cl ) ( from $1 atlanta : ci ) ( to $1 denver : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
( lambda $0 e ( exists $1 ( and ( round_trip $1 ) ( class_type $1 ANON_ENTITY : cl ) ( from $1 ANON_ENTITY : ci ) ( to $1 ANON_ENTITY : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_301
|
could you tell me about flights from philadelphia to dallas that arrives in the early afternoon
|
( lambda $0 e ( and ( flight $0 ) ( during_day_arrival $0 early : pd ) ( during_day $0 afternoon : pd ) ( from $0 philadelphia : ci ) ( to $0 dallas : ci ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( during_day_arrival $0 ANON_ENTITY : pd ) ( during_day $0 ANON_ENTITY : pd ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) )
|
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 ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( during_day_arrival $0 ANON_ENTITY : pd ) ( during_day $0 ANON_ENTITY : pd ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) )
|
atis_1900
|
is there a flight in the afternoon from philadelphia that arrives in the evening in denver
|
( lambda $0 e ( and ( flight $0 ) ( during_day_arrival $0 evening : pd ) ( during_day $0 afternoon : pd ) ( from $0 philadelphia : ci ) ( to $0 denver : ci ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( during_day_arrival $0 ANON_ENTITY : pd ) ( during_day $0 ANON_ENTITY : pd ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) )
|
atis_2340
|
morning flights out of san francisco arriving boston afternoon
|
( lambda $0 e ( and ( flight $0 ) ( during_day_arrival $0 afternoon : pd ) ( during_day $0 morning : pd ) ( from $0 san_francisco : ci ) ( to $0 boston : ci ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( during_day_arrival $0 ANON_ENTITY : pd ) ( during_day $0 ANON_ENTITY : pd ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) )
|
atis_3375
|
show me the flight that leaves philadelphia in the afternoon and arrives in the evening in denver
|
( lambda $0 e ( and ( flight $0 ) ( during_day_arrival $0 evening : pd ) ( during_day $0 afternoon : pd ) ( from $0 philadelphia : ci ) ( to $0 denver : ci ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( during_day_arrival $0 ANON_ENTITY : pd ) ( during_day $0 ANON_ENTITY : pd ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) )
|
atis_2208
|
list nonstop flights from baltimore washington airport to oakland that depart in the afternoon
|
( lambda $0 e ( and ( flight $0 ) ( nonstop $0 ) ( during_day $0 afternoon : pd ) ( from $0 bwi : ap ) ( to $0 oakland : ci ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( nonstop $0 ) ( during_day $0 ANON_ENTITY : pd ) ( from $0 ANON_ENTITY : ap ) ( to $0 ANON_ENTITY : ci ) ) )
|
atis_2248
|
list the flights and time of arrival for flights arriving in dallas fort worth from boston before noon
|
( lambda $0 e ( lambda $1 e ( and ( flight $0 ) ( flight $0 ) ( < ( arrival_time $0 ) 1200 : ti ) ( from $0 boston : ci ) ( to $0 dallas : ci ) ( = ( arrival_time $0 ) $1 ) ) ) )
|
( lambda $0 e ( lambda $1 e ( and ( flight $0 ) ( flight $0 ) ( < ( arrival_time $0 ) ANON_ENTITY : ti ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( = ( arrival_time $0 ) $1 ) ) ) )
|
atis_4654
|
what is the latest first class flight of the day leaving dallas for san francisco
|
( argmax $0 ( and ( flight $0 ) ( class_type $0 first : cl ) ( from $0 dallas : ci ) ( to $0 san_francisco : ci ) ) ( departure_time $0 ) )
|
( argmax $0 ( and ( flight $0 ) ( class_type $0 ANON_ENTITY : cl ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) ( departure_time $0 ) )
|
atis_8
|
a one way flight from boston to san francisco please
|
( lambda $0 e ( and ( flight $0 ) ( oneway $0 ) ( from $0 boston : ci ) ( to $0 san_francisco : ci ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( oneway $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) )
|
atis_64
|
all one way flights between boston and philadelphia
|
( lambda $0 e ( and ( flight $0 ) ( oneway $0 ) ( from $0 boston : ci ) ( to $0 philadelphia : ci ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( oneway $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) )
|
atis_531
|
find travel arrangements for a one way flight from boston to pittsburgh
|
( lambda $0 e ( and ( flight $0 ) ( oneway $0 ) ( from $0 boston : ci ) ( to $0 pittsburgh : ci ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( oneway $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) )
|
atis_532
|
find travel arrangements for a one way flight from san francisco to dallas
|
( lambda $0 e ( and ( flight $0 ) ( oneway $0 ) ( from $0 san_francisco : ci ) ( to $0 dallas : ci ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( oneway $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) )
|
atis_595
|
flights between milwaukee and orlando one way
|
( lambda $0 e ( and ( flight $0 ) ( oneway $0 ) ( from $0 milwaukee : ci ) ( to $0 orlando : ci ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( oneway $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) )
|
atis_653
|
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_855
|
give me the one way flights from pittsburgh to boston
|
( lambda $0 e ( and ( flight $0 ) ( oneway $0 ) ( from $0 pittsburgh : ci ) ( to $0 boston : ci ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( oneway $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) )
|
atis_1596
|
i would like to make a one way flight from boston to atlanta
|
( lambda $0 e ( and ( flight $0 ) ( oneway $0 ) ( from $0 boston : ci ) ( to $0 atlanta : ci ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( oneway $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) )
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.