diff --git a/EntityRelationLinker/data_linker_remote_sync.py b/EntityRelationLinker/data_linker_remote_sync.py new file mode 100644 index 0000000000000000000000000000000000000000..c27cba73dc8e5bfaa37d926e764a232159f6fb65 --- /dev/null +++ b/EntityRelationLinker/data_linker_remote_sync.py @@ -0,0 +1,65 @@ +import sys +import json +from threading import Thread +from tqdm import tqdm +import time +import requests + + + + +data = {} +faults = 0 +success = 0 + +def get_entities(question): + text = question['question'][0]["string"] + + r = requests.post('https://labs.tib.eu/falcon/api?mode=long', json = {'text':text}) + try: + res = r.json() + except: + print(r) + return {} + return res + +if __name__ == '__main__': + data_file = sys.argv[1] + + with open(data_file, 'r', encoding='utf-8') as json_file: + data = json.load(json_file) + + pbar = tqdm(total=len(data['questions'])) + + for i in range(len(data['questions'])): + if('entities' in data['questions'][i] and 'relations' in data['questions'][i]): + pbar.update(1) + continue + try: + res = get_entities(data['questions'][i]) + + if('entities' in res and 'relations' in res): + entities = res['entities'] + relations = res['relations'] + success += 1 + #print(f"Thread {i} got {entities} and {relations}") + data['questions'][i]['entities'] = entities + data['questions'][i]['relations'] = relations + else: + faults += 1 + except: + break + pbar.update(1) + + + + pbar.close() + + print("Total: ", len(data['questions'])) + print("Success: ", success) + print("Faults: ", faults) + + with open(data_file, 'w', encoding='utf-8') as output: + json.dump(data, output) + + diff --git a/LC-QuAD/combined-requeried-linked.json b/LC-QuAD/combined-requeried-linked.json new file mode 100644 index 0000000000000000000000000000000000000000..14be58c20c72f80bff3e95475a52dff613367b39 --- /dev/null +++ b/LC-QuAD/combined-requeried-linked.json @@ -0,0 +1 @@ +{"questions": [{"id": "1", "question": [{"language": "en", "string": "Which sects people are part of local political parties which fall under the International Muslim Brotherhood?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/international> <http://dbpedia.org/resource/Muslim_Brotherhood> . ?x <http://dbpedia.org/ontology/religion> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/PoliticalParty>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sunni_Islam"}}, "entities": [{"URI": "http://dbpedia.org/resource/Political_Parties_(book)", "surface form": "local political parties"}, {"URI": "http://dbpedia.org/resource/Muslim_Brotherhood", "surface form": "International Muslim Brotherhood"}], "relations": [{"URI": "http://dbpedia.org/property/seats", "surface form": "sects"}, {"URI": "http://dbpedia.org/ontology/movement", "surface form": "fall"}]}, {"id": "2", "question": [{"language": "en", "string": "For which games are Sam Loyd and Eric Schiller both famous?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Sam_Loyd> <http://dbpedia.org/ontology/knownFor> ?uri. <http://dbpedia.org/resource/Eric_Schiller> <http://dbpedia.org/ontology/knownFor> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chess"}}, "entities": [{"URI": "http://dbpedia.org/resource/Sam_Loyd", "surface form": "Sam Loyd"}, {"URI": "http://dbpedia.org/resource/Eric_Schiller", "surface form": "Eric Schiller"}], "relations": [{"URI": "http://dbpedia.org/ontology/knownFor", "surface form": "famous"}, {"URI": "http://dbpedia.org/ontology/knownFor", "surface form": "famous"}]}, {"id": "3", "question": [{"language": "en", "string": "Who is the office holder with deputies as Neil Brown and Andrew Peacock?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/deputy> <http://dbpedia.org/resource/Neil_Brown_(Australian_politician)> . ?uri <http://dbpedia.org/property/deputy> <http://dbpedia.org/resource/Andrew_Peacock> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/OfficeHolder>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/John_Howard"}}, "entities": [{"URI": "http://dbpedia.org/resource/Neil_Brown_(Australian_politician)", "surface form": "Neil Brown"}, {"URI": "http://dbpedia.org/resource/Andrew_Peacock", "surface form": "Andrew Peacock"}], "relations": [{"URI": "http://dbpedia.org/ontology/owner", "surface form": "office holder"}, {"URI": "http://dbpedia.org/ontology/deputy", "surface form": "deputies"}]}, {"id": "4", "question": [{"language": "en", "string": "Where did these popular aeroplanes - Focke Wulf 260 and Start+Flug H 101 originate?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Focke-Wulf_Fw_260> <http://dbpedia.org/property/nationalOrigin> ?uri. <http://dbpedia.org/resource/Start_+_Flug_H-101> <http://dbpedia.org/property/nationalOrigin> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/West_Germany"}}, "entities": [{"URI": "http://dbpedia.org/resource/Focke-Wulf_Fw_260", "surface form": "popular aeroplanes - Focke Wulf 260"}, {"URI": "http://dbpedia.org/resource/H", "surface form": "H"}, {"URI": "http://dbpedia.org/resource/Start_+_Flug_H-101", "surface form": "Start+Flug 101 originate"}], "relations": []}, {"id": "5", "question": [{"language": "en", "string": "Tell me the name of the Prime Time Entertainment Network's TV show whose Artist is Christopher Franke ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/artist> <http://dbpedia.org/resource/Christopher_Franke> . ?uri <http://dbpedia.org/ontology/network> <http://dbpedia.org/resource/Prime_Time_Entertainment_Network> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Babylon_5"}}, "entities": [{"URI": "http://dbpedia.org/resource/Prime_Time_Entertainment_Network", "surface form": "Prime Time Entertainment Network"}, {"URI": "http://dbpedia.org/resource/Tv_test_pattern", "surface form": "TV"}, {"URI": "http://dbpedia.org/resource/Whose_Body%3F", "surface form": "show whose Artist"}, {"URI": "http://dbpedia.org/resource/Christopher_Franke", "surface form": "Christopher Franke"}], "relations": [{"URI": "http://dbpedia.org/property/name", "surface form": "name"}]}, {"id": "6", "question": [{"language": "en", "string": "How many other battles have the military person fought whose one of the battles is World War II ?"}], "query": {"sparql": " SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/battles> <http://dbpedia.org/resource/World_War_II> . ?x <http://dbpedia.org/property/battles> ?uri }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "27017"}}, "entities": [{"URI": "http://dbpedia.org/resource/Ii", "surface form": "II"}, {"URI": "http://dbpedia.org/resource/World_War_II", "surface form": "World War"}], "relations": [{"URI": "http://dbpedia.org/property/battles", "surface form": "battles"}, {"URI": "http://dbpedia.org/property/battles", "surface form": "battles"}]}, {"id": "7", "question": [{"language": "en", "string": "Whose network's parent organisation is Comcast?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/parentOrganisation> <http://dbpedia.org/resource/Comcast> . ?uri <http://dbpedia.org/ontology/network> ?x . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Golf_Central"}}, "entities": [{"URI": "http://dbpedia.org/resource/Parent", "surface form": " parent organisation"}, {"URI": "http://dbpedia.org/resource/Comcast", "surface form": "Comcast"}], "relations": [{"URI": "http://dbpedia.org/ontology/parentOrganisation", "surface form": "parent organisation"}, {"URI": "http://dbpedia.org/ontology/network", "surface form": "network"}]}, {"id": "8", "question": [{"language": "en", "string": "Which cport of Vishwajyot High School is also the genere of Battle chess "}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Battle_Chess> <http://dbpedia.org/property/genre> ?uri. <http://dbpedia.org/resource/Vishwajyot_High_School> <http://dbpedia.org/ontology/sport> ?uri} "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chess"}}, "entities": [{"URI": "http://dbpedia.org/resource/Vishwajyot_High_School", "surface form": "Vishwajyot High School"}, {"URI": "http://dbpedia.org/resource/Battle_Chess", "surface form": "Battle chess"}], "relations": [{"URI": "http://dbpedia.org/ontology/sport", "surface form": "cport"}, {"URI": "http://dbpedia.org/ontology/type", "surface form": "genere"}]}, {"id": "9", "question": [{"language": "en", "string": "What is the total number of other tenant of the stadia whose one of the tenant is Raptors 905?"}], "query": {"sparql": " SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/tenant> <http://dbpedia.org/resource/Raptors_905> . ?x <http://dbpedia.org/ontology/tenant> ?uri }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "19"}}, "entities": [{"URI": "http://dbpedia.org/resource/Raptors_905", "surface form": "Raptors 905"}], "relations": [{"URI": "http://dbpedia.org/ontology/populationTotal", "surface form": "total"}, {"URI": "http://dbpedia.org/ontology/tenant", "surface form": "tenant"}, {"URI": "http://dbpedia.org/ontology/strength", "surface form": "stadia"}, {"URI": "http://dbpedia.org/ontology/tenant", "surface form": "tenant"}]}, {"id": "10", "question": [{"language": "en", "string": "Where can one find the Dzogchen Ponolop Rinpoche?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Dzogchen_Ponlop_Rinpoche> <http://dbpedia.org/property/location> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Washington_(state)"}}, "entities": [{"URI": "http://dbpedia.org/resource/Dzogchen_Rinpoche", "surface form": "Dzogchen Ponolop Rinpoche"}], "relations": []}, {"id": "11", "question": [{"language": "en", "string": "Who is the stockholder of the road tunnels operated by the Massachusetts Department of Transportation?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/operator> <http://dbpedia.org/resource/Massachusetts_Department_of_Transportation> . ?x <http://dbpedia.org/property/owner> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/RoadTunnel>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Commonwealth_of_Massachusetts"}}, "entities": [{"URI": "http://dbpedia.org/resource/Stockholder_of_Record", "surface form": "Stockholder"}, {"URI": "http://dbpedia.org/resource/Massachusetts_Department_of_Transportation", "surface form": "Massachusetts Department of Transportation"}], "relations": [{"URI": "http://dbpedia.org/ontology/operator", "surface form": "operated"}]}, {"id": "12", "question": [{"language": "en", "string": "What are the awards won by the film director of Saraband ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Saraband> <http://dbpedia.org/ontology/director> ?x . ?x <http://dbpedia.org/property/awards> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Goethe_Prize"}}, "entities": [{"URI": "http://dbpedia.org/resource/Saraband", "surface form": "Saraband"}], "relations": [{"URI": "http://dbpedia.org/ontology/award", "surface form": "awards"}, {"URI": "http://dbpedia.org/ontology/award", "surface form": "won"}, {"URI": "http://dbpedia.org/ontology/director", "surface form": "film director"}]}, {"id": "13", "question": [{"language": "en", "string": "What is the route end of Birmingham and Oxford Junction Railway ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Birmingham_and_Oxford_Junction_Railway> <http://dbpedia.org/ontology/routeEnd> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Birmingham"}}, "entities": [{"URI": "http://dbpedia.org/resource/Birmingham", "surface form": "Birmingham"}, {"URI": "http://dbpedia.org/resource/Birmingham_and_Oxford_Junction_Railway", "surface form": "Oxford Junction Railway"}], "relations": [{"URI": "http://dbpedia.org/ontology/routeEnd", "surface form": "route end"}]}, {"id": "14", "question": [{"language": "en", "string": "Where did the Vitis Vinifera grapes originate?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/species> <http://dbpedia.org/resource/Vitis_vinifera> . ?x <http://dbpedia.org/ontology/origin> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Grape>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Georgia_(country)"}}, "entities": [{"URI": "http://dbpedia.org/resource/Vitis_vinifera", "surface form": "Vitis Vinifera grapes"}], "relations": [{"URI": "http://dbpedia.org/ontology/engineer", "surface form": "originate"}]}, {"id": "15", "question": [{"language": "en", "string": "How many people are there whose children died in Indiana?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/deathPlace> <http://dbpedia.org/resource/Indiana> . ?uri <http://dbpedia.org/ontology/child> ?x . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Person>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "10"}}, "entities": [{"URI": "http://dbpedia.org/resource/Indiana", "surface form": "Indiana"}], "relations": [{"URI": "http://dbpedia.org/ontology/deathPlace", "surface form": "died"}, {"URI": "http://dbpedia.org/ontology/child", "surface form": "children"}]}, {"id": "16", "question": [{"language": "en", "string": "Give the name of the managers of England national under-20 football team and England national under-21 football team?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/managerclubs> <http://dbpedia.org/resource/England_national_under-20_football_team> . ?uri <http://dbpedia.org/property/managerclubs> <http://dbpedia.org/resource/England_national_under-21_football_team> . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Aidy_Boothroyd"}}, "entities": [{"URI": "http://dbpedia.org/resource/England_national_under-20_football_team", "surface form": "England national under-20 football team"}, {"URI": "http://dbpedia.org/resource/England_national_under-21_football_team", "surface form": "England national under-21 football team"}], "relations": [{"URI": "http://dbpedia.org/property/managerclubs", "surface form": "managers"}, {"URI": "http://dbpedia.org/property/managerclubs", "surface form": "managers"}]}, {"id": "17", "question": [{"language": "en", "string": "How many cities are around the sea in which the the fig tree bay meets?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { <http://dbpedia.org/resource/Fig_Tree_Bay> <http://dbpedia.org/ontology/inflow> ?x . ?x <http://dbpedia.org/property/cities> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Sea>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "1"}}, "entities": [{"URI": "http://dbpedia.org/resource/Fig_Tree_Bay", "surface form": "fig tree bay meets"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": "cities"}, {"URI": "http://dbpedia.org/ontology/lake", "surface form": "sea"}]}, {"id": "18", "question": [{"language": "en", "string": "Name the movies distributed by RKO Pictures and has music composer as Bernard Herrmann?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/distributor> <http://dbpedia.org/resource/RKO_Pictures> . ?uri <http://dbpedia.org/ontology/musicComposer> <http://dbpedia.org/resource/Bernard_Herrmann> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Devil_and_Daniel_Webster_(film)"}}, "entities": [{"URI": "http://dbpedia.org/resource/RKO_Pictures", "surface form": "RKO Pictures"}, {"URI": "http://dbpedia.org/resource/Bernard_Herrmann", "surface form": "Bernard Herrmann"}], "relations": [{"URI": "http://dbpedia.org/property/name", "surface form": "name"}, {"URI": "http://dbpedia.org/ontology/film", "surface form": "movies"}, {"URI": "http://dbpedia.org/ontology/distributor", "surface form": "distributed"}, {"URI": "http://dbpedia.org/ontology/creator", "surface form": "music composer"}]}, {"id": "19", "question": [{"language": "en", "string": "How many pole drivers have been there in grand prixes where first driver was Damon Hill?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/firstDriver> <http://dbpedia.org/resource/Damon_Hill> . ?x <http://dbpedia.org/ontology/poleDriver> ?uri . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/FormulaOneRacer>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "22"}}, "entities": [{"URI": "http://dbpedia.org/resource/Damon_Hill", "surface form": "Damon Hill"}], "relations": [{"URI": "http://dbpedia.org/ontology/poleDriver", "surface form": "pole drivers"}, {"URI": "http://dbpedia.org/property/chief", "surface form": "grand prixes"}, {"URI": "http://dbpedia.org/ontology/poleDriver", "surface form": "driver"}]}, {"id": "20", "question": [{"language": "en", "string": "Where are jockeys in Dubai World Cup from?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/race> <http://dbpedia.org/resource/Dubai_World_Cup> . ?x <http://dbpedia.org/property/birthPlace> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Jockey>}"}, "answers": {"uri": {"type": "literal", "xml:lang": "en", "value": "Tulancingo, Hidalgo, Mexico"}}, "entities": [{"URI": "http://dbpedia.org/resource/Dubai_World_Cup", "surface form": "Dubai World Cup"}], "relations": [{"URI": "http://dbpedia.org/ontology/jockey", "surface form": "jockeys"}]}, {"id": "21", "question": [{"language": "en", "string": "To which places do the flights go by airlines headquartered in the UK?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/headquarters> <http://dbpedia.org/resource/United_Kingdom> . ?x <http://dbpedia.org/property/destinations> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Airline>}"}, "answers": {"uri": {"type": "literal", "xml:lang": "en", "value": "See below"}}, "entities": [{"URI": "http://dbpedia.org/resource/United_Kingdom", "surface form": "UK"}], "relations": [{"URI": "http://dbpedia.org/ontology/place", "surface form": "places"}, {"URI": "http://dbpedia.org/ontology/suborbitalFlights", "surface form": "flights"}, {"URI": "http://dbpedia.org/ontology/icaoAirlineCode", "surface form": "airlines"}, {"URI": "http://dbpedia.org/ontology/headquarter", "surface form": "headquartered"}]}, {"id": "22", "question": [{"language": "en", "string": "What is the magazine which have been founded by Ralph J. Gleason?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/founder> <http://dbpedia.org/resource/Ralph_J._Gleason> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Magazine>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rolling_Stone"}}, "entities": [{"URI": "http://dbpedia.org/resource/J", "surface form": "J"}, {"URI": "http://dbpedia.org/resource/Ralph_J._Gleason", "surface form": "Ralph Gleason"}], "relations": [{"URI": "http://dbpedia.org/ontology/founder", "surface form": "founded by"}, {"URI": "http://dbpedia.org/ontology/Magazine", "surface form": "magazine"}]}, {"id": "23", "question": [{"language": "en", "string": "In which cities can the beverage related to Barq's be found?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Barq's> <http://dbpedia.org/ontology/related> ?x . ?x <http://dbpedia.org/property/locationCity> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jasper,_Indiana"}}, "entities": [{"URI": "http://dbpedia.org/resource/Barq", "surface form": "Barq"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": "cities"}, {"URI": "http://dbpedia.org/ontology/strength", "surface form": "beverage"}, {"URI": "http://dbpedia.org/ontology/related", "surface form": "related"}]}, {"id": "24", "question": [{"language": "en", "string": "What is the birth place of the astronaut whose mission was the Vostok programmer?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/mission> <http://dbpedia.org/resource/Vostok_programme> . ?x <http://dbpedia.org/ontology/birthPlace> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Astronaut>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Moscow"}}, "entities": [{"URI": "http://dbpedia.org/resource/Vostok_programme", "surface form": "Vostok programme"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": "birth place"}, {"URI": "http://dbpedia.org/ontology/countryWithFirstAstronaut", "surface form": "astronaut"}, {"URI": "http://dbpedia.org/ontology/mission", "surface form": "mission"}]}, {"id": "25", "question": [{"language": "en", "string": "Count everyone who studied at an institute which are in Suburbs?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/campus> <http://dbpedia.org/resource/Suburb> . ?uri <http://dbpedia.org/property/education> ?x . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "1264"}}, "entities": [{"URI": "http://dbpedia.org/resource/Suburbs_(The_Suburbs_album)", "surface form": "Suburbs"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": "count"}, {"URI": "http://dbpedia.org/ontology/course", "surface form": "studied"}, {"URI": "http://dbpedia.org/ontology/university", "surface form": "institute"}]}, {"id": "26", "question": [{"language": "en", "string": "How many television shows have Fox Broadcasting Company as their channel?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE {?uri <http://dbpedia.org/property/channel> <http://dbpedia.org/resource/Fox_Broadcasting_Company> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "127"}}, "entities": [{"URI": "http://dbpedia.org/resource/Fox_Broadcasting_Company", "surface form": "Fox Broadcasting Company"}], "relations": [{"URI": "http://dbpedia.org/property/channel", "surface form": "channel"}, {"URI": "http://dbpedia.org/ontology/TelevisionShow", "surface form": "television show"}]}, {"id": "27", "question": [{"language": "en", "string": "What are some wars fought when Chung Il Kwon as the country's prime minister?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/primeminister> <http://dbpedia.org/resource/Chung_Il-kwon> . ?uri <http://dbpedia.org/ontology/commander> ?x . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/MilitaryConflict>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Unit_684__mutiny__1"}}, "entities": [{"URI": "http://dbpedia.org/resource/Chung_Il-kwon", "surface form": "Chung Il Kwon"}, {"URI": "http://dbpedia.org/resource/Julia_Gillard", "surface form": " prime minister"}], "relations": [{"URI": "http://dbpedia.org/ontology/spouse", "surface form": "wars"}, {"URI": "http://dbpedia.org/ontology/type", "surface form": "fought"}, {"URI": "http://dbpedia.org/ontology/country", "surface form": "country"}]}, {"id": "28", "question": [{"language": "en", "string": "Who was in military unit which played the role of Air interdiction?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/role> <http://dbpedia.org/resource/Air_interdiction> . ?uri <http://dbpedia.org/ontology/militaryUnit> ?x . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dean_S._Laird"}}, "entities": [{"URI": "http://dbpedia.org/resource/Air_interdiction", "surface form": "Air interdiction"}], "relations": [{"URI": "http://dbpedia.org/ontology/militaryUnit", "surface form": "military unit"}, {"URI": "http://dbpedia.org/ontology/portrayer", "surface form": "played"}, {"URI": "http://dbpedia.org/ontology/role", "surface form": "role"}]}, {"id": "29", "question": [{"language": "en", "string": "Who are the current members of Insects vs Robots?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Insects_vs_Robots> <http://dbpedia.org/property/currentMembers> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Micah_Nelson"}}, "entities": [{"URI": "http://dbpedia.org/resource/Insects_vs_Robots", "surface form": "Insects vs Robots"}], "relations": [{"URI": "http://dbpedia.org/property/currentMembers", "surface form": "current members"}]}, {"id": "30", "question": [{"language": "en", "string": "Name the nationalteam of Trn Vit Hng ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Tr\u1ea7n_Vi\u1ec7t_H\u01b0\u01a1ng> <http://dbpedia.org/property/nationalteam> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vietnam_women's_national_volleyball_team"}}, "entities": [{"URI": "http://dbpedia.org/resource/Tr\u1ea7n_Vi\u1ec7t_H\u01b0\u01a1ng", "surface form": "Trn Vit Hng"}], "relations": [{"URI": "http://dbpedia.org/property/nationalteam", "surface form": "nationalteam"}]}, {"id": "31", "question": [{"language": "en", "string": "Whihc uni did Joshua A. Siegel attend ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Joshua_A._Siegel> <http://dbpedia.org/property/education> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/University_at_Buffalo"}}, "entities": [{"URI": "http://dbpedia.org/resource/University_Station_(MTR)", "surface form": "whihc uni"}, {"URI": "http://dbpedia.org/resource/A", "surface form": "A"}, {"URI": "http://dbpedia.org/resource/Joshua_A._Siegel", "surface form": "Joshua Siegel"}], "relations": [{"URI": "http://dbpedia.org/property/education", "surface form": "attend"}]}, {"id": "32", "question": [{"language": "en", "string": "How many books are written by the author who is famous for Novelas Ejemplares?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/notableWork> <http://dbpedia.org/resource/Novelas_ejemplares> . ?uri <http://dbpedia.org/ontology/author> ?x . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Book>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "4"}}, "entities": [{"URI": "http://dbpedia.org/resource/Novelas_ejemplares", "surface form": "Novelas Ejemplares"}], "relations": [{"URI": "http://dbpedia.org/ontology/volume", "surface form": "books"}, {"URI": "http://dbpedia.org/ontology/animal", "surface form": "written"}, {"URI": "http://dbpedia.org/ontology/author", "surface form": "author"}, {"URI": "http://dbpedia.org/ontology/service", "surface form": "famous"}]}, {"id": "33", "question": [{"language": "en", "string": "Name the rivers who originate from Essex?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/mouthPlace> <http://dbpedia.org/resource/Essex> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/River>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/River_Thames"}}, "entities": [{"URI": "http://dbpedia.org/resource/Essex", "surface form": "Essex"}], "relations": [{"URI": "http://dbpedia.org/property/name", "surface form": "name"}, {"URI": "http://dbpedia.org/ontology/river", "surface form": "rivers"}, {"URI": "http://dbpedia.org/ontology/author", "surface form": "originate"}]}, {"id": "34", "question": [{"language": "en", "string": "to which university did both, the Stanford Cardinal and Gerald Reaven go?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Stanford_Cardinal> <http://dbpedia.org/ontology/university> ?uri. <http://dbpedia.org/resource/Gerald_Reaven> <http://dbpedia.org/ontology/institution> ?uri} "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Stanford_University"}}, "entities": [{"URI": "http://dbpedia.org/resource/Both", "surface form": "both,"}, {"URI": "http://dbpedia.org/resource/Stanford_Cardinal", "surface form": "Stanford Cardinal"}, {"URI": "http://dbpedia.org/resource/Gerald_Reaven", "surface form": "Gerald Reaven"}], "relations": [{"URI": "http://dbpedia.org/property/university", "surface form": "university"}]}, {"id": "35", "question": [{"language": "en", "string": "Name the nearest city to David W. Brown House ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/David_W._Brown_House> <http://dbpedia.org/ontology/nearestCity> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Arapahoe_County,_Colorado"}}, "entities": [{"URI": "http://dbpedia.org/resource/Vienna", "surface form": "W"}, {"URI": "http://dbpedia.org/resource/David_W._Brown_House", "surface form": "David Brown House"}], "relations": [{"URI": "http://dbpedia.org/ontology/nearestCity", "surface form": "nearest city"}]}, {"id": "36", "question": [{"language": "en", "string": "where did Deion Sanders debut?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Deion_Sanders> <http://dbpedia.org/property/debutteam> ?uri } "}, "answers": {"uri": {"type": "literal", "xml:lang": "en", "value": "New York Yankees"}}, "entities": [{"URI": "http://dbpedia.org/resource/Deion_Sanders", "surface form": "Deion Sanders"}], "relations": [{"URI": "http://dbpedia.org/property/debutteam", "surface form": "debut"}]}, {"id": "37", "question": [{"language": "en", "string": "What cities are nearer to Fuountain Lake Farm?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Fountain_Lake_Farm> <http://dbpedia.org/property/nearestCity> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/United_States"}}, "entities": [{"URI": "http://dbpedia.org/resource/Fountain_Lake_Farm", "surface form": "Fuountain Lake Farm"}], "relations": [{"URI": "http://dbpedia.org/ontology/nearestCity", "surface form": "nearer"}]}, {"id": "38", "question": [{"language": "en", "string": "Who are the characters of Batman Live?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Batman_Live> <http://dbpedia.org/property/characters> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Riddler"}}, "entities": [{"URI": "http://dbpedia.org/resource/Batman_Live", "surface form": "Batman Live"}], "relations": [{"URI": "http://dbpedia.org/property/characters", "surface form": "characters"}]}, {"id": "39", "question": [{"language": "en", "string": "Which artists trained in San Francisco Art Institute?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/training> <http://dbpedia.org/resource/San_Francisco_Art_Institute> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Artist>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dame_Darcy"}}, "entities": [{"URI": "http://dbpedia.org/resource/San_Francisco_Art_Institute", "surface form": "San Francisco Art Institute"}], "relations": [{"URI": "http://dbpedia.org/property/training", "surface form": "trained"}, {"URI": "http://dbpedia.org/ontology/Artist", "surface form": "artist"}]}, {"id": "40", "question": [{"language": "en", "string": "Name the country with currency as Aureus ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/currency> <http://dbpedia.org/resource/Aureus> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Country>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/History_of_the_Roman_Empire"}}, "entities": [{"URI": "http://dbpedia.org/resource/Aureus_University_School_of_Medicine", "surface form": "Aureus"}], "relations": [{"URI": "http://dbpedia.org/property/name", "surface form": "name"}, {"URI": "http://dbpedia.org/ontology/kingdom", "surface form": "country"}, {"URI": "http://dbpedia.org/ontology/currency", "surface form": "currency"}]}, {"id": "41", "question": [{"language": "en", "string": "what awards have been given to A. Peter Dewey?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/A._Peter_Dewey> <http://dbpedia.org/ontology/award> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Combatant's_Cross"}}, "entities": [{"URI": "http://dbpedia.org/resource/A", "surface form": "A"}, {"URI": "http://dbpedia.org/resource/A._Peter_Dewey", "surface form": "Peter Dewey"}], "relations": [{"URI": "http://dbpedia.org/ontology/award", "surface form": "awards"}]}, {"id": "42", "question": [{"language": "en", "string": "How many shows belong to the network one of whose sister station is Cartoonite?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/sisterStation> <http://dbpedia.org/resource/Cartoonito> . ?uri <http://dbpedia.org/property/network> ?x . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/Cartoonito", "surface form": "Cartoonite"}], "relations": [{"URI": "http://dbpedia.org/ontology/place", "surface form": "shows"}, {"URI": "http://dbpedia.org/property/rank", "surface form": "belong"}, {"URI": "http://dbpedia.org/ontology/network", "surface form": "network"}, {"URI": "http://dbpedia.org/ontology/sisterStation", "surface form": "sister station"}]}, {"id": "43", "question": [{"language": "en", "string": "Muhammad Yunus has won how many awards?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { <http://dbpedia.org/resource/Muhammad_Yunus> <http://dbpedia.org/ontology/award> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/Muhammad_Yunus", "surface form": "Muhammad yunus"}], "relations": [{"URI": "http://dbpedia.org/ontology/award", "surface form": "won"}, {"URI": "http://dbpedia.org/ontology/award", "surface form": "awards"}]}, {"id": "44", "question": [{"language": "en", "string": "List the associates of bands which have a label by Motown ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/recordLabel> <http://dbpedia.org/resource/Motown> . ?x <http://dbpedia.org/property/associatedActs> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Band>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Teena_Marie"}}, "entities": [{"URI": "http://dbpedia.org/resource/Motown", "surface form": "Motown"}], "relations": [{"URI": "http://dbpedia.org/ontology/team", "surface form": "associates"}, {"URI": "http://dbpedia.org/ontology/staff", "surface form": "bands"}, {"URI": "http://dbpedia.org/property/label", "surface form": "label"}]}, {"id": "45", "question": [{"language": "en", "string": "Count the units garrisoned at Arlington County, Virginia."}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE {?uri <http://dbpedia.org/ontology/garrison> <http://dbpedia.org/resource/Arlington_County,_Virginia> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/MilitaryUnit>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "12"}}, "entities": [{"URI": "http://dbpedia.org/resource/Arlington_County,_Virginia", "surface form": "Arlington County, Virginia"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": "count"}, {"URI": "http://dbpedia.org/ontology/team", "surface form": "units"}, {"URI": "http://dbpedia.org/ontology/garrison", "surface form": "garrisoned"}]}, {"id": "46", "question": [{"language": "en", "string": "What is the faith of Kwai Chang Caine ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Kwai_Chang_Caine> <http://dbpedia.org/ontology/religion> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Taoism"}}, "entities": [{"URI": "http://dbpedia.org/resource/Kwai_Chang_Caine", "surface form": "Kwai Chang Caine"}], "relations": [{"URI": "http://dbpedia.org/ontology/religion", "surface form": "faith"}]}, {"id": "47", "question": [{"language": "en", "string": "What are the houses of the legislature where the leader is called Pullaiahgaripalli ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Pullaiahgaripalli> <http://dbpedia.org/property/leaderTitle> ?x . ?x <http://dbpedia.org/property/houses> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Legislature>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rajya_Sabha"}}, "entities": [{"URI": "http://dbpedia.org/resource/Pullaiahgaripalli", "surface form": "Pullaiahgaripalli"}], "relations": [{"URI": "http://dbpedia.org/ontology/house", "surface form": "houses"}, {"URI": "http://dbpedia.org/ontology/politicalPartyInLegislature", "surface form": "legislature"}, {"URI": "http://dbpedia.org/ontology/leader", "surface form": "leader"}, {"URI": "http://dbpedia.org/property/nickname", "surface form": "called"}]}, {"id": "48", "question": [{"language": "en", "string": "Which shows are from a company whose subsidiary is Viacom Productions?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/subsidiary> <http://dbpedia.org/resource/Viacom_Productions> . ?uri <http://dbpedia.org/property/company> ?x . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Almost_Perfect"}}, "entities": [{"URI": "http://dbpedia.org/resource/Viacom_Productions", "surface form": "Viacom Productions"}], "relations": [{"URI": "http://dbpedia.org/ontology/place", "surface form": "shows"}, {"URI": "http://dbpedia.org/ontology/company", "surface form": "company"}, {"URI": "http://dbpedia.org/ontology/subsidiary", "surface form": "subsidiary"}]}, {"id": "49", "question": [{"language": "en", "string": "How many religions are followed by the group whose architectural style can be seen on Sanggar Agung?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { <http://dbpedia.org/resource/Sanggar_Agung> <http://dbpedia.org/property/architecturalStyle> ?x . ?x <http://dbpedia.org/ontology/religion> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/EthnicGroup>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "12"}}, "entities": [{"URI": "http://dbpedia.org/resource/Sanggar_Agung", "surface form": "Sanggar Agung"}], "relations": [{"URI": "http://dbpedia.org/ontology/religion", "surface form": "religions"}, {"URI": "http://dbpedia.org/ontology/type", "surface form": "architectural style"}]}, {"id": "50", "question": [{"language": "en", "string": "How many things are written in C++?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE {?uri <http://dbpedia.org/property/programmingLanguage> <http://dbpedia.org/resource/C++> . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "1262"}}, "entities": [{"URI": "http://dbpedia.org/resource/C++", "surface form": "C++"}], "relations": [{"URI": "http://dbpedia.org/property/writtenIn", "surface form": "written"}]}, {"id": "51", "question": [{"language": "en", "string": "How many ideologies do the political party of Boonchu Rojanastien hold?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { <http://dbpedia.org/resource/Boonchu_Rojanastien> <http://dbpedia.org/property/party> ?x . ?x <http://dbpedia.org/ontology/ideology> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/PoliticalParty>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/Ideologies_and_Political_Theory", "surface form": "ideologies"}, {"URI": "http://dbpedia.org/resource/Boonchu_Rojanastien", "surface form": "Boonchu Rojanastien"}], "relations": [{"URI": "http://dbpedia.org/ontology/party", "surface form": "political party"}, {"URI": "http://dbpedia.org/property/seat", "surface form": "hold"}]}, {"id": "52", "question": [{"language": "en", "string": "What are the hubs of PLUS Helicopter Services, a highway helicopter unit of PLUS Expressways?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/PLUS_Expressways> <http://dbpedia.org/property/hubs> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Selangor"}}, "entities": [{"URI": "http://dbpedia.org/resource/Plus", "surface form": "PLUS"}, {"URI": "http://dbpedia.org/resource/PLUS_Expressways", "surface form": "Helicopter Services,"}, {"URI": "http://dbpedia.org/resource/Serbian_police_helicopter_unit", "surface form": "highway helicopter unit"}, {"URI": "http://dbpedia.org/resource/Plus", "surface form": "PLUS"}, {"URI": "http://dbpedia.org/resource/Expressways_of_Singapore", "surface form": "Expressways"}], "relations": [{"URI": "http://dbpedia.org/property/hubs", "surface form": "hubs"}]}, {"id": "53", "question": [{"language": "en", "string": "Name the movies for which music was given by Geoffrey Burgon and distributed by Cinema International Corporation?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/music> <http://dbpedia.org/resource/Geoffrey_Burgon> . ?uri <http://dbpedia.org/property/distributor> <http://dbpedia.org/resource/Cinema_International_Corporation> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Monty_Python's_Life_of_Brian"}}, "entities": [{"URI": "http://dbpedia.org/resource/Geoffrey_Burgon", "surface form": "Geoffrey Burgon"}, {"URI": "http://dbpedia.org/resource/Cinema_International_Corporation", "surface form": "Cinema International Corporation"}], "relations": [{"URI": "http://dbpedia.org/property/name", "surface form": "name"}, {"URI": "http://dbpedia.org/ontology/film", "surface form": "movies"}, {"URI": "http://dbpedia.org/ontology/musicComposer", "surface form": "music"}, {"URI": "http://dbpedia.org/ontology/distributor", "surface form": "distributed"}]}, {"id": "54", "question": [{"language": "en", "string": "Who wrote the subsequent work of One Day at a Time (Em's Version) ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/One_Day_at_a_Time_(Em's_Version)> <http://dbpedia.org/ontology/subsequentWork> ?x . ?x <http://dbpedia.org/ontology/writer> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Eminem"}}, "entities": [{"URI": "http://dbpedia.org/resource/One_Day_at_a_Time_(Em's_Version)", "surface form": "One Day at a Time (Em"}, {"URI": "http://dbpedia.org/resource/The_Browning_Version_(1951_film)", "surface form": " Version)"}], "relations": [{"URI": "http://dbpedia.org/ontology/writer", "surface form": "wrote"}, {"URI": "http://dbpedia.org/ontology/subsequentWork", "surface form": "subsequent work"}]}, {"id": "55", "question": [{"language": "en", "string": "Name the TV shows with network as NBC and company as Paramount Television ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/network> <http://dbpedia.org/resource/NBC> . ?uri <http://dbpedia.org/property/company> <http://dbpedia.org/resource/Paramount_Television> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/All_Is_Forgiven_(TV_series)"}}, "entities": [{"URI": "http://dbpedia.org/resource/Tv_test_pattern", "surface form": "TV"}, {"URI": "http://dbpedia.org/resource/NBC", "surface form": "NBC"}, {"URI": "http://dbpedia.org/resource/Paramount_Television", "surface form": "Paramount Television"}], "relations": [{"URI": "http://dbpedia.org/property/name", "surface form": "name"}, {"URI": "http://dbpedia.org/ontology/place", "surface form": "shows"}, {"URI": "http://dbpedia.org/ontology/network", "surface form": "network"}, {"URI": "http://dbpedia.org/ontology/company", "surface form": "company"}]}, {"id": "56", "question": [{"language": "en", "string": "Which license provider of MSX basic is also the designer of Language Integrated Query ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Language_Integrated_Query> <http://dbpedia.org/ontology/designer> ?uri. <http://dbpedia.org/resource/MSX_BASIC> <http://dbpedia.org/property/license> ?uri} "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Microsoft"}}, "entities": [{"URI": "http://dbpedia.org/resource/Language_Integrated_Query", "surface form": "Language Integrated Query"}, {"URI": "http://dbpedia.org/resource/MSX_BASIC", "surface form": "MSX basic"}], "relations": [{"URI": "http://dbpedia.org/ontology/license", "surface form": "license"}, {"URI": "http://dbpedia.org/ontology/board", "surface form": "provider"}, {"URI": "http://dbpedia.org/ontology/purpose", "surface form": "basic"}, {"URI": "http://dbpedia.org/ontology/designer", "surface form": "designer"}]}, {"id": "57", "question": [{"language": "en", "string": "Who are the architect of the stadium whose one of the architect is louis D. Astorino ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/architect> <http://dbpedia.org/resource/Louis_D._Astorino> . ?x <http://dbpedia.org/property/architect> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Louis_D._Astorino"}}, "entities": [{"URI": "http://dbpedia.org/resource/Louis_D._Astorino", "surface form": "louis D. Astorino"}], "relations": [{"URI": "http://dbpedia.org/ontology/architect", "surface form": "architect"}, {"URI": "http://dbpedia.org/ontology/stadium", "surface form": "stadium"}, {"URI": "http://dbpedia.org/ontology/architect", "surface form": "architect"}]}, {"id": "58", "question": [{"language": "en", "string": "Who are the astronauts associated with NASA?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/type> <http://dbpedia.org/resource/NASA> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Astronaut>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Andrew_J._Feustel"}}, "entities": [{"URI": "http://dbpedia.org/resource/NASA", "surface form": "NASA"}], "relations": [{"URI": "http://dbpedia.org/ontology/countryWithFirstAstronaut", "surface form": "astronauts"}, {"URI": "http://dbpedia.org/ontology/team", "surface form": "associated"}]}, {"id": "59", "question": [{"language": "en", "string": "What is a common ingredient used in boyt Blodpalt and Kaszanka ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Blodpalt> <http://dbpedia.org/ontology/ingredient> ?uri. <http://dbpedia.org/resource/Kaszanka> <http://dbpedia.org/ontology/ingredient> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Blood"}}, "entities": [{"URI": "http://dbpedia.org/resource/Blodpalt", "surface form": "Boyt blodpalt"}, {"URI": "http://dbpedia.org/resource/Kaszanka", "surface form": "Kaszanka"}], "relations": [{"URI": "http://dbpedia.org/ontology/ingredient", "surface form": "common ingredient"}]}, {"id": "60", "question": [{"language": "en", "string": "Who is the partner of Rob Patterson?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/partner> <http://dbpedia.org/resource/Rob_Patterson> . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Carmen_Electra"}}, "entities": [{"URI": "http://dbpedia.org/resource/Rob_Patterson", "surface form": "Rob Patterson"}], "relations": [{"URI": "http://dbpedia.org/ontology/partner", "surface form": "partner"}]}, {"id": "61", "question": [{"language": "en", "string": "How many politicians are there from the city of Ganges?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { <http://dbpedia.org/resource/Ganges> <http://dbpedia.org/property/city> ?x . ?x <http://dbpedia.org/ontology/leaderName> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/Politicians_of_The_Wire", "surface form": "politicians"}, {"URI": "http://dbpedia.org/resource/Ganges", "surface form": "Ganges"}], "relations": [{"URI": "http://dbpedia.org/ontology/city", "surface form": "city"}]}, {"id": "62", "question": [{"language": "en", "string": "Which movies's screenplay is written by Akiva Goldsman"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/screenplay> <http://dbpedia.org/resource/Akiva_Goldsman> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Da_Vinci_Code_(film)"}}, "entities": [{"URI": "http://dbpedia.org/resource/Katha_Screenplay_Darsakatvam_Appalaraju", "surface form": " screenplay"}, {"URI": "http://dbpedia.org/resource/Akiva_Goldsman", "surface form": "Akiva Goldsman"}], "relations": [{"URI": "http://dbpedia.org/property/screenplay", "surface form": "screenplay"}, {"URI": "http://dbpedia.org/ontology/Film", "surface form": "movie"}]}, {"id": "63", "question": [{"language": "en", "string": "How many TV shows are similar to the ones belonging to fantasy genre?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/genre> <http://dbpedia.org/resource/Fantasy_television> . ?uri <http://dbpedia.org/ontology/related> ?x . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "32"}}, "entities": [{"URI": "http://dbpedia.org/resource/Fantasy_television", "surface form": "fantasy"}], "relations": [{"URI": "http://dbpedia.org/ontology/place", "surface form": "shows"}, {"URI": "http://dbpedia.org/ontology/affiliation", "surface form": "belonging"}, {"URI": "http://dbpedia.org/ontology/type", "surface form": "fantasy genre"}]}, {"id": "64", "question": [{"language": "en", "string": "Give me all commanders which had an important role in both, the Battle of Fort Stephenson and Battle of the Thames?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Battle_of_Fort_Stephenson> <http://dbpedia.org/ontology/commander> ?uri. <http://dbpedia.org/resource/Battle_of_the_Thames> <http://dbpedia.org/ontology/commander> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Henry_Procter_(British_Army_officer)"}}, "entities": [{"URI": "http://dbpedia.org/resource/Battle_of_Fort_Stephenson", "surface form": "Battle of Fort Stephenson"}, {"URI": "http://dbpedia.org/resource/Battle_of_the_Thames", "surface form": "Battle of the Thames"}], "relations": [{"URI": "http://dbpedia.org/ontology/commander", "surface form": "commanders"}, {"URI": "http://dbpedia.org/property/place", "surface form": "role"}]}, {"id": "65", "question": [{"language": "en", "string": "How many developers were involved in creating games whose score is composed by Gerard Marino?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/composer> <http://dbpedia.org/resource/Gerard_Marino> . ?x <http://dbpedia.org/ontology/developer> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "12"}}, "entities": [{"URI": "http://dbpedia.org/resource/Gerard_Marino", "surface form": "Gerard Marino"}], "relations": [{"URI": "http://dbpedia.org/ontology/composer", "surface form": "composed by"}, {"URI": "http://dbpedia.org/ontology/developer", "surface form": "developer"}]}, {"id": "66", "question": [{"language": "en", "string": "Which sea is surrounded by Rostock and Kaliningrad?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/cities> <http://dbpedia.org/resource/Rostock> . ?uri <http://dbpedia.org/property/cities> <http://dbpedia.org/resource/Kaliningrad> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Sea>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Baltic_Sea"}}, "entities": [{"URI": "http://dbpedia.org/resource/Rostock_Motet_Choir", "surface form": "Rostock and Kaliningrad"}], "relations": [{"URI": "http://dbpedia.org/ontology/elevation", "surface form": "sea"}, {"URI": "http://dbpedia.org/ontology/background", "surface form": "surrounded"}]}, {"id": "67", "question": [{"language": "en", "string": "What is the television show whose executive producer is Douglas Netter?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/executiveProducer> <http://dbpedia.org/resource/Douglas_Netter> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Sacketts"}}, "entities": [{"URI": "http://dbpedia.org/resource/Douglas_Netter", "surface form": "Douglas Netter"}], "relations": [{"URI": "http://dbpedia.org/ontology/executiveProducer", "surface form": "executive producer"}, {"URI": "http://dbpedia.org/ontology/TelevisionShow", "surface form": "television show"}]}, {"id": "68", "question": [{"language": "en", "string": "To which series does the book belong which came after the Blade Runner 2?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/previousWork> <http://dbpedia.org/resource/Blade_Runner_2:_The_Edge_of_Human> . ?x <http://dbpedia.org/ontology/series> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Blade_Runner_(franchise)"}}, "entities": [{"URI": "http://dbpedia.org/resource/Blade_Runner_2:_The_Edge_of_Human", "surface form": "Blade Runner 2"}], "relations": [{"URI": "http://dbpedia.org/ontology/series", "surface form": "series"}, {"URI": "http://dbpedia.org/ontology/volume", "surface form": "book"}, {"URI": "http://dbpedia.org/ontology/date", "surface form": "belong"}]}, {"id": "69", "question": [{"language": "en", "string": "In which city did The Ultimate Fighter: Team Rousey vs. Team Tate take place ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/The_Ultimate_Fighter:_Team_Rousey_vs._Team_Tate> <http://dbpedia.org/property/city> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Las_Vegas_Valley"}}, "entities": [{"URI": "http://dbpedia.org/resource/The_Ultimate_Fighter:_Team_Rousey_vs._Team_Tate", "surface form": "The Ultimate Fighter: Team Rousey vs Team Tate"}], "relations": [{"URI": "http://dbpedia.org/property/city", "surface form": "city"}, {"URI": "http://dbpedia.org/ontology/place", "surface form": "place"}]}, {"id": "70", "question": [{"language": "en", "string": "Where was Sino-French War fought ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Sino-French_War> <http://dbpedia.org/ontology/territory> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Annam_(French_protectorate)"}}, "entities": [{"URI": "http://dbpedia.org/resource/Sino-French_War", "surface form": "Sino-French War"}], "relations": [{"URI": "http://dbpedia.org/ontology/nerve", "surface form": "fought"}]}, {"id": "71", "question": [{"language": "en", "string": "Who did Daniel Gibson marry?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/spouse> <http://dbpedia.org/resource/Daniel_Gibson> . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Keyshia_Cole"}}, "entities": [{"URI": "http://dbpedia.org/resource/Daniel_Gibson", "surface form": "Daniel Gibson"}], "relations": [{"URI": "http://dbpedia.org/ontology/spouse", "surface form": "marry"}]}, {"id": "72", "question": [{"language": "en", "string": "What is the political party of the daughter of Jawaharlal Nehru ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Jawaharlal_Nehru> <http://dbpedia.org/ontology/child> ?x . ?x <http://dbpedia.org/ontology/party> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Indian_National_Congress"}}, "entities": [{"URI": "http://dbpedia.org/resource/Jawaharlal_Nehru", "surface form": "Jawaharlal Nehru"}], "relations": [{"URI": "http://dbpedia.org/ontology/party", "surface form": "political party"}, {"URI": "http://dbpedia.org/ontology/child", "surface form": "daughter"}]}, {"id": "73", "question": [{"language": "en", "string": "What is the organisation whose purposes are Environmentalism and Peace?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/purpose> <http://dbpedia.org/resource/Environmentalism> . ?uri <http://dbpedia.org/property/purpose> <http://dbpedia.org/resource/Peace> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Organisation>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Greenpeace_Nordic"}}, "entities": [{"URI": "http://dbpedia.org/resource/Peace", "surface form": "Environmentalism and Peace"}], "relations": [{"URI": "http://dbpedia.org/ontology/organisation", "surface form": "organisation"}, {"URI": "http://dbpedia.org/property/purpose", "surface form": "purposes"}]}, {"id": "74", "question": [{"language": "en", "string": "Count the number of sports team members which have player named Matt Williams ?"}], "query": {"sparql": " SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/name> <http://dbpedia.org/resource/Matt_Williams_(New_Zealand_footballer)> . ?x <http://dbpedia.org/property/name> ?uri }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "157"}}, "entities": [{"URI": "http://dbpedia.org/resource/Matt_Williams_(New_Zealand_footballer)", "surface form": "Matt Williams"}], "relations": [{"URI": "http://dbpedia.org/property/name", "surface form": "name"}, {"URI": "http://dbpedia.org/property/name", "surface form": "name"}]}, {"id": "75", "question": [{"language": "en", "string": "How many different people own the Timeform award winners?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/awards> <http://dbpedia.org/resource/Timeform> . ?x <http://dbpedia.org/ontology/owner> ?uri . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Person>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "30"}}, "entities": [{"URI": "http://dbpedia.org/resource/Timeform", "surface form": "Timeform award winners"}], "relations": []}, {"id": "76", "question": [{"language": "en", "string": "What religions do diplomats typically follow?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/profession> <http://dbpedia.org/resource/Diplomacy> . ?x <http://dbpedia.org/property/religion> ?uri . }"}, "answers": {"uri": {"type": "literal", "xml:lang": "en", "value": "Atheist"}}, "entities": [{"URI": "http://dbpedia.org/resource/Diplomacy", "surface form": ""}], "relations": [{"URI": "http://dbpedia.org/ontology/profession", "surface form": "follow"}, {"URI": "http://dbpedia.org/property/religion", "surface form": "religion"}]}, {"id": "77", "question": [{"language": "en", "string": "Which city is known for the people working in the western penn hospital?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/workInstitutions> <http://dbpedia.org/resource/Western_Pennsylvania_Hospital> . ?x <http://dbpedia.org/ontology/knownFor> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Person>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Connecticut"}}, "entities": [{"URI": "http://dbpedia.org/resource/Toronto_Western_Hospital", "surface form": "western penn hospital"}], "relations": [{"URI": "http://dbpedia.org/ontology/city", "surface form": "city"}, {"URI": "http://dbpedia.org/ontology/language", "surface form": "working"}]}, {"id": "78", "question": [{"language": "en", "string": "Name the team which is owned by Dafenham wind turbines and stood first in 1967 mexican Grand Prix ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/1967_Mexican_Grand_Prix> <http://dbpedia.org/property/firstTeam> ?uri. <http://dbpedia.org/resource/Dagenham_wind_turbines> <http://dbpedia.org/property/owner> ?uri} "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ford_Motor_Company"}}, "entities": [{"URI": "http://dbpedia.org/resource/Dagenham_wind_turbines", "surface form": "Dafenham wind turbines"}, {"URI": "http://dbpedia.org/resource/1967_Mexican_Grand_Prix", "surface form": "1967 mexican Grand Prix"}], "relations": [{"URI": "http://dbpedia.org/property/name", "surface form": "name"}, {"URI": "http://dbpedia.org/ontology/team", "surface form": "team"}, {"URI": "http://dbpedia.org/ontology/owner", "surface form": "owned"}, {"URI": "http://dbpedia.org/property/shoot", "surface form": "stood"}]}, {"id": "79", "question": [{"language": "en", "string": "Which education center Sidney Catlin Partrodge attended which was also the alma mater of Lisa Brummel ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Sidney_Catlin_Partridge> <http://dbpedia.org/property/education> ?uri. <http://dbpedia.org/resource/Lisa_Brummel> <http://dbpedia.org/ontology/almaMater> ?uri} "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Yale_University"}}, "entities": [{"URI": "http://dbpedia.org/resource/Sidney_Catlin_Partridge", "surface form": "education center Sidney Catlin Partrodge"}, {"URI": "http://dbpedia.org/resource/Lisa_Brummel", "surface form": "Lisa Brummel"}], "relations": [{"URI": "http://dbpedia.org/ontology/fat", "surface form": "attended"}, {"URI": "http://dbpedia.org/ontology/almaMater", "surface form": "alma mater"}]}, {"id": "80", "question": [{"language": "en", "string": "What sports can be played in Kharghar's schools"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/city> <http://dbpedia.org/resource/Kharghar> . ?x <http://dbpedia.org/ontology/sport> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/School>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Association_football"}}, "entities": [{"URI": "http://dbpedia.org/resource/Kharghar", "surface form": "Kharghar"}], "relations": [{"URI": "http://dbpedia.org/ontology/athletics", "surface form": "sports"}, {"URI": "http://dbpedia.org/ontology/portrayer", "surface form": "played"}, {"URI": "http://dbpedia.org/ontology/discipline", "surface form": " schools"}]}, {"id": "81", "question": [{"language": "en", "string": "How many subjects are covered in the publications of Doubleday?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/publisher> <http://dbpedia.org/resource/Doubleday_(publisher)> . ?x <http://dbpedia.org/ontology/nonFictionSubject> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "81"}}, "entities": [{"URI": "http://dbpedia.org/resource/Doubleday_(publisher)", "surface form": "Doubleday"}], "relations": [{"URI": "http://dbpedia.org/ontology/discipline", "surface form": "subjects"}, {"URI": "http://dbpedia.org/ontology/frozen", "surface form": "covered"}, {"URI": "http://dbpedia.org/property/publications", "surface form": "publications"}]}, {"id": "82", "question": [{"language": "en", "string": "Name the team manger of Middlebrough F.C season 2006-07 ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/2006\u201307_Middlesbrough_F.C._season> <http://dbpedia.org/ontology/manager> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gareth_Southgate"}}, "entities": [{"URI": "http://dbpedia.org/resource/FC", "surface form": "FC"}, {"URI": "http://dbpedia.org/resource/2006\u201307_SPHL_season", "surface form": "Middlebrough season 2006-07"}], "relations": [{"URI": "http://dbpedia.org/ontology/manager", "surface form": "manager"}]}, {"id": "83", "question": [{"language": "en", "string": "Who is the owner of the bank which owns Bloomberg Radio?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Bloomberg_Radio> <http://dbpedia.org/ontology/owner> ?x . ?x <http://dbpedia.org/property/owner> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Bank>}"}, "answers": {"uri": {"type": "literal", "xml:lang": "en", "value": "Bank of America"}}, "entities": [{"URI": "http://dbpedia.org/resource/Bloomberg_Radio", "surface form": "Bloomberg Radio"}], "relations": [{"URI": "http://dbpedia.org/ontology/owner", "surface form": "owner"}, {"URI": "http://dbpedia.org/ontology/series", "surface form": "bank"}, {"URI": "http://dbpedia.org/ontology/languageFamily", "surface form": "owns"}]}, {"id": "84", "question": [{"language": "en", "string": "Miluk and Cayuse are still spoken in which part of the world?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Miluk_language> <http://dbpedia.org/property/region> ?uri. <http://dbpedia.org/resource/Cayuse_language> <http://dbpedia.org/property/region> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Oregon"}}, "entities": [{"URI": "http://dbpedia.org/resource/Miluk_language", "surface form": "miluk"}, {"URI": "http://dbpedia.org/resource/Cayuse_language", "surface form": "Cayuse"}], "relations": [{"URI": "http://dbpedia.org/ontology/spokenIn", "surface form": "spoken"}]}, {"id": "85", "question": [{"language": "en", "string": "Which governer of Winston bryant is also the president of Carl Stokes ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Winston_Bryant> <http://dbpedia.org/property/governor> ?uri. <http://dbpedia.org/resource/Carl_Stokes> <http://dbpedia.org/property/president> ?uri} "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bill_Clinton"}}, "entities": [{"URI": "http://dbpedia.org/resource/Winston_Bryant", "surface form": "Winston bryant"}, {"URI": "http://dbpedia.org/resource/Carl_Stokes", "surface form": "Carl Stokes"}], "relations": [{"URI": "http://dbpedia.org/property/governor", "surface form": "governer"}, {"URI": "http://dbpedia.org/ontology/president", "surface form": "president"}]}, {"id": "86", "question": [{"language": "en", "string": "Which are the predecessors of the cars which are similar to the Oldsmobile 88?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Oldsmobile_88> <http://dbpedia.org/property/related> ?x . ?x <http://dbpedia.org/ontology/predecessor> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pontiac_Executive"}}, "entities": [{"URI": "http://dbpedia.org/resource/Oldsmobile_88", "surface form": "Oldsmobile 88"}], "relations": [{"URI": "http://dbpedia.org/property/predecessor", "surface form": "predecessors"}, {"URI": "http://dbpedia.org/ontology/management", "surface form": "cars"}]}, {"id": "87", "question": [{"language": "en", "string": "Name a queen whose parent is Ptolemy XII Auletes and consort is Ptolemy XIII Theos Philopator?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/parent> <http://dbpedia.org/resource/Ptolemy_XII_Auletes> . ?uri <http://dbpedia.org/property/spouse> <http://dbpedia.org/resource/Ptolemy_XIII_Theos_Philopator> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Royalty>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cleopatra"}}, "entities": [{"URI": "http://dbpedia.org/resource/XII", "surface form": "XII"}, {"URI": "http://dbpedia.org/resource/Ptolemy_XII_Auletes", "surface form": "Ptolemy Auletes"}, {"URI": "http://dbpedia.org/resource/Louis_XIII_of_France", "surface form": "XIII"}, {"URI": "http://dbpedia.org/resource/Seleucus_IV_Philopator", "surface form": "Ptolemy Theos Philopator"}], "relations": [{"URI": "http://dbpedia.org/property/name", "surface form": "name"}, {"URI": "http://dbpedia.org/property/reign", "surface form": "queen"}, {"URI": "http://dbpedia.org/ontology/parent", "surface form": "parent"}, {"URI": "http://dbpedia.org/property/spouse", "surface form": "consort"}]}, {"id": "88", "question": [{"language": "en", "string": "List the ingredient of Blodpalt ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Blodpalt> <http://dbpedia.org/ontology/ingredient> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Potato"}}, "entities": [{"URI": "http://dbpedia.org/resource/Blodpalt", "surface form": "Blodpalt"}], "relations": [{"URI": "http://dbpedia.org/ontology/ingredient", "surface form": "ingredient"}]}, {"id": "89", "question": [{"language": "en", "string": "List the served region of the organisations of Trade association."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/type> <http://dbpedia.org/resource/Trade_association> . ?x <http://dbpedia.org/ontology/regionServed> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Organisation>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/United_States"}}, "entities": [{"URI": "http://dbpedia.org/resource/Trade_association", "surface form": "Trade association"}], "relations": [{"URI": "http://dbpedia.org/ontology/regionServed", "surface form": "served region"}, {"URI": "http://dbpedia.org/ontology/organisation", "surface form": "organisations"}]}, {"id": "90", "question": [{"language": "en", "string": "Who composed the music for Tonight's the Night ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Tonight's_the_Night_(2003_musical)> <http://dbpedia.org/property/music> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rod_Stewart"}}, "entities": [{"URI": "http://dbpedia.org/resource/Tonight's_the_Night_(2003_musical)", "surface form": "Tonight's the Night"}], "relations": [{"URI": "http://dbpedia.org/property/music", "surface form": "music"}]}, {"id": "91", "question": [{"language": "en", "string": "How many things are made by companies who produce mass media articles?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/products> <http://dbpedia.org/resource/Mass_media> . ?uri <http://dbpedia.org/ontology/manufacturer> ?x . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/Companies_listed_on_the_New_York_Stock_Exchange_(J)", "surface form": "companies"}, {"URI": "http://dbpedia.org/resource/Mass_media", "surface form": "mass media articles"}], "relations": [{"URI": "http://dbpedia.org/ontology/product", "surface form": "produce"}]}, {"id": "92", "question": [{"language": "en", "string": "What awards have been given to race horses bred by Bert Michell?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/trainer> <http://dbpedia.org/resource/Bert_S._Michell> . ?x <http://dbpedia.org/ontology/honours> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/RaceHorse>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lincoln_Heritage_Handicap"}}, "entities": [{"URI": "http://dbpedia.org/resource/Bert_S._Michell", "surface form": "Bert Michell"}], "relations": [{"URI": "http://dbpedia.org/ontology/award", "surface form": "awards"}, {"URI": "http://dbpedia.org/ontology/race", "surface form": "race horses"}, {"URI": "http://dbpedia.org/ontology/genus", "surface form": "bred"}]}, {"id": "93", "question": [{"language": "en", "string": "Which party won the elections when Y.S. Rajasekhara Reddy was in power?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/leader> <http://dbpedia.org/resource/Y._S._Rajasekhara_Reddy> . ?x <http://dbpedia.org/ontology/affiliation> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Election>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Telugu_Desam_Party"}}, "entities": [{"URI": "http://dbpedia.org/resource/Ys", "surface form": "YS"}, {"URI": "http://dbpedia.org/resource/Y._S._Rajasekhara_Reddy", "surface form": "Rajasekhara Reddy"}], "relations": [{"URI": "http://dbpedia.org/ontology/party", "surface form": "party"}, {"URI": "http://dbpedia.org/ontology/city", "surface form": "won"}, {"URI": "http://dbpedia.org/ontology/selection", "surface form": "elections"}, {"URI": "http://dbpedia.org/ontology/weight", "surface form": "power"}]}, {"id": "94", "question": [{"language": "en", "string": "What are the notable commanders of the army whose one of the notable commanders is Paul Hausser?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/notableCommanders> <http://dbpedia.org/resource/Paul_Hausser> . ?x <http://dbpedia.org/property/notableCommanders> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sepp_Dietrich"}}, "entities": [{"URI": "http://dbpedia.org/resource/Paul_Hausser", "surface form": "Paul Hausser"}], "relations": [{"URI": "http://dbpedia.org/property/notableCommanders", "surface form": "notable commanders"}, {"URI": "http://dbpedia.org/property/notableCommanders", "surface form": "notable commanders"}]}, {"id": "95", "question": [{"language": "en", "string": "Who is the producer of Frampton's Camel ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Frampton's_Camel> <http://dbpedia.org/property/producer> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Peter_Frampton"}}, "entities": [{"URI": "http://dbpedia.org/resource/Frampton's_Camel", "surface form": "Frampton's Camel"}], "relations": [{"URI": "http://dbpedia.org/ontology/producer", "surface form": "producer"}]}, {"id": "96", "question": [{"language": "en", "string": "What is the political party of Arun Chandra Guha and Indira Gandhi?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Arun_Chandra_Guha> <http://dbpedia.org/ontology/party> ?uri. <http://dbpedia.org/resource/Indira_Gandhi> <http://dbpedia.org/ontology/party> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Indian_National_Congress"}}, "entities": [{"URI": "http://dbpedia.org/resource/Arun_Chandra_Guha", "surface form": "Arun Chandra Guha"}, {"URI": "http://dbpedia.org/resource/Indira_Gandhi", "surface form": "Indira Gandhi"}], "relations": [{"URI": "http://dbpedia.org/ontology/party", "surface form": "political party"}]}, {"id": "97", "question": [{"language": "en", "string": "To which country is Svetlana Navasardyan from?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Svetlana_Navasardyan> <http://dbpedia.org/property/origin> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Armenia"}}, "entities": [{"URI": "http://dbpedia.org/resource/Svetlana_Navasardyan", "surface form": "Svetlana Navasardyan"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": "country"}]}, {"id": "98", "question": [{"language": "en", "string": "What is the alma mater of the scientist who is known for Rational analysis ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/knownFor> <http://dbpedia.org/resource/Rational_analysis> . ?x <http://dbpedia.org/ontology/almaMater> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Scientist>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/University_of_British_Columbia"}}, "entities": [{"URI": "http://dbpedia.org/resource/Scientist", "surface form": "scientist"}, {"URI": "http://dbpedia.org/resource/Rational_analysis", "surface form": "Rational analysis"}], "relations": [{"URI": "http://dbpedia.org/ontology/school", "surface form": "alma mater"}]}, {"id": "99", "question": [{"language": "en", "string": "Who is the owner of Chelsea F.C. ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Chelsea_F.C.> <http://dbpedia.org/property/owner> ?uri } "}, "answers": {"uri": {"type": "literal", "xml:lang": "en", "value": "BlueCo 22 Limited"}}, "entities": [{"URI": "http://dbpedia.org/resource/FC", "surface form": "FC"}, {"URI": "http://dbpedia.org/resource/Chelsea_F.C.", "surface form": "Chelsea"}], "relations": [{"URI": "http://dbpedia.org/ontology/owner", "surface form": "owner"}]}, {"id": "100", "question": [{"language": "en", "string": "In how many places has Don R. Berlin worked?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { <http://dbpedia.org/resource/Don_R._Berlin> <http://dbpedia.org/ontology/employer> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "8"}}, "entities": [{"URI": "http://dbpedia.org/resource/Don_R._Berlin", "surface form": "Don R. Berlin"}], "relations": [{"URI": "http://dbpedia.org/ontology/employer", "surface form": "places"}]}, {"id": "101", "question": [{"language": "en", "string": "For how many movies are there whose musicians home town is in Volos ?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/hometown> <http://dbpedia.org/resource/Volos> . ?uri <http://dbpedia.org/property/music> ?x . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "1"}}, "entities": [{"URI": "http://dbpedia.org/resource/The_Bremen_Town_Musicians_(film)", "surface form": "musicians home town"}, {"URI": "http://dbpedia.org/resource/Volos", "surface form": "Volos"}], "relations": [{"URI": "http://dbpedia.org/ontology/film", "surface form": "movies"}]}, {"id": "102", "question": [{"language": "en", "string": "Which is the university of Vanderbilt Commodores ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Vanderbilt_Commodores> <http://dbpedia.org/ontology/university> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vanderbilt_University"}}, "entities": [{"URI": "http://dbpedia.org/resource/Vanderbilt_Commodores", "surface form": "Vanderbilt Commodores"}], "relations": [{"URI": "http://dbpedia.org/property/university", "surface form": "university"}]}, {"id": "103", "question": [{"language": "en", "string": "Whose relatives are Clan McDuck and Huey, Dewey, and Louie?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/relatives> <http://dbpedia.org/resource/Clan_McDuck> . ?uri <http://dbpedia.org/property/relatives> <http://dbpedia.org/resource/Huey,_Dewey,_and_Louie> . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Donald_Duck"}}, "entities": [{"URI": "http://dbpedia.org/resource/Clan_McDuck", "surface form": "Clan McDuck"}, {"URI": "http://dbpedia.org/resource/Huey,_Dewey,_and_Louie", "surface form": "Huey, Dewey,"}, {"URI": "http://dbpedia.org/resource/Louie", "surface form": "Louie"}], "relations": [{"URI": "http://dbpedia.org/property/relatives", "surface form": "relatives"}, {"URI": "http://dbpedia.org/property/relatives", "surface form": "relatives"}]}, {"id": "104", "question": [{"language": "en", "string": "What musicians are signed up with colpix records?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/label> <http://dbpedia.org/resource/Colpix_Records> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/MusicalArtist>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Johnny_Loves_Me"}}, "entities": [{"URI": "http://dbpedia.org/resource/Musicians_Institute", "surface form": "musicians"}, {"URI": "http://dbpedia.org/resource/Colpix_Records", "surface form": "colpix records"}], "relations": [{"URI": "http://dbpedia.org/ontology/movement", "surface form": "signed"}]}, {"id": "105", "question": [{"language": "en", "string": "What currencies are used in the country whose capital is Podgorica?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/capital> <http://dbpedia.org/resource/Podgorica> . ?x <http://dbpedia.org/property/currency> ?uri . }"}, "answers": {"uri": {"type": "literal", "xml:lang": "en", "value": "Euro a"}}, "entities": [{"URI": "http://dbpedia.org/resource/Currencies_of_Puerto_Rico", "surface form": "Currencies"}, {"URI": "http://dbpedia.org/resource/Podgorica", "surface form": "Podgorica"}], "relations": [{"URI": "http://dbpedia.org/ontology/capital", "surface form": "capital"}, {"URI": "http://dbpedia.org/property/currency", "surface form": "currencies"}]}, {"id": "106", "question": [{"language": "en", "string": "How many other home stadium are there of the soccer club whose home stadium is Luzhniki Stadium ?"}], "query": {"sparql": " SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/homeStadium> <http://dbpedia.org/resource/Luzhniki_Stadium> . ?x <http://dbpedia.org/ontology/homeStadium> ?uri }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "28"}}, "entities": [{"URI": "http://dbpedia.org/resource/Luzhniki_Stadium", "surface form": "Luzhniki Stadium"}], "relations": [{"URI": "http://dbpedia.org/ontology/homeStadium", "surface form": "home stadium"}, {"URI": "http://dbpedia.org/ontology/homeStadium", "surface form": "home stadium"}]}, {"id": "107", "question": [{"language": "en", "string": "Where was William Anthony trained ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/William_Anthony_(artist)> <http://dbpedia.org/ontology/training> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/San_Francisco_Art_Institute"}}, "entities": [{"URI": "http://dbpedia.org/resource/William_Anthony_(artist)", "surface form": "William Anthony"}], "relations": [{"URI": "http://dbpedia.org/ontology/training", "surface form": "trained"}]}, {"id": "108", "question": [{"language": "en", "string": "Give me everything owned by networks which is lead by Steve Burke?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/keyPerson> <http://dbpedia.org/resource/Steve_Burke_(businessman)> . ?uri <http://dbpedia.org/ontology/network> ?x . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/Steve_Burke", "surface form": "Steve Burke"}], "relations": [{"URI": "http://dbpedia.org/ontology/owner", "surface form": "owned"}, {"URI": "http://dbpedia.org/ontology/network", "surface form": "networks"}, {"URI": "http://dbpedia.org/ontology/background", "surface form": "lead"}]}, {"id": "109", "question": [{"language": "en", "string": "Who is the narrator of The Incredible Hulk , 1982 TV series ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/The_Incredible_Hulk_(1982_TV_series)> <http://dbpedia.org/property/narrated> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Stan_Lee"}}, "entities": [{"URI": "http://dbpedia.org/resource/Tv_test_pattern", "surface form": "TV"}, {"URI": "http://dbpedia.org/resource/The_Incredible_Hulk_(1982_TV_series)", "surface form": "The Incredible Hulk , 1982 series"}], "relations": [{"URI": "http://dbpedia.org/ontology/narrator", "surface form": "narrator"}]}, {"id": "110", "question": [{"language": "en", "string": "What sports are played in schools where Swahili is the official language?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/language> <http://dbpedia.org/resource/Swahili_language> . ?x <http://dbpedia.org/ontology/sport> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tennis"}}, "entities": [{"URI": "http://dbpedia.org/resource/Swahili_language", "surface form": "Swahili"}], "relations": [{"URI": "http://dbpedia.org/ontology/athletics", "surface form": "sports"}, {"URI": "http://dbpedia.org/ontology/portrayer", "surface form": "played"}, {"URI": "http://dbpedia.org/ontology/discipline", "surface form": "schools"}, {"URI": "http://dbpedia.org/ontology/officialLanguage", "surface form": "official language"}]}, {"id": "111", "question": [{"language": "en", "string": "Which interest of Philip Novak is the relegion of Vesak ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Philip_Novak> <http://dbpedia.org/property/mainInterests> ?uri. <http://dbpedia.org/resource/Vesak> <http://dbpedia.org/ontology/type> ?uri} "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Buddhism"}}, "entities": [{"URI": "http://dbpedia.org/resource/Philip_Novak", "surface form": "Philip Novak"}, {"URI": "http://dbpedia.org/resource/Vesak", "surface form": "Vesak"}], "relations": [{"URI": "http://dbpedia.org/ontology/religion", "surface form": "relegion"}]}, {"id": "112", "question": [{"language": "en", "string": "Count all the ethinic group who speaks language which belongs to Anglo-Frisian language family ?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/languageFamily> <http://dbpedia.org/resource/Anglo-Frisian_languages> . ?uri <http://dbpedia.org/property/languages> ?x . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/EthnicGroup>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "299"}}, "entities": [{"URI": "http://dbpedia.org/resource/Anglo-Frisian_languages", "surface form": "Anglo-Frisian language "}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": "count"}, {"URI": "http://dbpedia.org/ontology/ethnicGroup", "surface form": "ethinic"}, {"URI": "http://dbpedia.org/ontology/language", "surface form": "speaks"}, {"URI": "http://dbpedia.org/ontology/languageFamily", "surface form": "language"}, {"URI": "http://dbpedia.org/property/date", "surface form": "belongs"}]}, {"id": "113", "question": [{"language": "en", "string": "Cologny and Lancy are the neighboring municipalities of which place ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/neighboringMunicipalities> <http://dbpedia.org/resource/Cologny> . ?uri <http://dbpedia.org/property/neighboringMunicipalities> <http://dbpedia.org/resource/Lancy> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Place>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Geneva"}}, "entities": [{"URI": "http://dbpedia.org/resource/Cologny", "surface form": "Cologny"}, {"URI": "http://dbpedia.org/resource/Lancy", "surface form": "Lancy"}], "relations": [{"URI": "http://dbpedia.org/ontology/province", "surface form": "cologny"}, {"URI": "http://dbpedia.org/ontology/neighboringMunicipality", "surface form": "neighboring"}, {"URI": "http://dbpedia.org/ontology/place", "surface form": "place"}]}, {"id": "114", "question": [{"language": "en", "string": "How many artists have their works in the Sao Paolo Museum of Art?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/museum> <http://dbpedia.org/resource/S\u00e3o_Paulo_Museum_of_Art> . ?x <http://dbpedia.org/property/artist> ?uri . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Artist>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "3"}}, "entities": [{"URI": "http://dbpedia.org/resource/S\u00e3o_Paulo_Museum_of_Art", "surface form": "Sao Paolo Museum of Art"}], "relations": [{"URI": "http://dbpedia.org/ontology/rkdArtistsId", "surface form": "artists"}, {"URI": "http://dbpedia.org/ontology/part", "surface form": "works"}]}, {"id": "115", "question": [{"language": "en", "string": "VP-8 and VP-10 shares which command structure ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/VP-8> <http://dbpedia.org/ontology/commandStructure> ?uri. <http://dbpedia.org/resource/VP-10> <http://dbpedia.org/ontology/commandStructure> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/United_States_Navy"}}, "entities": [{"URI": "http://dbpedia.org/resource/VP-8", "surface form": "vP-8"}, {"URI": "http://dbpedia.org/resource/VP-10", "surface form": "VP-10"}], "relations": [{"URI": "http://dbpedia.org/ontology/participant", "surface form": "shares"}, {"URI": "http://dbpedia.org/ontology/commandStructure", "surface form": "command"}, {"URI": "http://dbpedia.org/ontology/format", "surface form": "structure"}]}, {"id": "116", "question": [{"language": "en", "string": "Give me the total number of membership of the organisations which have memebers as Azerbaijan?"}], "query": {"sparql": " SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/membership> <http://dbpedia.org/resource/Azerbaijan> . ?x <http://dbpedia.org/property/membership> ?uri }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/Azerbaijan", "surface form": "Azerbaijan"}], "relations": [{"URI": "http://dbpedia.org/ontology/populationTotal", "surface form": "total"}, {"URI": "http://dbpedia.org/ontology/membership", "surface form": "membership"}, {"URI": "http://dbpedia.org/ontology/organisation", "surface form": "organisations"}, {"URI": "http://dbpedia.org/ontology/languageFamily", "surface form": "memebers"}]}, {"id": "117", "question": [{"language": "en", "string": "What is the content licence of MSX BASIC ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/MSX_BASIC> <http://dbpedia.org/property/license> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/EULA"}}, "entities": [{"URI": "http://dbpedia.org/resource/MSX_BASIC", "surface form": "MSX BASIC"}], "relations": [{"URI": "http://dbpedia.org/ontology/license", "surface form": "content licence"}]}, {"id": "118", "question": [{"language": "en", "string": "Which comic characters were created by Paul Dini?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/creators> <http://dbpedia.org/resource/Paul_Dini> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/ComicsCharacter>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Andrea_Beaumont"}}, "entities": [{"URI": "http://dbpedia.org/resource/Paul_Dini", "surface form": "Paul Dini"}], "relations": [{"URI": "http://dbpedia.org/property/creators", "surface form": "created by"}, {"URI": "http://dbpedia.org/ontology/ComicsCharacter", "surface form": "characters"}]}, {"id": "119", "question": [{"language": "en", "string": "who owns the ship Victoria?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Victoria_(ship)> <http://dbpedia.org/ontology/owner> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Monarchy_of_Spain"}}, "entities": [{"URI": "http://dbpedia.org/resource/Victoria_(ship)", "surface form": "ship Victoria"}], "relations": [{"URI": "http://dbpedia.org/ontology/owner", "surface form": "owns"}]}, {"id": "120", "question": [{"language": "en", "string": "Which city council owns the Ted Williams tunnel and Leonard Memorial ridge?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Ted_Williams_Tunnel> <http://dbpedia.org/property/owner> ?uri. <http://dbpedia.org/resource/Leonard_P._Zakim_Bunker_Hill_Memorial_Bridge> <http://dbpedia.org/property/owner> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Commonwealth_of_Massachusetts"}}, "entities": [{"URI": "http://dbpedia.org/resource/Ted_Williams_Tunnel", "surface form": "Ted Williams tunnel"}, {"URI": "http://dbpedia.org/resource/Ridge", "surface form": "Leonard Memorial ridge"}], "relations": [{"URI": "http://dbpedia.org/ontology/owner", "surface form": "owns"}, {"URI": "http://dbpedia.org/ontology/owner", "surface form": "owns"}]}, {"id": "121", "question": [{"language": "en", "string": "How many soccer manager have been in the Spain nation football team?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE {?uri <http://dbpedia.org/property/nationalteam> <http://dbpedia.org/resource/Spain_national_football_team> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/SoccerManager>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "266"}}, "entities": [{"URI": "http://dbpedia.org/resource/Spain_national_football_team", "surface form": "Spain nation football team"}], "relations": [{"URI": "http://dbpedia.org/ontology/leader", "surface form": "soccer manager"}]}, {"id": "122", "question": [{"language": "en", "string": "How many bands collaborated with artists who signed up with EMI?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/recordLabel> <http://dbpedia.org/resource/EMI> . ?x <http://dbpedia.org/ontology/associatedMusicalArtist> ?uri . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Band>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "1408"}}, "entities": [{"URI": "http://dbpedia.org/resource/Emi", "surface form": "EMI"}], "relations": [{"URI": "http://dbpedia.org/ontology/staff", "surface form": "bands"}, {"URI": "http://dbpedia.org/ontology/band", "surface form": "collaborated"}, {"URI": "http://dbpedia.org/ontology/rkdArtistsId", "surface form": "artists"}, {"URI": "http://dbpedia.org/ontology/movement", "surface form": "signed"}]}, {"id": "123", "question": [{"language": "en", "string": "What is the purpose of New Zealand Chess Federation ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/New_Zealand_Chess_Federation> <http://dbpedia.org/property/purpose> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chess"}}, "entities": [{"URI": "http://dbpedia.org/resource/New_Zealand_Chess_Federation", "surface form": "New Zealand Chess Federation"}], "relations": [{"URI": "http://dbpedia.org/ontology/purpose", "surface form": "purpose"}]}, {"id": "124", "question": [{"language": "en", "string": "How many TV shows are of the company which are of company which is a subsidiary of Big Ticket Entertainment ?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/subsidiary> <http://dbpedia.org/resource/Big_Ticket_Entertainment> . ?uri <http://dbpedia.org/property/company> ?x . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "124"}}, "entities": [{"URI": "http://dbpedia.org/resource/Big_Ticket_Entertainment", "surface form": "entertainment ticket"}], "relations": [{"URI": "http://dbpedia.org/ontology/place", "surface form": "shows"}, {"URI": "http://dbpedia.org/ontology/company", "surface form": "company"}, {"URI": "http://dbpedia.org/ontology/company", "surface form": "company"}, {"URI": "http://dbpedia.org/ontology/subsidiary", "surface form": "subsidiary"}]}, {"id": "125", "question": [{"language": "en", "string": "Give me a count of royalties buried in Rome ?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE {?uri <http://dbpedia.org/property/placeOfBurial> <http://dbpedia.org/resource/Rome> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Royalty>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "1"}}, "entities": [{"URI": "http://dbpedia.org/resource/Royalties", "surface form": "Royalties"}, {"URI": "http://dbpedia.org/resource/Rome", "surface form": "Rome"}], "relations": [{"URI": "http://dbpedia.org/property/placeOfBurial", "surface form": "buried in"}, {"URI": "http://dbpedia.org/ontology/Royalty", "surface form": "royalties"}]}, {"id": "126", "question": [{"language": "en", "string": "In how many places are Marjas found?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/title> <http://dbpedia.org/resource/Marja'> . ?x <http://dbpedia.org/ontology/location> ?uri . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Location>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/Barjas", "surface form": "Marjas"}], "relations": [{"URI": "http://dbpedia.org/ontology/height", "surface form": "places"}]}, {"id": "127", "question": [{"language": "en", "string": "List the soccer players whose current team has the ground Stoke-on-Trent."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/ground> <http://dbpedia.org/resource/Stoke-on-Trent> . ?uri <http://dbpedia.org/property/currentclub> ?x . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/SoccerPlayer>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dan_Jones_(footballer,_born_1994)"}}, "entities": [{"URI": "http://dbpedia.org/resource/American_professional_soccer_players_abroad", "surface form": "soccer players"}, {"URI": "http://dbpedia.org/resource/County_Ground,_Stoke-on-Trent", "surface form": "ground Stoke-on-Trent"}], "relations": [{"URI": "http://dbpedia.org/ontology/incumbent", "surface form": "current team"}]}, {"id": "128", "question": [{"language": "en", "string": "Which are the countires where Pioneer Corporation has flourished?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Pioneer_Corporation> <http://dbpedia.org/property/country> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Malaysia"}}, "entities": [{"URI": "http://dbpedia.org/resource/Couti\u00e8res", "surface form": "countires"}, {"URI": "http://dbpedia.org/resource/Pioneer_Corporation", "surface form": "Pioneer Corporation"}], "relations": [{"URI": "http://dbpedia.org/ontology/sport", "surface form": "flourished"}]}, {"id": "129", "question": [{"language": "en", "string": "List few Swedish language movies ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/language> <http://dbpedia.org/resource/Swedish_language> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/1939_(film)"}}, "entities": [{"URI": "http://dbpedia.org/resource/Sweden", "surface form": "Swedish language movies"}, {"URI": "http://dbpedia.org/resource/Swedish_language", "surface form": "Swedish language movies"}], "relations": [{"URI": "http://dbpedia.org/property/language", "surface form": "language"}, {"URI": "http://dbpedia.org/ontology/Film", "surface form": "movie"}]}, {"id": "130", "question": [{"language": "en", "string": "What is the currency of Kerguelen Islands ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Kerguelen_Islands> <http://dbpedia.org/ontology/currency> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Euro"}}, "entities": [{"URI": "http://dbpedia.org/resource/Kerguelen_Islands", "surface form": "Kerguelen Islands"}], "relations": [{"URI": "http://dbpedia.org/ontology/currency", "surface form": "currency"}]}, {"id": "131", "question": [{"language": "en", "string": "Whose shrines are in a place governed by Justin Trudeau?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/leaderName> <http://dbpedia.org/resource/Justin_Trudeau> . ?uri <http://dbpedia.org/ontology/majorShrine> ?x . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Andr\u00e9_Bessette"}}, "entities": [{"URI": "http://dbpedia.org/resource/Justin_Trudeau", "surface form": "Justin Trudeau"}], "relations": [{"URI": "http://dbpedia.org/ontology/chain", "surface form": "shrines"}, {"URI": "http://dbpedia.org/ontology/place", "surface form": "place"}, {"URI": "http://dbpedia.org/ontology/director", "surface form": "governed"}]}, {"id": "132", "question": [{"language": "en", "string": "Who is the leader of Hackweiser ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Hackweiser> <http://dbpedia.org/property/leaderName> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/North_America"}}, "entities": [{"URI": "http://dbpedia.org/resource/Hackweiser", "surface form": "Hackweiser"}], "relations": [{"URI": "http://dbpedia.org/property/leaderName", "surface form": "leader"}]}, {"id": "133", "question": [{"language": "en", "string": "In which city is the sister station of KTXY located ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/KTXY> <http://dbpedia.org/ontology/sisterStation> ?x . ?x <http://dbpedia.org/ontology/city> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Missouri"}}, "entities": [{"URI": "http://dbpedia.org/resource/KTXY", "surface form": "KTXY"}], "relations": [{"URI": "http://dbpedia.org/ontology/sisterStation", "surface form": "sister station"}, {"URI": "http://dbpedia.org/ontology/city", "surface form": "city"}]}, {"id": "134", "question": [{"language": "en", "string": "Where was the successor of Hank Brown born?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Hank_Brown> <http://dbpedia.org/property/successor> ?x . ?x <http://dbpedia.org/ontology/birthPlace> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fort_Collins,_Colorado"}}, "entities": [{"URI": "http://dbpedia.org/resource/Hank_Brown", "surface form": "Hank Brown"}], "relations": [{"URI": "http://dbpedia.org/ontology/successor", "surface form": "successor"}, {"URI": "http://dbpedia.org/ontology/birthPlace", "surface form": "born"}]}, {"id": "135", "question": [{"language": "en", "string": "What is the relegious affiliations of Katyayana ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Katyayana_(Buddhist)> <http://dbpedia.org/property/religion> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Buddhism"}}, "entities": [{"URI": "http://dbpedia.org/resource/Smithsonian_Affiliations", "surface form": "relegious affiliations"}, {"URI": "http://dbpedia.org/resource/Katyayana_(Buddhist)", "surface form": "Katyayana"}], "relations": [{"URI": "http://dbpedia.org/ontology/religion", "surface form": "relegious"}]}, {"id": "136", "question": [{"language": "en", "string": "who all have been a manager of english under twenty one football team?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/managerclubs> <http://dbpedia.org/resource/England_national_under-21_football_team> } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dave_Sexton"}}, "entities": [{"URI": "http://dbpedia.org/resource/England_national_under-21_football_team", "surface form": "twenty one football team"}], "relations": [{"URI": "http://dbpedia.org/property/managerclubs", "surface form": "manager"}]}, {"id": "137", "question": [{"language": "en", "string": "Which party has come in power in Mumbai North?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/constituency> <http://dbpedia.org/resource/Mumbai_North_(Lok_Sabha_constituency)> . ?x <http://dbpedia.org/ontology/party> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Shiv_Sena"}}, "entities": [{"URI": "http://dbpedia.org/resource/Mumbai_North_(Lok_Sabha_constituency)", "surface form": "Mumbai North"}], "relations": [{"URI": "http://dbpedia.org/property/constituency", "surface form": "in power"}, {"URI": "http://dbpedia.org/ontology/party", "surface form": "party"}]}, {"id": "138", "question": [{"language": "en", "string": "Whose theme music was composed by a band which collaborated with Phish?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/associatedBand> <http://dbpedia.org/resource/Phish> . ?uri <http://dbpedia.org/property/themeMusicComposer> ?x . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/One_of_the_Boys_(1989_TV_series)"}}, "entities": [{"URI": "http://dbpedia.org/resource/Phish", "surface form": "Phish"}], "relations": [{"URI": "http://dbpedia.org/ontology/associatedBand", "surface form": "band"}, {"URI": "http://dbpedia.org/property/themeMusicComposer", "surface form": "composed"}]}, {"id": "139", "question": [{"language": "en", "string": "Where did the beverages sold by Refriango originate?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/manufacturer> <http://dbpedia.org/resource/Refriango> . ?x <http://dbpedia.org/property/origin> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Beverage>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Angola"}}, "entities": [], "relations": [{"URI": "http://dbpedia.org/ontology/authority", "surface form": "beverages"}, {"URI": "http://dbpedia.org/ontology/interest", "surface form": "sold"}, {"URI": "http://dbpedia.org/ontology/engineer", "surface form": "originate"}]}, {"id": "140", "question": [{"language": "en", "string": "What is the radio show created by Timoteo Jeffries, about?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/creator> <http://dbpedia.org/resource/Timoteo_Jeffries> . ?x <http://dbpedia.org/property/format> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/RadioProgram>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Current_affairs_(news_format)"}}, "entities": [{"URI": "http://dbpedia.org/resource/Timoteo_Jeffries", "surface form": "Timoteo Jeffries"}], "relations": [{"URI": "http://dbpedia.org/ontology/transmission", "surface form": "radio show"}, {"URI": "http://dbpedia.org/ontology/author", "surface form": "created"}]}, {"id": "141", "question": [{"language": "en", "string": "Where are all the protected areas near Bend, Oregon?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/nearestCity> <http://dbpedia.org/resource/Bend,_Oregon> . ?x <http://dbpedia.org/ontology/location> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/ProtectedArea>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/United_States"}}, "entities": [{"URI": "http://dbpedia.org/resource/Bend,_Oregon", "surface form": "Bend, Oregon"}], "relations": [{"URI": "http://dbpedia.org/ontology/custodian", "surface form": "protected"}]}, {"id": "142", "question": [{"language": "en", "string": "which movies have been published by Cinema International Corporation?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/distributor> <http://dbpedia.org/resource/Cinema_International_Corporation> } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nightmare_Honeymoon"}}, "entities": [{"URI": "http://dbpedia.org/resource/Cinema_International_Corporation", "surface form": "Cinema International Corporation"}], "relations": [{"URI": "http://dbpedia.org/ontology/distributor", "surface form": "published"}]}, {"id": "143", "question": [{"language": "en", "string": "What is the total number of other destinations of the airlines whose one of the destinations is Mediterranean Sea?"}], "query": {"sparql": " SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/destinations> <http://dbpedia.org/resource/Mediterranean_Sea> . ?x <http://dbpedia.org/property/destinations> ?uri }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/Destinations", "surface form": "destinations"}, {"URI": "http://dbpedia.org/resource/Destinations", "surface form": "destinations"}, {"URI": "http://dbpedia.org/resource/Mediterranean_Sea", "surface form": "Mediterranean Sea"}], "relations": [{"URI": "http://dbpedia.org/property/destinations", "surface form": "destinations"}, {"URI": "http://dbpedia.org/property/destinations", "surface form": "destinations"}]}, {"id": "144", "question": [{"language": "en", "string": "Count the total number of academic discipline of the journals whose one of the academic discipline is Neuroimaging ?"}], "query": {"sparql": " SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/academicDiscipline> <http://dbpedia.org/resource/Neuroimaging> . ?x <http://dbpedia.org/ontology/academicDiscipline> ?uri }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "59"}}, "entities": [{"URI": "http://dbpedia.org/resource/Neuroimaging", "surface form": "Neuroimaging"}], "relations": [{"URI": "http://dbpedia.org/ontology/type", "surface form": "count"}, {"URI": "http://dbpedia.org/ontology/result", "surface form": "total"}, {"URI": "http://dbpedia.org/ontology/abstract", "surface form": "academic discipline"}, {"URI": "http://dbpedia.org/property/journal", "surface form": "journals"}, {"URI": "http://dbpedia.org/ontology/abstract", "surface form": "academic discipline"}]}, {"id": "145", "question": [{"language": "en", "string": "List the award which have been won by both Charles LeMaire and Nick Park ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Charles_LeMaire> <http://dbpedia.org/ontology/award> ?uri. <http://dbpedia.org/resource/Nick_Park> <http://dbpedia.org/ontology/award> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Academy_Awards"}}, "entities": [{"URI": "http://dbpedia.org/resource/Charles_LeMaire", "surface form": "Charles LeMaire"}, {"URI": "http://dbpedia.org/resource/Nick_Park", "surface form": "Nick Park"}], "relations": [{"URI": "http://dbpedia.org/ontology/award", "surface form": "award"}, {"URI": "http://dbpedia.org/ontology/award", "surface form": "won"}]}, {"id": "146", "question": [{"language": "en", "string": "What are some cities which have a Ferris wheel?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/buildingType> <http://dbpedia.org/resource/Ferris_wheel> . ?x <http://dbpedia.org/property/locationTown> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Brighton"}}, "entities": [{"URI": "http://dbpedia.org/resource/Ferris_wheel", "surface form": "Ferris wheel"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": "cities"}]}, {"id": "147", "question": [{"language": "en", "string": "Count the movies in Swedish language?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE {?uri <http://dbpedia.org/property/language> <http://dbpedia.org/resource/Swedish_language> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "584"}}, "entities": [{"URI": "http://dbpedia.org/resource/Sweden", "surface form": "Swedish language"}, {"URI": "http://dbpedia.org/resource/Swedish_language", "surface form": "Swedish language"}], "relations": [{"URI": "http://dbpedia.org/property/language", "surface form": "language"}, {"URI": "http://dbpedia.org/ontology/Film", "surface form": "movie"}]}, {"id": "148", "question": [{"language": "en", "string": "Give me the total number of television shows whose theme music composer is Julian Gingell and created by Simon Fuller?"}], "query": {"sparql": " SELECT DISTINCT COUNT(?uri) WHERE {?uri <http://dbpedia.org/property/themeMusicComposer> <http://dbpedia.org/resource/Julian_Gingell> . ?uri <http://dbpedia.org/property/creator> <http://dbpedia.org/resource/Simon_Fuller> } "}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "7"}}, "entities": [{"URI": "http://dbpedia.org/resource/Theme_Music_Institute", "surface form": "theme music composer"}, {"URI": "http://dbpedia.org/resource/Julian_Gingell", "surface form": "Julian Gingell"}, {"URI": "http://dbpedia.org/resource/Simon_Fuller", "surface form": "Simon Fuller"}], "relations": [{"URI": "http://dbpedia.org/ontology/populationTotal", "surface form": "total"}, {"URI": "http://dbpedia.org/ontology/televisionSeries", "surface form": "television shows"}, {"URI": "http://dbpedia.org/ontology/creator", "surface form": "created"}]}, {"id": "149", "question": [{"language": "en", "string": "Count the number of families of the Animal kingdom."}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/kingdom> <http://dbpedia.org/resource/Animal> . ?x <http://dbpedia.org/ontology/family> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "137553"}}, "entities": [{"URI": "http://dbpedia.org/resource/Animal_Kingdom", "surface form": "Animal kingdom"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": "count"}, {"URI": "http://dbpedia.org/ontology/established", "surface form": "families"}]}, {"id": "150", "question": [{"language": "en", "string": "What is the political party of the person succeeded by A.K. Singh?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/successor> <http://dbpedia.org/resource/A._K._Singh> . ?x <http://dbpedia.org/property/party> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Person>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Indian_National_Congress"}}, "entities": [{"URI": "http://dbpedia.org/resource/AK", "surface form": "AK"}, {"URI": "http://dbpedia.org/resource/Singh", "surface form": "Singh"}], "relations": [{"URI": "http://dbpedia.org/ontology/team", "surface form": "political party"}, {"URI": "http://dbpedia.org/ontology/type", "surface form": "person"}, {"URI": "http://dbpedia.org/ontology/successor", "surface form": "succeeded"}]}, {"id": "151", "question": [{"language": "en", "string": "Who is the head coach of the teams in Middlesbrough FC?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/club> <http://dbpedia.org/resource/Middlesbrough_F.C.> . ?x <http://dbpedia.org/ontology/manager> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bruce_Rioch"}}, "entities": [{"URI": "http://dbpedia.org/resource/FC", "surface form": "FC"}, {"URI": "http://dbpedia.org/resource/Middlesbrough", "surface form": "Middlesbrough"}], "relations": [{"URI": "http://dbpedia.org/ontology/ground", "surface form": "head coach"}, {"URI": "http://dbpedia.org/ontology/team", "surface form": "teams"}]}, {"id": "152", "question": [{"language": "en", "string": "To which uni. did sidney c patridge and cyril hume both once went?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Sidney_Catlin_Partridge> <http://dbpedia.org/property/education> ?uri. <http://dbpedia.org/resource/Cyril_Hume> <http://dbpedia.org/property/education> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Yale_University"}}, "entities": [{"URI": "http://dbpedia.org/resource/Sidney_Catlin_Partridge", "surface form": ""}, {"URI": "http://dbpedia.org/resource/Cyril_Hume", "surface form": "cyril hume"}], "relations": [{"URI": "http://dbpedia.org/property/education", "surface form": "sidney"}, {"URI": "http://dbpedia.org/property/education", "surface form": "sidney"}]}, {"id": "153", "question": [{"language": "en", "string": "Who are the producers of the movies which has music by Gary Chang ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/music> <http://dbpedia.org/resource/Gary_Chang> . ?x <http://dbpedia.org/property/producer> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/David_W._Rintels"}}, "entities": [{"URI": "http://dbpedia.org/resource/Gary_Chang", "surface form": "Gary Chang"}], "relations": [{"URI": "http://dbpedia.org/ontology/manufacturer", "surface form": "producers"}, {"URI": "http://dbpedia.org/ontology/film", "surface form": "movies"}, {"URI": "http://dbpedia.org/ontology/musicComposer", "surface form": "music"}]}, {"id": "154", "question": [{"language": "en", "string": "Where was Special 26 recorded ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Special_26> <http://dbpedia.org/property/recorded> ?uri } "}, "answers": {"uri": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "2013"}}, "entities": [{"URI": "http://dbpedia.org/resource/Special_26", "surface form": "Special 26"}], "relations": [{"URI": "http://dbpedia.org/property/recorded", "surface form": "recorded"}]}, {"id": "155", "question": [{"language": "en", "string": "How many movies music composers are associated with Demis Roussos ?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/associatedActs> <http://dbpedia.org/resource/Demis_Roussos> . ?uri <http://dbpedia.org/ontology/musicComposer> ?x . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "1"}}, "entities": [{"URI": "http://dbpedia.org/resource/Music_for_Your_Movies", "surface form": "movies music composers"}, {"URI": "http://dbpedia.org/resource/Demis_Roussos", "surface form": "Demis Roussos"}], "relations": [{"URI": "http://dbpedia.org/ontology/musicComposer", "surface form": "composers"}, {"URI": "http://dbpedia.org/property/associatedActs", "surface form": "associated"}]}, {"id": "156", "question": [{"language": "en", "string": "To which nation did David Animle Hanses owe his allegiance?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/David_Animle_Hansen> <http://dbpedia.org/property/allegiance> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ghana"}}, "entities": [{"URI": "http://dbpedia.org/resource/David_Animle_Hansen", "surface form": "David Animle Hanses"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": "nation"}, {"URI": "http://dbpedia.org/ontology/leader", "surface form": "owe"}, {"URI": "http://dbpedia.org/ontology/allegiance", "surface form": "allegiance"}]}, {"id": "157", "question": [{"language": "en", "string": "What is the alma mater of the actors of The God Who Wasn't There ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/The_God_Who_Wasn't_There> <http://dbpedia.org/property/starring> ?x . ?x <http://dbpedia.org/property/almaMater> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/University_of_California,_Berkeley"}}, "entities": [{"URI": "http://dbpedia.org/resource/The_God_Who_Wasn't_There", "surface form": "The God Who Wasn't There"}], "relations": [{"URI": "http://dbpedia.org/property/starring", "surface form": "actor"}, {"URI": "http://dbpedia.org/property/almaMater", "surface form": "alma mater"}]}, {"id": "158", "question": [{"language": "en", "string": "What are the airlines whose hub airport is operated by the Los Angeles World Airports?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/operator> <http://dbpedia.org/resource/Los_Angeles_World_Airports> . ?uri <http://dbpedia.org/ontology/hubAirport> ?x . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Airline>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/American_Airlines"}}, "entities": [{"URI": "http://dbpedia.org/resource/Los_Angeles_World_Airports", "surface form": "Los Angeles World Airports"}], "relations": [{"URI": "http://dbpedia.org/ontology/icaoAirlineCode", "surface form": "airlines"}, {"URI": "http://dbpedia.org/property/centre", "surface form": "hub airport"}, {"URI": "http://dbpedia.org/property/operator", "surface form": "operated"}]}, {"id": "159", "question": [{"language": "en", "string": "Who directed The Haunted House ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/The_Haunted_House_(1929_film)> <http://dbpedia.org/ontology/director> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Walt_Disney"}}, "entities": [{"URI": "http://dbpedia.org/resource/The_Haunted_House_(1929_film)", "surface form": "The Haunted House"}], "relations": [{"URI": "http://dbpedia.org/ontology/director", "surface form": "directed"}]}, {"id": "160", "question": [{"language": "en", "string": "Count all the different purposes followed by the different NGOs."}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/type> <http://dbpedia.org/resource/Non-governmental_organization> . ?x <http://dbpedia.org/property/purpose> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "505"}}, "entities": [{"URI": "http://dbpedia.org/resource/Ngosini_West", "surface form": "NGOs"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": "count"}, {"URI": "http://dbpedia.org/ontology/mission", "surface form": "purposes"}]}, {"id": "161", "question": [{"language": "en", "string": "The players born in Bellaire, Ohio have played for which team?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/birthPlace> <http://dbpedia.org/resource/Bellaire,_Ohio> . ?x <http://dbpedia.org/ontology/team> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cleveland_Gladiators"}}, "entities": [{"URI": "http://dbpedia.org/resource/Bellaire,_Ohio", "surface form": "Bellaire, Ohio"}], "relations": [{"URI": "http://dbpedia.org/ontology/material", "surface form": "players"}, {"URI": "http://dbpedia.org/ontology/birthPlace", "surface form": "born"}, {"URI": "http://dbpedia.org/ontology/portrayer", "surface form": "played"}, {"URI": "http://dbpedia.org/ontology/team", "surface form": "team"}]}, {"id": "162", "question": [{"language": "en", "string": "What is the common ideology followed by Katyayana and Palang Dharma Party ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Katyayana_(Buddhist)> <http://dbpedia.org/property/religion> ?uri. <http://dbpedia.org/resource/Palang_Dharma_Party> <http://dbpedia.org/ontology/ideology> ?uri} "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Buddhism"}}, "entities": [{"URI": "http://dbpedia.org/resource/Katyayana_(Buddhist)", "surface form": "Katyayana"}, {"URI": "http://dbpedia.org/resource/Palang_Dharma_Party", "surface form": "Palang Dharma Party"}], "relations": [{"URI": "http://dbpedia.org/ontology/ideology", "surface form": "common ideology"}]}, {"id": "163", "question": [{"language": "en", "string": "Count the tenants of MasterCard Centre?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { <http://dbpedia.org/resource/MasterCard_Centre> <http://dbpedia.org/property/tenants> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/MasterCard_Centre", "surface form": "MasterCard Centre"}], "relations": [{"URI": "http://dbpedia.org/ontology/type", "surface form": "count"}, {"URI": "http://dbpedia.org/property/tenants", "surface form": "tenants"}]}, {"id": "164", "question": [{"language": "en", "string": "who are starring in the movies written by Mark Sandrich ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/writer> <http://dbpedia.org/resource/Mark_Sandrich> . ?x <http://dbpedia.org/ontology/starring> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Betty_Grable"}}, "entities": [{"URI": "http://dbpedia.org/resource/Mark_Sandrich", "surface form": "Mark Sandrich"}], "relations": [{"URI": "http://dbpedia.org/ontology/starring", "surface form": "starring"}, {"URI": "http://dbpedia.org/ontology/film", "surface form": "movies"}, {"URI": "http://dbpedia.org/ontology/writer", "surface form": "written"}]}, {"id": "165", "question": [{"language": "en", "string": "Count the number of religions followed by BJP members."}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/party> <http://dbpedia.org/resource/Bharatiya_Janata_Party> . ?x <http://dbpedia.org/ontology/religion> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/Bangladesh_Jatiya_Party_\u2013_BJP", "surface form": "BJP"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": "count"}, {"URI": "http://dbpedia.org/ontology/religion", "surface form": "religions"}, {"URI": "http://dbpedia.org/property/members", "surface form": "members"}]}, {"id": "166", "question": [{"language": "en", "string": "What is the birth name of Putri Raemawasti ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Putri_Raemawasti> <http://dbpedia.org/property/birthName> ?uri } "}, "answers": {"uri": {"type": "literal", "xml:lang": "en", "value": ""}}, "entities": [{"URI": "http://dbpedia.org/resource/Putri_Raemawasti", "surface form": "Putri Raemawasti"}], "relations": [{"URI": "http://dbpedia.org/ontology/birthName", "surface form": "birth name"}]}, {"id": "167", "question": [{"language": "en", "string": "What is the number of occupation of the people who died in tampa bay, florida?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/deathPlace> <http://dbpedia.org/resource/Tampa,_Florida> . ?x <http://dbpedia.org/ontology/occupation> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "57"}}, "entities": [{"URI": "http://dbpedia.org/resource/Tampa,_Florida", "surface form": "florida tampa"}], "relations": [{"URI": "http://dbpedia.org/ontology/occupation", "surface form": "occupation"}, {"URI": "http://dbpedia.org/property/deathPlace", "surface form": "died"}]}, {"id": "168", "question": [{"language": "en", "string": "Who was the United States president who also served as a governor of Indiana Territory?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/branch> <http://dbpedia.org/resource/Indiana_Territory> } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Joseph_Hamilton_Daveiss"}}, "entities": [{"URI": "http://dbpedia.org/resource/Jimmy_Carter", "surface form": "United States president"}, {"URI": "http://dbpedia.org/resource/Indiana_Territory", "surface form": "Indiana Territory"}], "relations": [{"URI": "http://dbpedia.org/ontology/regionServed", "surface form": "served"}, {"URI": "http://dbpedia.org/ontology/governor", "surface form": "governor"}]}, {"id": "169", "question": [{"language": "en", "string": "Musical artists who are associated with Ren & Angela were born where ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/associatedActs> <http://dbpedia.org/resource/Ren\u00e9_&_Angela> . ?x <http://dbpedia.org/property/birthPlace> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/MusicalArtist>}"}, "answers": {"uri": {"type": "literal", "xml:lang": "en", "value": "Philadelphia, Pennsylvania, U.S."}}, "entities": [{"URI": "http://dbpedia.org/resource/Ren_Bonian", "surface form": "Ren & Angela"}], "relations": [{"URI": "http://dbpedia.org/ontology/musicalArtist", "surface form": "musical artists"}, {"URI": "http://dbpedia.org/ontology/associate", "surface form": "associated"}, {"URI": "http://dbpedia.org/ontology/birthPlace", "surface form": "born"}]}, {"id": "170", "question": [{"language": "en", "string": "Who designed the language integrated query?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Language_Integrated_Query> <http://dbpedia.org/ontology/designer> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Microsoft"}}, "entities": [{"URI": "http://dbpedia.org/resource/Language_Integrated_Query", "surface form": "language integrated query"}], "relations": [{"URI": "http://dbpedia.org/ontology/designer", "surface form": "designed"}]}, {"id": "171", "question": [{"language": "en", "string": "Name the debut team of Dan Otero ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Dan_Otero> <http://dbpedia.org/ontology/debutTeam> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/San_Francisco_Giants"}}, "entities": [{"URI": "http://dbpedia.org/resource/Dan_Otero", "surface form": "Dan Otero"}], "relations": [{"URI": "http://dbpedia.org/ontology/debutTeam", "surface form": "debut team"}]}, {"id": "172", "question": [{"language": "en", "string": "Who started at the pole position in both 1997 canadian grand prix and the 94 spanish one?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/1997_Canadian_Grand_Prix> <http://dbpedia.org/property/poleDriver> ?uri. <http://dbpedia.org/resource/1994_Spanish_Grand_Prix> <http://dbpedia.org/property/poleDriver> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Michael_Schumacher"}}, "entities": [{"URI": "http://dbpedia.org/resource/1997_Canadian_Grand_Prix", "surface form": "1997 canadian grand prix"}, {"URI": "http://dbpedia.org/resource/1994_Spanish_Grand_Prix", "surface form": "94 spanish one"}], "relations": [{"URI": "http://dbpedia.org/property/poleDriver", "surface form": "pole position"}]}, {"id": "173", "question": [{"language": "en", "string": "Who founded the Not on our Watch NGO?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Not_on_Our_Watch_(organization)> <http://dbpedia.org/ontology/foundedBy> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/David_Pressman"}}, "entities": [{"URI": "http://dbpedia.org/resource/Not_on_Our_Watch_(organization)", "surface form": " Not on our Watch"}], "relations": [{"URI": "http://dbpedia.org/ontology/foundedBy", "surface form": "founded"}]}, {"id": "174", "question": [{"language": "en", "string": "Which company owns Sony bank ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Sony_Bank> <http://dbpedia.org/ontology/owningCompany> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sony"}}, "entities": [{"URI": "http://dbpedia.org/resource/Sony_Bank", "surface form": "Sony bank"}], "relations": [{"URI": "http://dbpedia.org/ontology/owningCompany", "surface form": "company"}]}, {"id": "175", "question": [{"language": "en", "string": "List the employments of people who died in Tampa, Florida."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/deathPlace> <http://dbpedia.org/resource/Tampa,_Florida> . ?x <http://dbpedia.org/ontology/occupation> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dan_White_(actor)__PersonFunction__1"}}, "entities": [{"URI": "http://dbpedia.org/resource/Tampa,_Florida", "surface form": "Tampa, Florida"}], "relations": [{"URI": "http://dbpedia.org/ontology/place", "surface form": "employments"}, {"URI": "http://dbpedia.org/property/deathPlace", "surface form": "died"}]}, {"id": "176", "question": [{"language": "en", "string": "List the movies edited by Julian Doyle in which music was composed by Geoffrey Brugon ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/music> <http://dbpedia.org/resource/Geoffrey_Burgon> . ?uri <http://dbpedia.org/property/editing> <http://dbpedia.org/resource/Julian_Doyle_(filmmaker)> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Monty_Python's_Life_of_Brian"}}, "entities": [{"URI": "http://dbpedia.org/resource/Julian_Doyle", "surface form": "Julian Doyle"}, {"URI": "http://dbpedia.org/resource/Geoffrey", "surface form": "Geoffrey Brugon"}], "relations": [{"URI": "http://dbpedia.org/ontology/film", "surface form": "movies"}, {"URI": "http://dbpedia.org/ontology/editor", "surface form": "edited"}, {"URI": "http://dbpedia.org/ontology/musicFusionGenre", "surface form": "music"}, {"URI": "http://dbpedia.org/ontology/creator", "surface form": "composed"}]}, {"id": "177", "question": [{"language": "en", "string": "What are the movies whose screenplay is done by Eric Roth?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/screenplay> <http://dbpedia.org/resource/Eric_Roth> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Airport_(film_series)"}}, "entities": [{"URI": "http://dbpedia.org/resource/Screenplay", "surface form": "screenplay"}, {"URI": "http://dbpedia.org/resource/Eric_Roth", "surface form": "Eric Roth"}], "relations": [{"URI": "http://dbpedia.org/property/screenplay", "surface form": "screenplay"}, {"URI": "http://dbpedia.org/ontology/Film", "surface form": "movie"}]}, {"id": "178", "question": [{"language": "en", "string": "What is the total number of writers whose singles are recorded in Miami?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/recordedIn> <http://dbpedia.org/resource/Miami> . ?x <http://dbpedia.org/property/writer> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "183"}}, "entities": [{"URI": "http://dbpedia.org/resource/Miami", "surface form": "Miami"}], "relations": [{"URI": "http://dbpedia.org/ontology/populationTotal", "surface form": "total"}, {"URI": "http://dbpedia.org/ontology/writer", "surface form": "writers"}, {"URI": "http://dbpedia.org/ontology/slogan", "surface form": "singles"}, {"URI": "http://dbpedia.org/ontology/recordedIn", "surface form": "recorded"}]}, {"id": "179", "question": [{"language": "en", "string": "What religions are followed by members of the societies whose architectural influences can be seen on the Sanggar Agung ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Sanggar_Agung> <http://dbpedia.org/property/architecturalStyle> ?x . ?x <http://dbpedia.org/ontology/religion> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tai_folk_religion"}}, "entities": [{"URI": "http://dbpedia.org/resource/Societies_of_Saint_Lucia", "surface form": "societies"}, {"URI": "http://dbpedia.org/resource/Sanggar_Agung", "surface form": "Sanggar Agung"}], "relations": [{"URI": "http://dbpedia.org/property/architecturalStyle", "surface form": "architectural"}, {"URI": "http://dbpedia.org/ontology/religion", "surface form": "religion"}]}, {"id": "180", "question": [{"language": "en", "string": "Who is the producer of album which has the song Money?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Money_(Pink_Floyd_song)> <http://dbpedia.org/property/album> ?x . ?x <http://dbpedia.org/property/producer> ?uri . }"}, "answers": {"uri": {"type": "literal", "xml:lang": "en", "value": "Pink Floyd"}}, "entities": [{"URI": "http://dbpedia.org/resource/Money_(Pink_Floyd_song)", "surface form": "Money"}], "relations": [{"URI": "http://dbpedia.org/ontology/producer", "surface form": "producer"}, {"URI": "http://dbpedia.org/ontology/album", "surface form": "album"}]}, {"id": "181", "question": [{"language": "en", "string": "List the Sci-fi TV shows with theme music given by Ron Grainer?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/genre> <http://dbpedia.org/resource/Science_fiction> . ?uri <http://dbpedia.org/property/themeMusicComposer> <http://dbpedia.org/resource/Ron_Grainer> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Doctor_Who"}}, "entities": [{"URI": "http://dbpedia.org/resource/Tv_test_pattern", "surface form": "TV"}, {"URI": "http://dbpedia.org/resource/Sci-fi_Overdrive", "surface form": "Sci-fi"}, {"URI": "http://dbpedia.org/resource/Ron_Grainer", "surface form": "Ron Grainer"}], "relations": [{"URI": "http://dbpedia.org/ontology/place", "surface form": "shows"}, {"URI": "http://dbpedia.org/ontology/openingTheme", "surface form": "theme music"}]}, {"id": "182", "question": [{"language": "en", "string": "What is the company to which Fusajiro Yamauchi proprietor to ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/foundedBy> <http://dbpedia.org/resource/Fusajiro_Yamauchi> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Company>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nintendo"}}, "entities": [{"URI": "http://dbpedia.org/resource/Fusajiro_Yamauchi", "surface form": "Fusajiro Yamauchi"}], "relations": [{"URI": "http://dbpedia.org/ontology/company", "surface form": "company"}]}, {"id": "183", "question": [{"language": "en", "string": "How many members are there in the European Go Federation?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { <http://dbpedia.org/resource/European_Go_Federation> <http://dbpedia.org/property/membership> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "37"}}, "entities": [{"URI": "http://dbpedia.org/resource/Europe", "surface form": "European Go Federation"}, {"URI": "http://dbpedia.org/resource/European_Go_Federation", "surface form": "European Go Federation"}], "relations": [{"URI": "http://dbpedia.org/ontology/membership", "surface form": "members"}, {"URI": "http://dbpedia.org/ontology/country", "surface form": ""}]}, {"id": "184", "question": [{"language": "en", "string": "Daniel L D Granger and Job Durfee have based their political career in which US state?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Daniel_L._D._Granger> <http://dbpedia.org/property/state> ?uri. <http://dbpedia.org/resource/Job_Durfee> <http://dbpedia.org/property/state> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rhode_Island"}}, "entities": [{"URI": "http://dbpedia.org/resource/L", "surface form": "L"}, {"URI": "http://dbpedia.org/resource/Daniel_D._Johnson", "surface form": "daniel D Granger"}, {"URI": "http://dbpedia.org/resource/D", "surface form": "D"}, {"URI": "http://dbpedia.org/resource/Daniel_L._D._Granger", "surface form": "daniel L Granger"}, {"URI": "http://dbpedia.org/resource/Job_Durfee", "surface form": "Job Durfee"}, {"URI": "http://dbpedia.org/resource/United_States", "surface form": "US"}], "relations": [{"URI": "http://dbpedia.org/ontology/office", "surface form": "based"}, {"URI": "http://dbpedia.org/ontology/occupation", "surface form": "political career"}]}, {"id": "185", "question": [{"language": "en", "string": "What is the mascot of the handball teams in the Turkish Handball Super League?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/league> <http://dbpedia.org/resource/Turkish_Handball_Super_League> . ?x <http://dbpedia.org/property/mascot> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/HandballTeam>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lion"}}, "entities": [{"URI": "http://dbpedia.org/resource/Turkey", "surface form": "Turkish Handball Super League"}, {"URI": "http://dbpedia.org/resource/Turkish_Handball_Super_League", "surface form": "Turkish Handball Super League"}], "relations": [{"URI": "http://dbpedia.org/ontology/mascot", "surface form": "mascot"}, {"URI": "http://dbpedia.org/property/teams", "surface form": "handball teams"}, {"URI": "http://dbpedia.org/ontology/country", "surface form": ""}]}, {"id": "186", "question": [{"language": "en", "string": "Marika Gombitov makes songs in which languages?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/artist> <http://dbpedia.org/resource/Marika_Gombitov\u00e1> . ?x <http://dbpedia.org/property/language> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Slovakia"}}, "entities": [{"URI": "http://dbpedia.org/resource/Marika_Nezer", "surface form": "Marika gombitov"}], "relations": [{"URI": "http://dbpedia.org/ontology/anthem", "surface form": "songs"}, {"URI": "http://dbpedia.org/ontology/language", "surface form": "languages"}]}, {"id": "187", "question": [{"language": "en", "string": "What are some musical artists associated with the ones signed up with EMI?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/recordLabel> <http://dbpedia.org/resource/EMI> . ?x <http://dbpedia.org/ontology/associatedMusicalArtist> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/MusicalArtist>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bob_Marley_and_the_Wailers"}}, "entities": [{"URI": "http://dbpedia.org/resource/Emi", "surface form": "EMI"}], "relations": [{"URI": "http://dbpedia.org/ontology/show", "surface form": "musical artists"}, {"URI": "http://dbpedia.org/ontology/associatedBand", "surface form": "associated"}, {"URI": "http://dbpedia.org/ontology/movement", "surface form": "signed"}]}, {"id": "188", "question": [{"language": "en", "string": "Name the scientist whose supervisor also supervised Mary Ainsworth?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/doctoralStudents> <http://dbpedia.org/resource/Mary_Ainsworth> . ?uri <http://dbpedia.org/property/doctoralAdvisor> ?x . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Scientist>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mary_Ainsworth"}}, "entities": [{"URI": "http://dbpedia.org/resource/Scientist_(musician)", "surface form": "scientist"}, {"URI": "http://dbpedia.org/resource/Mary_Ainsworth", "surface form": "Mary Ainsworth"}], "relations": [{"URI": "http://dbpedia.org/property/name", "surface form": "name"}, {"URI": "http://dbpedia.org/ontology/doctoralAdvisor", "surface form": "supervisor"}, {"URI": "http://dbpedia.org/ontology/doctoralAdvisor", "surface form": "supervised"}]}, {"id": "189", "question": [{"language": "en", "string": "To which political party does Virendra Kataria belongs ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Virendra_Kataria> <http://dbpedia.org/property/party> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Indian_National_Congress"}}, "entities": [{"URI": "http://dbpedia.org/resource/Virendra_Kataria", "surface form": "Virendra Kataria"}], "relations": [{"URI": "http://dbpedia.org/ontology/party", "surface form": "political party"}, {"URI": "http://dbpedia.org/property/date", "surface form": "belongs"}]}, {"id": "190", "question": [{"language": "en", "string": "Copley Medal has been awarded to which scientists?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/awards> <http://dbpedia.org/resource/Copley_Medal> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Scientist>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Albert_Kluyver"}}, "entities": [{"URI": "http://dbpedia.org/resource/Copley_Medal", "surface form": "copley Medal"}, {"URI": "http://dbpedia.org/resource/Scientists_for_Global_Responsibility", "surface form": "scientists"}], "relations": [{"URI": "http://dbpedia.org/property/awards", "surface form": "awarded"}, {"URI": "http://dbpedia.org/ontology/Scientist", "surface form": "scientist"}]}, {"id": "191", "question": [{"language": "en", "string": "What is the total number of awards whose presenter's headquarters is Beverly Hills, California?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/headquarters> <http://dbpedia.org/resource/Beverly_Hills,_California> . ?uri <http://dbpedia.org/ontology/presenter> ?x . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Award>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "35"}}, "entities": [{"URI": "http://dbpedia.org/resource/Beverly_Hills,_California", "surface form": "Beverly Hills, California"}], "relations": [{"URI": "http://dbpedia.org/ontology/populationTotal", "surface form": "total"}, {"URI": "http://dbpedia.org/ontology/award", "surface form": "awards"}, {"URI": "http://dbpedia.org/ontology/presenter", "surface form": "presenter"}, {"URI": "http://dbpedia.org/property/headquarters", "surface form": " headquarters"}]}, {"id": "192", "question": [{"language": "en", "string": "Who is the narrator of The Price of Beauty ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/The_Price_of_Beauty> <http://dbpedia.org/ontology/narrator> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jessica_Simpson"}}, "entities": [{"URI": "http://dbpedia.org/resource/The_Price_of_Beauty", "surface form": "The Price of Beauty"}], "relations": [{"URI": "http://dbpedia.org/ontology/narrator", "surface form": "narrator"}]}, {"id": "193", "question": [{"language": "en", "string": "How many artists have collaborated with famous guitar players?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/notableInstruments> <http://dbpedia.org/resource/Guitar> . ?x <http://dbpedia.org/ontology/associatedMusicalArtist> ?uri . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Artist>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/Famous%3F", "surface form": "famous guitar players"}], "relations": [{"URI": "http://dbpedia.org/ontology/artist", "surface form": "artists"}, {"URI": "http://dbpedia.org/ontology/band", "surface form": "collaborated"}]}, {"id": "194", "question": [{"language": "en", "string": "How many politicians live in India?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE {?uri <http://dbpedia.org/ontology/residence> <http://dbpedia.org/resource/India> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/OfficeHolder>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "83"}}, "entities": [{"URI": "http://dbpedia.org/resource/Politicians_of_The_Wire", "surface form": "politicians"}, {"URI": "http://dbpedia.org/resource/India", "surface form": "India"}], "relations": [{"URI": "http://dbpedia.org/ontology/residence", "surface form": "live"}]}, {"id": "195", "question": [{"language": "en", "string": "How many albums did the maker of The Band produce?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/artist> <http://dbpedia.org/resource/The_Band> . ?x <http://dbpedia.org/ontology/subsequentWork> ?uri . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Album>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/Produce_101", "surface form": "The Band produce"}], "relations": [{"URI": "http://dbpedia.org/ontology/album", "surface form": "albums"}, {"URI": "http://dbpedia.org/ontology/producer", "surface form": "maker"}]}, {"id": "196", "question": [{"language": "en", "string": "How many rivers start in an English speaking country?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/officialLanguage> <http://dbpedia.org/resource/English_language> . ?uri <http://dbpedia.org/ontology/sourceCountry> ?x . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/River>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/English_language", "surface form": "English"}], "relations": [{"URI": "http://dbpedia.org/ontology/river", "surface form": "rivers"}, {"URI": "http://dbpedia.org/ontology/head", "surface form": "start"}, {"URI": "http://dbpedia.org/ontology/language", "surface form": "speaking"}, {"URI": "http://dbpedia.org/ontology/country", "surface form": "country"}, {"URI": "http://dbpedia.org/ontology/country", "surface form": ""}]}, {"id": "197", "question": [{"language": "en", "string": "Where Everybody knows you is the theme album of which show ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Where_Everybody_Knows_Your_Name> <http://dbpedia.org/ontology/album> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cheers"}}, "entities": [{"URI": "http://dbpedia.org/resource/Everybody", "surface form": "Everybody"}], "relations": [{"URI": "http://dbpedia.org/ontology/album", "surface form": "theme album"}, {"URI": "http://dbpedia.org/ontology/show", "surface form": "show"}]}, {"id": "198", "question": [{"language": "en", "string": "Food in which countries has shallot in it?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/ingredient> <http://dbpedia.org/resource/Shallot> . ?x <http://dbpedia.org/ontology/country> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Food>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Indonesia"}}, "entities": [{"URI": "http://dbpedia.org/resource/Countries_of_the_United_Kingdom", "surface form": "countries"}], "relations": [{"URI": "http://dbpedia.org/ontology/supplies", "surface form": "food"}, {"URI": "http://dbpedia.org/ontology/award", "surface form": "shallot"}]}, {"id": "199", "question": [{"language": "en", "string": "Alexander Magleby, a rugby player is alma mater to which university?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Alexander_Magleby> <http://dbpedia.org/property/university> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dartmouth_College"}}, "entities": [{"URI": "http://dbpedia.org/resource/Alexander_Magleby", "surface form": "alexander Magleby,"}], "relations": [{"URI": "http://dbpedia.org/ontology/coach", "surface form": "rugby player"}, {"URI": "http://dbpedia.org/ontology/school", "surface form": "alma mater"}, {"URI": "http://dbpedia.org/ontology/university", "surface form": "university"}]}, {"id": "200", "question": [{"language": "en", "string": "List the products of the company which published Tweenies: Game Time."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Tweenies:_Game_Time> <http://dbpedia.org/property/publisher> ?x . ?x <http://dbpedia.org/property/products> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Doctor_Who"}}, "entities": [{"URI": "http://dbpedia.org/resource/Tweenies:_Game_Time", "surface form": "Tweenies: Game Time"}], "relations": [{"URI": "http://dbpedia.org/property/products", "surface form": "products"}, {"URI": "http://dbpedia.org/ontology/company", "surface form": "company"}, {"URI": "http://dbpedia.org/ontology/publisher", "surface form": "published"}]}, {"id": "201", "question": [{"language": "en", "string": "What religion are the characters of Absolutely Fabulous from?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/series> <http://dbpedia.org/resource/Absolutely_Fabulous> . ?x <http://dbpedia.org/ontology/religion> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/FictionalCharacter>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Buddhism"}}, "entities": [{"URI": "http://dbpedia.org/resource/Absolutely_Fabulous", "surface form": "Absolutely Fabulous"}], "relations": [{"URI": "http://dbpedia.org/ontology/religion", "surface form": "religion"}, {"URI": "http://dbpedia.org/property/type", "surface form": "characters"}]}, {"id": "202", "question": [{"language": "en", "string": "What are the movies whose music composer uses a Hammond organ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/instrument> <http://dbpedia.org/resource/Hammond_organ> . ?uri <http://dbpedia.org/ontology/musicComposer> ?x . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/American_Revolutionary:_The_Evolution_of_Grace_Lee_Boggs"}}, "entities": [{"URI": "http://dbpedia.org/resource/Hammond_organ", "surface form": "Hammond organ"}], "relations": [{"URI": "http://dbpedia.org/ontology/film", "surface form": "movies"}, {"URI": "http://dbpedia.org/ontology/musicComposer", "surface form": "music composer"}]}, {"id": "203", "question": [{"language": "en", "string": "Name the TV show with artist Christopher Franke and cast member Jason Carter ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/artist> <http://dbpedia.org/resource/Christopher_Franke> . ?uri <http://dbpedia.org/ontology/starring> <http://dbpedia.org/resource/Jason_Carter_(actor)> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Babylon_5"}}, "entities": [{"URI": "http://dbpedia.org/resource/Tv_test_pattern", "surface form": "TV"}, {"URI": "http://dbpedia.org/resource/Christopher_Franke", "surface form": "show with artist Christopher Franke"}, {"URI": "http://dbpedia.org/resource/Jason_Carter_(actor)", "surface form": "cast member Jason Carter"}], "relations": [{"URI": "http://dbpedia.org/property/name", "surface form": "name"}]}, {"id": "204", "question": [{"language": "en", "string": "Which artist married to Lee Krasner?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/spouse> <http://dbpedia.org/resource/Lee_Krasner> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Artist>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jackson_Pollock"}}, "entities": [{"URI": "http://dbpedia.org/resource/Lee_Krasner", "surface form": "Lee Krasner"}], "relations": [{"URI": "http://dbpedia.org/property/spouse", "surface form": "married to"}, {"URI": "http://dbpedia.org/ontology/Artist", "surface form": "artist"}]}, {"id": "205", "question": [{"language": "en", "string": "What teams did the ex teamplayers of lighthouse boy club start their career with?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/youthclubs> <http://dbpedia.org/resource/Lighthouse_Boys_Club> . ?x <http://dbpedia.org/property/debutteam> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Philadelphia_Phillies"}}, "entities": [{"URI": "http://dbpedia.org/resource/Lighthouse_Boys_Club", "surface form": "lighthouse boy club"}], "relations": [{"URI": "http://dbpedia.org/ontology/team", "surface form": "teams"}, {"URI": "http://dbpedia.org/ontology/head", "surface form": "start"}, {"URI": "http://dbpedia.org/ontology/careerStation", "surface form": "career"}]}, {"id": "206", "question": [{"language": "en", "string": "Where was the deadbody discovered of one of the alumni of General Educational Development?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/education> <http://dbpedia.org/resource/General_Educational_Development> . ?x <http://dbpedia.org/property/bodyDiscovered> ?uri . }"}, "answers": {"uri": {"type": "literal", "xml:lang": "en", "value": ""}}, "entities": [{"URI": "http://dbpedia.org/resource/Deadboy_&_the_Elephantmen", "surface form": "deadbody"}, {"URI": "http://dbpedia.org/resource/General_Educational_Development", "surface form": "General Educational Development"}], "relations": [{"URI": "http://dbpedia.org/property/education", "surface form": "Education"}, {"URI": "http://dbpedia.org/property/bodyDiscovered", "surface form": "body discovered"}]}, {"id": "207", "question": [{"language": "en", "string": "Who designed the bridge in Oddamavadi?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/locatedInArea> <http://dbpedia.org/resource/Oddamavadi> . ?x <http://dbpedia.org/property/designer> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Bridge>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/British_Ceylon"}}, "entities": [{"URI": "http://dbpedia.org/resource/Oddamavadi", "surface form": "Oddamavadi"}], "relations": [{"URI": "http://dbpedia.org/ontology/architect", "surface form": "designed"}, {"URI": "http://dbpedia.org/ontology/bridgeCarries", "surface form": "bridge"}]}, {"id": "208", "question": [{"language": "en", "string": "List the companies operating in Australia?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/regionServed> <http://dbpedia.org/resource/Australia> } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Altium"}}, "entities": [{"URI": "http://dbpedia.org/resource/Companies_listed_on_the_New_York_Stock_Exchange_(J)", "surface form": "companies"}, {"URI": "http://dbpedia.org/resource/Australia", "surface form": "Australia"}], "relations": [{"URI": "http://dbpedia.org/ontology/cost", "surface form": "operating"}]}, {"id": "209", "question": [{"language": "en", "string": "In which countries is coconut used as a food ingredient?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/ingredient> <http://dbpedia.org/resource/Coconut> . ?x <http://dbpedia.org/property/country> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Food>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ghana"}}, "entities": [{"URI": "http://dbpedia.org/resource/Countries_of_the_United_Kingdom", "surface form": "countries"}, {"URI": "http://dbpedia.org/resource/Coconut", "surface form": "coconut"}], "relations": [{"URI": "http://dbpedia.org/ontology/ingredient", "surface form": "food ingredient"}]}, {"id": "210", "question": [{"language": "en", "string": "How many people have worked for teams chaired by Patricia Amorim?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/chairman> <http://dbpedia.org/resource/Patr\u00edcia_Amorim> . ?x <http://dbpedia.org/property/name> ?uri . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Person>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "88"}}, "entities": [{"URI": "http://dbpedia.org/resource/Eduarda_Amorim", "surface form": "Patricia Amorim"}], "relations": [{"URI": "http://dbpedia.org/ontology/operator", "surface form": "worked"}, {"URI": "http://dbpedia.org/ontology/club", "surface form": "teams"}, {"URI": "http://dbpedia.org/ontology/leader", "surface form": "chaired"}]}, {"id": "211", "question": [{"language": "en", "string": "How many kinds of games can be played on the Amiga?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/computingPlatform> <http://dbpedia.org/resource/Amiga> . ?x <http://dbpedia.org/property/genre> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "1555"}}, "entities": [{"URI": "http://dbpedia.org/resource/Amiga", "surface form": "Amiga"}], "relations": [{"URI": "http://dbpedia.org/ontology/genre", "surface form": "kinds"}, {"URI": "http://dbpedia.org/ontology/games", "surface form": "games"}, {"URI": "http://dbpedia.org/ontology/portrayer", "surface form": "played"}]}, {"id": "212", "question": [{"language": "en", "string": "How many relatives are there of people fought in the Battle of the Bulge?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/battles> <http://dbpedia.org/resource/Battle_of_the_Bulge> . ?x <http://dbpedia.org/ontology/relation> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "15"}}, "entities": [{"URI": "http://dbpedia.org/resource/Battle_of_the_Bulge", "surface form": "Battle of the Bulge"}], "relations": [{"URI": "http://dbpedia.org/ontology/languageFamily", "surface form": "relatives"}]}, {"id": "213", "question": [{"language": "en", "string": "How many genres of games can I find on the commodore CDTV?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/computingPlatform> <http://dbpedia.org/resource/Commodore_CDTV> . ?x <http://dbpedia.org/ontology/genre> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "23"}}, "entities": [{"URI": "http://dbpedia.org/resource/Commodore_CDTV", "surface form": "commodore CDTV"}], "relations": [{"URI": "http://dbpedia.org/ontology/type", "surface form": "genres"}, {"URI": "http://dbpedia.org/ontology/games", "surface form": "games"}]}, {"id": "214", "question": [{"language": "en", "string": "Directors of which movies are buried in Ronda?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/restingPlace> <http://dbpedia.org/resource/Ronda> . ?uri <http://dbpedia.org/property/director> ?x . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Filming_Othello"}}, "entities": [{"URI": "http://dbpedia.org/resource/Ronda", "surface form": "Ronda"}], "relations": [{"URI": "http://dbpedia.org/ontology/restingPlace", "surface form": "buried in"}, {"URI": "http://dbpedia.org/property/director", "surface form": "Director"}]}, {"id": "215", "question": [{"language": "en", "string": "List the debut team of the baseball player who born in Houston."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/birthPlace> <http://dbpedia.org/resource/Houston> . ?x <http://dbpedia.org/ontology/debutTeam> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/BaseballPlayer>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Boston_Red_Sox"}}, "entities": [{"URI": "http://dbpedia.org/resource/Houston_Astros", "surface form": "Houston"}], "relations": [{"URI": "http://dbpedia.org/ontology/team", "surface form": "debut team"}, {"URI": "http://dbpedia.org/ontology/participant", "surface form": "baseball player"}, {"URI": "http://dbpedia.org/ontology/birthPlace", "surface form": "born"}]}, {"id": "216", "question": [{"language": "en", "string": "Who edited British Gazette ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/British_Gazette> <http://dbpedia.org/property/editor> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Winston_Churchill"}}, "entities": [{"URI": "http://dbpedia.org/resource/United_Kingdom", "surface form": "British Gazette"}, {"URI": "http://dbpedia.org/resource/British_Gazette", "surface form": "British Gazette"}], "relations": [{"URI": "http://dbpedia.org/ontology/editor", "surface form": "edited"}, {"URI": "http://dbpedia.org/ontology/country", "surface form": ""}]}, {"id": "217", "question": [{"language": "en", "string": "What acts and artists are associated with people who have worked with Divertis?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/associatedActs> <http://dbpedia.org/resource/Divertis> . ?x <http://dbpedia.org/ontology/associatedMusicalArtist> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Eurovision_Song_Contest"}}, "entities": [{"URI": "http://dbpedia.org/resource/Divertis", "surface form": "Divertis"}], "relations": [{"URI": "http://dbpedia.org/property/associatedActs", "surface form": "associated acts"}, {"URI": "http://dbpedia.org/ontology/associatedMusicalArtist", "surface form": "associated"}]}, {"id": "218", "question": [{"language": "en", "string": "Which company has developed games whose music is done by Gerard Marino?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/composer> <http://dbpedia.org/resource/Gerard_Marino> . ?x <http://dbpedia.org/ontology/developer> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/VideoGame>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ready_at_Dawn"}}, "entities": [{"URI": "http://dbpedia.org/resource/Gerard_Marino", "surface form": "Gerard Marino"}], "relations": [{"URI": "http://dbpedia.org/ontology/company", "surface form": "company"}, {"URI": "http://dbpedia.org/ontology/leader", "surface form": "developed"}, {"URI": "http://dbpedia.org/ontology/games", "surface form": "games"}, {"URI": "http://dbpedia.org/property/music", "surface form": "music"}]}, {"id": "219", "question": [{"language": "en", "string": "Who all have developed softwares for Unix Like OSes?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/operatingSystem> <http://dbpedia.org/resource/Unix-like> . ?x <http://dbpedia.org/ontology/developer> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Software>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kenneth_Almquist"}}, "entities": [{"URI": "http://dbpedia.org/resource/Soft_Machine", "surface form": "softwares"}, {"URI": "http://dbpedia.org/resource/Unix", "surface form": "Unix Like OSes"}], "relations": [{"URI": "http://dbpedia.org/ontology/developer", "surface form": "developed"}]}, {"id": "220", "question": [{"language": "en", "string": "What are some party leaders of the parties which have had a seat in Berlin?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/headquarter> <http://dbpedia.org/resource/Berlin> . ?x <http://dbpedia.org/ontology/leader> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/PoliticalParty>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Connor_Geiger"}}, "entities": [{"URI": "http://dbpedia.org/resource/Berlin", "surface form": "Berlin"}], "relations": [{"URI": "http://dbpedia.org/ontology/team", "surface form": "party leaders"}, {"URI": "http://dbpedia.org/ontology/chain", "surface form": "parties"}, {"URI": "http://dbpedia.org/property/seat", "surface form": "seat"}]}, {"id": "221", "question": [{"language": "en", "string": "List sports managers who managed Middlesbrough F.C. and England national under-21 football team?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/managerClub> <http://dbpedia.org/resource/Middlesbrough_F.C.> . ?uri <http://dbpedia.org/property/managerclubs> <http://dbpedia.org/resource/England_national_under-21_football_team> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/SportsManager>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gareth_Southgate"}}, "entities": [{"URI": "http://dbpedia.org/resource/Middlesbrough_F.C.", "surface form": "Middlesbrough F.C."}, {"URI": "http://dbpedia.org/resource/England_national_under-21_football_team", "surface form": "England national under-21 football team"}], "relations": [{"URI": "http://dbpedia.org/ontology/management", "surface form": "sports managers"}, {"URI": "http://dbpedia.org/ontology/leader", "surface form": "managed"}]}, {"id": "222", "question": [{"language": "en", "string": "Name all the soccer players who played in a under 18 club for La Liga?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/league> <http://dbpedia.org/resource/La_Liga> . ?uri <http://dbpedia.org/property/youthclubs> ?x . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/SoccerPlayer>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alonso_Coello_Camarero"}}, "entities": [{"URI": "http://dbpedia.org/resource/Major_League_Soccer_Players_Union", "surface form": "soccer players"}, {"URI": "http://dbpedia.org/resource/La_Liga", "surface form": "La Liga"}], "relations": [{"URI": "http://dbpedia.org/property/name", "surface form": "name"}, {"URI": "http://dbpedia.org/ontology/participant", "surface form": "played"}, {"URI": "http://dbpedia.org/property/body", "surface form": "18 club"}]}, {"id": "223", "question": [{"language": "en", "string": "Which employer of Michael M. Sears is also the producer of Delta III ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Michael_M._Sears> <http://dbpedia.org/ontology/employer> ?uri. <http://dbpedia.org/resource/Delta_III> <http://dbpedia.org/ontology/manufacturer> ?uri} "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Boeing"}}, "entities": [{"URI": "http://dbpedia.org/resource/Michael_M._Sears", "surface form": "Michael M. Sears"}, {"URI": "http://dbpedia.org/resource/Delta_III", "surface form": "Delta III"}], "relations": [{"URI": "http://dbpedia.org/ontology/employer", "surface form": "employer"}, {"URI": "http://dbpedia.org/ontology/producer", "surface form": "producer"}]}, {"id": "224", "question": [{"language": "en", "string": "Name the largest city in the county where there is a Cy-Fair High School."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Cy-Fair_High_School> <http://dbpedia.org/ontology/county> ?x . ?x <http://dbpedia.org/ontology/largestCity> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Houston"}}, "entities": [{"URI": "http://dbpedia.org/resource/Cy-Fair_High_School", "surface form": "Cy-Fair High School"}], "relations": [{"URI": "http://dbpedia.org/property/name", "surface form": "name"}, {"URI": "http://dbpedia.org/ontology/city", "surface form": "largest city"}, {"URI": "http://dbpedia.org/ontology/county", "surface form": "county"}]}, {"id": "225", "question": [{"language": "en", "string": "How many bacterias are there whose division is Firmicutes?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE {?uri <http://dbpedia.org/ontology/division> <http://dbpedia.org/resource/Firmicutes> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Bacteria>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/Bacteriastrum_delicatulum", "surface form": "bacterias"}, {"URI": "http://dbpedia.org/resource/Firmicutes", "surface form": "Firmicutes"}], "relations": [{"URI": "http://dbpedia.org/ontology/division", "surface form": "division"}]}, {"id": "226", "question": [{"language": "en", "string": "To which country does Peter Blay owe his allegiance?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Peter_Blay> <http://dbpedia.org/property/allegiance> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ghana"}}, "entities": [{"URI": "http://dbpedia.org/resource/Peter_Blay", "surface form": "Peter Blay"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": "country"}, {"URI": "http://dbpedia.org/ontology/leader", "surface form": "owe"}, {"URI": "http://dbpedia.org/ontology/allegiance", "surface form": "allegiance"}]}, {"id": "227", "question": [{"language": "en", "string": "Who was the prime minister under which the predecessor of Derick Heathcoat Amory served?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/successor> <http://dbpedia.org/resource/Derick_Heathcoat-Amory,_1st_Viscount_Amory> . ?x <http://dbpedia.org/property/primeminister> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Clement_Attlee"}}, "entities": [{"URI": "http://dbpedia.org/resource/David_Heathcoat-Amory", "surface form": "Derick Heathcoat Amory"}], "relations": [{"URI": "http://dbpedia.org/ontology/primeMinister", "surface form": "prime minister"}, {"URI": "http://dbpedia.org/ontology/predecessor", "surface form": "predecessor"}, {"URI": "http://dbpedia.org/ontology/regionServed", "surface form": "served"}]}, {"id": "228", "question": [{"language": "en", "string": "Which person designed the cars which has been designed by ASC Creative Services?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/designCompany> <http://dbpedia.org/resource/ASC_Creative_Services> . ?x <http://dbpedia.org/property/designer> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Automobile>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Warren,_Michigan"}}, "entities": [{"URI": "http://dbpedia.org/resource/ASC_Creative_Services", "surface form": "ASC Creative Services"}], "relations": [{"URI": "http://dbpedia.org/ontology/type", "surface form": "person"}, {"URI": "http://dbpedia.org/ontology/architect", "surface form": "designed"}, {"URI": "http://dbpedia.org/ontology/management", "surface form": "cars"}, {"URI": "http://dbpedia.org/ontology/architect", "surface form": "designed"}]}, {"id": "229", "question": [{"language": "en", "string": "What are some orthonychidae birds?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/family> <http://dbpedia.org/resource/Orthonychidae> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Bird>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Logrunners"}}, "entities": [{"URI": "http://dbpedia.org/resource/Orthonychidae", "surface form": "orthonychidae birds"}], "relations": []}, {"id": "230", "question": [{"language": "en", "string": "Which driver had the pole position in 1994 Spanish Grand Prix ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/1994_Spanish_Grand_Prix> <http://dbpedia.org/ontology/poleDriver> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Michael_Schumacher"}}, "entities": [{"URI": "http://dbpedia.org/resource/1994_Spanish_Grand_Prix", "surface form": "1994 Spanish Grand Prix"}], "relations": [{"URI": "http://dbpedia.org/ontology/poleDriver", "surface form": "driver"}, {"URI": "http://dbpedia.org/ontology/part", "surface form": "pole position"}]}, {"id": "231", "question": [{"language": "en", "string": "How many awards have been given to the founder of Grameen Bank?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { <http://dbpedia.org/resource/Grameen_Bank> <http://dbpedia.org/property/founder> ?x . ?x <http://dbpedia.org/ontology/award> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/Grameen_Bank", "surface form": "Grameen Bank"}], "relations": [{"URI": "http://dbpedia.org/ontology/award", "surface form": "awards"}, {"URI": "http://dbpedia.org/ontology/founder", "surface form": "founder"}]}, {"id": "232", "question": [{"language": "en", "string": "Count the number of important works done by the writers of The Second Coming?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { <http://dbpedia.org/resource/The_Second_Coming_(TV_serial)> <http://dbpedia.org/ontology/author> ?x . ?x <http://dbpedia.org/ontology/notableWork> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/The_Second_Coming_(TV_serial)", "surface form": "The Second Coming"}], "relations": [{"URI": "http://dbpedia.org/ontology/author", "surface form": "writers"}, {"URI": "http://dbpedia.org/ontology/notableWork", "surface form": "works"}]}, {"id": "233", "question": [{"language": "en", "string": "Which child of Jack Ferguson became a Prime Minister?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Jack_Ferguson> <http://dbpedia.org/ontology/child> ?x . ?x <http://dbpedia.org/property/primeminister> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kevin_Rudd"}}, "entities": [{"URI": "http://dbpedia.org/resource/Jack_Ferguson", "surface form": "Jack Ferguson became a Prime Minister"}], "relations": [{"URI": "http://dbpedia.org/ontology/child", "surface form": "child"}, {"URI": "http://dbpedia.org/property/primeminister", "surface form": "minister prime"}]}, {"id": "234", "question": [{"language": "en", "string": "For whom did Michael Springer palyed for which is also had a former student named Donald Brooks ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Michael_Springer> <http://dbpedia.org/property/team> ?uri. <http://dbpedia.org/resource/Donald_Brooks> <http://dbpedia.org/property/education> ?uri} "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Syracuse_University"}}, "entities": [{"URI": "http://dbpedia.org/resource/Michael_Springer", "surface form": "Michael Springer"}, {"URI": "http://dbpedia.org/resource/Donald_Brooks", "surface form": "Donald Brooks"}], "relations": [{"URI": "http://dbpedia.org/ontology/alias", "surface form": "palyed"}, {"URI": "http://dbpedia.org/ontology/retired", "surface form": "former student"}]}, {"id": "235", "question": [{"language": "en", "string": "Which series was written by Eric Jendresen and John Orloff?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/writer> <http://dbpedia.org/resource/Erik_Jendresen> . ?uri <http://dbpedia.org/property/writer> <http://dbpedia.org/resource/John_Orloff> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Band_of_Brothers_(miniseries)"}}, "entities": [{"URI": "http://dbpedia.org/resource/Erik_Jendresen", "surface form": "Eric Jendresen"}, {"URI": "http://dbpedia.org/resource/John_Orloff", "surface form": "John Orloff"}], "relations": [{"URI": "http://dbpedia.org/ontology/series", "surface form": "series"}, {"URI": "http://dbpedia.org/ontology/writer", "surface form": "written"}]}, {"id": "236", "question": [{"language": "en", "string": "What are the nicknames given to the characters of The Wolves of the Mercy Falls?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/List_of_The_Wolves_of_Mercy_Falls_characters> <http://dbpedia.org/property/nickname> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ringo_Starr"}}, "entities": [{"URI": "http://dbpedia.org/resource/List_of_The_Wolves_of_Mercy_Falls_characters", "surface form": "The Wolves of the Mercy Falls"}], "relations": [{"URI": "http://dbpedia.org/property/nickname", "surface form": "nickname"}]}, {"id": "237", "question": [{"language": "en", "string": "Members of how many political parties have died in Delhi?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/placeOfDeath> <http://dbpedia.org/resource/Delhi> . ?x <http://dbpedia.org/property/party> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/Delhi", "surface form": "Delhi"}], "relations": [{"URI": "http://dbpedia.org/ontology/part", "surface form": "members"}, {"URI": "http://dbpedia.org/ontology/party", "surface form": "political parties"}, {"URI": "http://dbpedia.org/property/deathPlace", "surface form": "died"}]}, {"id": "238", "question": [{"language": "en", "string": "What is the religious affiliation of Neungin High School?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Neungin_High_School> <http://dbpedia.org/property/religiousAffiliation> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Buddhist"}}, "entities": [{"URI": "http://dbpedia.org/resource/Neungin_High_School", "surface form": "Neungin High School"}], "relations": [{"URI": "http://dbpedia.org/property/religiousAffiliation", "surface form": "religious affiliation"}]}, {"id": "239", "question": [{"language": "en", "string": "Who is the owner of the South end ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/The_South_End> <http://dbpedia.org/property/owners> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Wayne_State_University"}}, "entities": [{"URI": "http://dbpedia.org/resource/The_South_End", "surface form": "the South end"}], "relations": [{"URI": "http://dbpedia.org/property/owners", "surface form": "owner"}]}, {"id": "240", "question": [{"language": "en", "string": "What is the colour of Xocolatlite ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Xocolatlite> <http://dbpedia.org/ontology/colour> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chocolate_(color)"}}, "entities": [{"URI": "http://dbpedia.org/resource/Xocolatlite", "surface form": "Xocolatlite"}], "relations": [{"URI": "http://dbpedia.org/ontology/colour", "surface form": "colour"}]}, {"id": "241", "question": [{"language": "en", "string": "For how many other teams have the members of Atlant Moscow Oblast played?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/playedFor> <http://dbpedia.org/resource/Atlant_Moscow_Oblast> . ?x <http://dbpedia.org/ontology/formerTeam> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "594"}}, "entities": [{"URI": "http://dbpedia.org/resource/Atlant_Moscow_Oblast", "surface form": "Atlant Moscow Oblast"}], "relations": [{"URI": "http://dbpedia.org/property/playedFor", "surface form": "team"}, {"URI": "http://dbpedia.org/ontology/formerTeam", "surface form": "teams"}]}, {"id": "242", "question": [{"language": "en", "string": "What kind of games are made by Interplay Entertainment?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/publisher> <http://dbpedia.org/resource/Interplay_Entertainment> . ?x <http://dbpedia.org/property/genre> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/VideoGame>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Simulation_game"}}, "entities": [{"URI": "http://dbpedia.org/resource/Interplay_Entertainment", "surface form": "Interplay Entertainment"}], "relations": [{"URI": "http://dbpedia.org/ontology/games", "surface form": "games"}]}, {"id": "243", "question": [{"language": "en", "string": "Which producer of Purvis Eureka engine is also the owner of Ford Theatre ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Purvis_Eureka> <http://dbpedia.org/property/engine> ?uri. <http://dbpedia.org/resource/Ford_Theatre> <http://dbpedia.org/property/company> ?uri} "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ford_Motor_Company"}}, "entities": [{"URI": "http://dbpedia.org/resource/Purvis_Eureka", "surface form": "Purvis Eureka"}, {"URI": "http://dbpedia.org/resource/Ford_Theatre", "surface form": "Ford Theatre"}], "relations": [{"URI": "http://dbpedia.org/ontology/producer", "surface form": "producer"}, {"URI": "http://dbpedia.org/ontology/owner", "surface form": "owner"}]}, {"id": "244", "question": [{"language": "en", "string": "In which time zone is Pong Pha?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Pong_Pha> <http://dbpedia.org/ontology/timeZone> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Time_in_Thailand"}}, "entities": [{"URI": "http://dbpedia.org/resource/Pong_Pha", "surface form": "Pong Pha"}], "relations": [{"URI": "http://dbpedia.org/ontology/timeZone", "surface form": "time zone"}]}, {"id": "245", "question": [{"language": "en", "string": "How many fictional characters are there in a series in which Craig Robinson acted?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/starring> <http://dbpedia.org/resource/Craig_Robinson_(actor)> . ?uri <http://dbpedia.org/ontology/series> ?x . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/FictionalCharacter>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "14"}}, "entities": [{"URI": "http://dbpedia.org/resource/Craig_Robinson_(actor)", "surface form": "Craig Robinson"}], "relations": [{"URI": "http://dbpedia.org/ontology/series", "surface form": "series"}, {"URI": "http://dbpedia.org/property/attend", "surface form": "acted"}]}, {"id": "246", "question": [{"language": "en", "string": "Who owns the airport in Paphos?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/city> <http://dbpedia.org/resource/Paphos_District> . ?x <http://dbpedia.org/property/owner> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Airport>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Republic_of_Cyprus"}}, "entities": [{"URI": "http://dbpedia.org/resource/Paphos_District", "surface form": "Paphos"}], "relations": [{"URI": "http://dbpedia.org/ontology/family", "surface form": "owns"}, {"URI": "http://dbpedia.org/ontology/targetAirport", "surface form": "airport"}]}, {"id": "247", "question": [{"language": "en", "string": "Which bacteria's taxonomic class is Bacilli?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/class> <http://dbpedia.org/resource/Bacilli> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Bacteria>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Aeribacillus"}}, "entities": [{"URI": "http://dbpedia.org/resource/Bacteria", "surface form": "Bacteria"}, {"URI": "http://dbpedia.org/resource/Class_(biology)", "surface form": " taxonomic class"}, {"URI": "http://dbpedia.org/resource/Bacilli", "surface form": "Bacilli"}], "relations": []}, {"id": "248", "question": [{"language": "en", "string": "What honours did Reigh Count receive?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Reigh_Count> <http://dbpedia.org/ontology/honours> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kentucky"}}, "entities": [{"URI": "http://dbpedia.org/resource/Reigh_Count", "surface form": "Reigh Count"}], "relations": [{"URI": "http://dbpedia.org/ontology/honours", "surface form": "honours"}, {"URI": "http://dbpedia.org/ontology/board", "surface form": "receive"}]}, {"id": "249", "question": [{"language": "en", "string": "What is the television show whose related with Doctor Who Confidential?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/related> <http://dbpedia.org/resource/Doctor_Who_Confidential> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Torchwood_Declassified"}}, "entities": [{"URI": "http://dbpedia.org/resource/Doctor_Who_Confidential", "surface form": "Doctor Who Confidential"}], "relations": [{"URI": "http://dbpedia.org/ontology/related", "surface form": "related"}, {"URI": "http://dbpedia.org/ontology/TelevisionShow", "surface form": "television show"}]}, {"id": "250", "question": [{"language": "en", "string": "In which city wasThe Triple Door (The Courage album) performed live?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Live_at_The_Triple_Door_(The_Courage_album)> <http://dbpedia.org/property/recorded> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Seattle,_Washington"}}, "entities": [{"URI": "http://dbpedia.org/resource/Live_at_The_Triple_Door_(The_Courage_album)", "surface form": "city wasThe Triple Door (The Courage album)"}], "relations": [{"URI": "http://dbpedia.org/ontology/artist", "surface form": "performed"}, {"URI": "http://dbpedia.org/ontology/languageFamily", "surface form": "live"}]}, {"id": "251", "question": [{"language": "en", "string": "Which nearest city of Jurgens Site is the death plce of Jimmie Heuga ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Jurgens_Site> <http://dbpedia.org/property/nearestCity> ?uri. <http://dbpedia.org/resource/Jimmie_Heuga> <http://dbpedia.org/property/deathPlace> ?uri} "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Colorado"}}, "entities": [{"URI": "http://dbpedia.org/resource/Jurgens_Site", "surface form": "Jurgens Site"}, {"URI": "http://dbpedia.org/resource/Jimmie_Heuga", "surface form": "Jimmie Heuga"}], "relations": [{"URI": "http://dbpedia.org/property/nearestCity", "surface form": "nearest city"}, {"URI": "http://dbpedia.org/property/deathPlace", "surface form": "death"}]}, {"id": "252", "question": [{"language": "en", "string": "List the battles fought by Ali Habib Mahmud ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Ali_Habib_Mahmud> <http://dbpedia.org/property/battles> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lebanese_Civil_War"}}, "entities": [{"URI": "http://dbpedia.org/resource/Ali_Habib_Mahmud", "surface form": "Ali Habib Mahmud"}], "relations": [{"URI": "http://dbpedia.org/ontology/battle", "surface form": "battles"}, {"URI": "http://dbpedia.org/ontology/type", "surface form": "fought"}]}, {"id": "253", "question": [{"language": "en", "string": "How many companies were started in the states?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE {?uri <http://dbpedia.org/ontology/foundationPlace> <http://dbpedia.org/resource/United_States> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Company>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "8"}}, "entities": [{"URI": "http://dbpedia.org/resource/Companies_listed_on_the_New_York_Stock_Exchange_(J)", "surface form": "companies"}], "relations": [{"URI": "http://dbpedia.org/ontology/source", "surface form": "started"}]}, {"id": "254", "question": [{"language": "en", "string": "How many movies are distributed by Cinema International Corporation?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE {?uri <http://dbpedia.org/ontology/distributor> <http://dbpedia.org/resource/Cinema_International_Corporation> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "53"}}, "entities": [{"URI": "http://dbpedia.org/resource/Cinema_International_Corporation", "surface form": "Cinema International Corporation"}], "relations": [{"URI": "http://dbpedia.org/ontology/distributor", "surface form": "distributed by"}, {"URI": "http://dbpedia.org/ontology/Film", "surface form": "movie"}]}, {"id": "255", "question": [{"language": "en", "string": "To which educational institute does Cornell University Press belong to?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Cornell_University_Press> <http://dbpedia.org/ontology/parentCompany> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cornell_University"}}, "entities": [{"URI": "http://dbpedia.org/resource/Cornell_University_Press", "surface form": "Cornell University Press"}], "relations": [{"URI": "http://dbpedia.org/ontology/university", "surface form": "educational institute"}, {"URI": "http://dbpedia.org/ontology/date", "surface form": "belong"}]}, {"id": "256", "question": [{"language": "en", "string": "In which country's cuisine, ham is an important part?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/mainIngredient> <http://dbpedia.org/resource/Ham> . ?x <http://dbpedia.org/property/country> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bulgaria"}}, "entities": [{"URI": "http://dbpedia.org/resource/Ham", "surface form": "ham"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": "country"}]}, {"id": "257", "question": [{"language": "en", "string": "List the softwares which runs on Microsoft Windows and has license as Software as a service?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/operatingSystem> <http://dbpedia.org/resource/Microsoft_Windows> . ?uri <http://dbpedia.org/ontology/license> <http://dbpedia.org/resource/Software_as_a_service> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Software>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Anaconda_(Python_distribution)"}}, "entities": [{"URI": "http://dbpedia.org/resource/Software", "surface form": "softwares"}, {"URI": "http://dbpedia.org/resource/Microsoft_Windows", "surface form": "Microsoft Windows"}, {"URI": "http://dbpedia.org/resource/Software", "surface form": "Software"}], "relations": [{"URI": "http://dbpedia.org/ontology/symbol", "surface form": "runs"}, {"URI": "http://dbpedia.org/ontology/license", "surface form": "license"}, {"URI": "http://dbpedia.org/ontology/industry", "surface form": "service"}]}, {"id": "258", "question": [{"language": "en", "string": "Who all have been presenters on shows by the NBC?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/channel> <http://dbpedia.org/resource/NBC> . ?x <http://dbpedia.org/property/presenter> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nate_Berkus"}}, "entities": [{"URI": "http://dbpedia.org/resource/NBC", "surface form": "NBC"}], "relations": [{"URI": "http://dbpedia.org/ontology/presenter", "surface form": "presenters"}, {"URI": "http://dbpedia.org/ontology/place", "surface form": "shows"}]}, {"id": "259", "question": [{"language": "en", "string": "Give me the list of cars which are the predecessor of Full Sized Cars?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/class> <http://dbpedia.org/resource/Full-size_car> . ?x <http://dbpedia.org/ontology/predecessor> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Automobile>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Austin_Westminster"}}, "entities": [{"URI": "http://dbpedia.org/resource/Man-Sized_Wreath", "surface form": "Full Sized Cars"}], "relations": [{"URI": "http://dbpedia.org/ontology/management", "surface form": "cars"}, {"URI": "http://dbpedia.org/ontology/predecessor", "surface form": "predecessor"}]}, {"id": "260", "question": [{"language": "en", "string": "What are some software which are written in languages that are run on Unix like OS?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/operatingSystem> <http://dbpedia.org/resource/Unix-like> . ?uri <http://dbpedia.org/property/programmingLanguage> ?x . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Software>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Leafpad"}}, "entities": [{"URI": "http://dbpedia.org/resource/Software_Publishing_Corporation", "surface form": "software"}, {"URI": "http://dbpedia.org/resource/OS", "surface form": "OS"}, {"URI": "http://dbpedia.org/resource/Unix", "surface form": "Unix like"}], "relations": [{"URI": "http://dbpedia.org/ontology/fate", "surface form": "written"}, {"URI": "http://dbpedia.org/ontology/language", "surface form": "languages"}, {"URI": "http://dbpedia.org/property/work", "surface form": "run"}]}, {"id": "261", "question": [{"language": "en", "string": "List all the movies whose directors were born in Kenosha, Wisconsin?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/birthPlace> <http://dbpedia.org/resource/Kenosha,_Wisconsin> . ?uri <http://dbpedia.org/property/director> ?x . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Village_of_the_Giants"}}, "entities": [{"URI": "http://dbpedia.org/resource/Kenosha,_Wisconsin", "surface form": "Kenosha, Wisconsin"}], "relations": [{"URI": "http://dbpedia.org/ontology/birthPlace", "surface form": "born in"}, {"URI": "http://dbpedia.org/property/director", "surface form": "director"}]}, {"id": "262", "question": [{"language": "en", "string": "Under which presidents have politicians from the Continental army served?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/branch> <http://dbpedia.org/resource/Continental_Army> . ?x <http://dbpedia.org/property/president> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/George_Washington"}}, "entities": [{"URI": "http://dbpedia.org/resource/Politicians_of_The_Wire", "surface form": "politicians"}, {"URI": "http://dbpedia.org/resource/Continental_Army", "surface form": "Continental army"}], "relations": [{"URI": "http://dbpedia.org/ontology/leader", "surface form": "presidents"}, {"URI": "http://dbpedia.org/ontology/regionServed", "surface form": "served"}]}, {"id": "263", "question": [{"language": "en", "string": "Philadelphia City Council is the governing body of which city?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/governingBody> <http://dbpedia.org/resource/Philadelphia_City_Council> } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Philadelphia"}}, "entities": [{"URI": "http://dbpedia.org/resource/Philadelphia_City_Council", "surface form": "philadelphia City Council"}], "relations": [{"URI": "http://dbpedia.org/ontology/governingBody", "surface form": "governing"}, {"URI": "http://dbpedia.org/ontology/assembly", "surface form": "body"}, {"URI": "http://dbpedia.org/ontology/city", "surface form": "city"}]}, {"id": "264", "question": [{"language": "en", "string": "Name the movie which has music composed by Elliot Goldenthal and screenplay by Akiva Goldsman ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/music> <http://dbpedia.org/resource/Elliot_Goldenthal> . ?uri <http://dbpedia.org/property/screenplay> <http://dbpedia.org/resource/Akiva_Goldsman> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/A_Time_to_Kill_(1996_film)"}}, "entities": [{"URI": "http://dbpedia.org/resource/Elliot_Goldenthal", "surface form": "Elliot Goldenthal"}, {"URI": "http://dbpedia.org/resource/Akiva_Goldsman", "surface form": "Akiva Goldsman"}], "relations": [{"URI": "http://dbpedia.org/property/name", "surface form": "name"}, {"URI": "http://dbpedia.org/ontology/picture", "surface form": "movie"}, {"URI": "http://dbpedia.org/ontology/musicComposer", "surface form": "music"}, {"URI": "http://dbpedia.org/ontology/musicComposer", "surface form": "composed"}, {"URI": "http://dbpedia.org/property/screenplay", "surface form": "screenplay"}]}, {"id": "265", "question": [{"language": "en", "string": "Name the fictional character whose relative are Duck family and Clan McDuck?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/relative> <http://dbpedia.org/resource/Duck_family_(Disney)> . ?uri <http://dbpedia.org/property/relatives> <http://dbpedia.org/resource/Clan_McDuck> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/FictionalCharacter>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Della_Duck"}}, "entities": [{"URI": "http://dbpedia.org/resource/Duck_family", "surface form": "Duck family"}, {"URI": "http://dbpedia.org/resource/Clan_McDuck", "surface form": "Clan McDuck"}], "relations": [{"URI": "http://dbpedia.org/property/name", "surface form": "name"}, {"URI": "http://dbpedia.org/ontology/status", "surface form": "fictional character"}, {"URI": "http://dbpedia.org/ontology/relative", "surface form": "relative"}]}, {"id": "266", "question": [{"language": "en", "string": "Which state does Jerome B. Chaffee belong ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Jerome_B._Chaffee> <http://dbpedia.org/property/state> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Colorado"}}, "entities": [{"URI": "http://dbpedia.org/resource/Jerome_B._Chaffee", "surface form": "Jerome B. Chaffee"}], "relations": [{"URI": "http://dbpedia.org/property/state", "surface form": "state"}]}, {"id": "267", "question": [{"language": "en", "string": "What awards are won by the screenwriter of Lucky You?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Lucky_You_(film)> <http://dbpedia.org/property/screenplay> ?x . ?x <http://dbpedia.org/ontology/award> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Academy_Awards"}}, "entities": [{"URI": "http://dbpedia.org/resource/Lucky_You_(film)", "surface form": "Lucky You"}], "relations": [{"URI": "http://dbpedia.org/property/screenplay", "surface form": "screenwriter"}, {"URI": "http://dbpedia.org/ontology/award", "surface form": "awards"}]}, {"id": "268", "question": [{"language": "en", "string": "Name the Pole driver of 1994 Spanish Grand Prix ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/1994_Spanish_Grand_Prix> <http://dbpedia.org/property/poleDriver> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Michael_Schumacher"}}, "entities": [{"URI": "http://dbpedia.org/resource/1994_Spanish_Grand_Prix", "surface form": "1994 Spanish Grand Prix"}], "relations": [{"URI": "http://dbpedia.org/property/poleDriver", "surface form": "Pole driver"}]}, {"id": "269", "question": [{"language": "en", "string": "What is the parent company of the airline whose hub is in Detroit?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/hubs> <http://dbpedia.org/resource/Detroit> . ?x <http://dbpedia.org/ontology/parentCompany> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Airline>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ford_Motor_Company"}}, "entities": [{"URI": "http://dbpedia.org/resource/Detroit", "surface form": "Detroit"}], "relations": [{"URI": "http://dbpedia.org/ontology/parentCompany", "surface form": "parent company"}, {"URI": "http://dbpedia.org/ontology/icaoAirlineCode", "surface form": "airline"}, {"URI": "http://dbpedia.org/property/centre", "surface form": "hub"}]}, {"id": "270", "question": [{"language": "en", "string": "Give me all magazines whose founder died in Berkeley, California?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/deathPlace> <http://dbpedia.org/resource/Berkeley,_California> . ?uri <http://dbpedia.org/ontology/founder> ?x . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Magazine>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rolling_Stone"}}, "entities": [{"URI": "http://dbpedia.org/resource/Berkeley,_California", "surface form": "Berkeley, California"}], "relations": [{"URI": "http://dbpedia.org/ontology/title", "surface form": "magazines"}, {"URI": "http://dbpedia.org/ontology/founder", "surface form": "founder"}, {"URI": "http://dbpedia.org/property/deathPlace", "surface form": "died"}]}, {"id": "271", "question": [{"language": "en", "string": "Which technological products were manufactured by Foxconn?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/manufacturer> <http://dbpedia.org/resource/Foxconn> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/InformationAppliance>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Amazon_Fire_TV"}}, "entities": [{"URI": "http://dbpedia.org/resource/Technology", "surface form": "technological products"}, {"URI": "http://dbpedia.org/resource/Foxconn", "surface form": "Foxconn"}], "relations": [{"URI": "http://dbpedia.org/ontology/manufacturer", "surface form": "manufactured"}]}, {"id": "272", "question": [{"language": "en", "string": "Whose predecessor had Jenny Macklin as a deputy ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/deputy> <http://dbpedia.org/resource/Jenny_Macklin> . ?uri <http://dbpedia.org/property/predecessor> ?x . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kim_Beazley"}}, "entities": [{"URI": "http://dbpedia.org/resource/Jenny_Macklin", "surface form": "Jenny Macklin"}], "relations": [{"URI": "http://dbpedia.org/ontology/predecessor", "surface form": "predecessor"}, {"URI": "http://dbpedia.org/ontology/deputy", "surface form": "deputy"}]}, {"id": "273", "question": [{"language": "en", "string": "How many cars are similar to the ones assembled in the Jefferson North Assembly?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/assembly> <http://dbpedia.org/resource/Jefferson_North_Assembly> . ?x <http://dbpedia.org/property/related> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "199"}}, "entities": [{"URI": "http://dbpedia.org/resource/Jefferson_North_Assembly", "surface form": "Jefferson North Assembly"}], "relations": [{"URI": "http://dbpedia.org/ontology/management", "surface form": "cars"}, {"URI": "http://dbpedia.org/property/assembly", "surface form": "assembled"}]}, {"id": "274", "question": [{"language": "en", "string": "Count the number of region of AN/FSQ-7 Combat Direction Central?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { <http://dbpedia.org/resource/AN/FSQ-7_Combat_Direction_Central> <http://dbpedia.org/ontology/region> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/AN/FSQ-7_Combat_Direction_Central", "surface form": "AN/FSQ-7"}, {"URI": "http://dbpedia.org/resource/AN/FSQ-7_Combat_Direction_Central", "surface form": "Combat Direction Central"}], "relations": [{"URI": "http://dbpedia.org/resource/AN/FSQ-7_Combat_Direction_Central", "surface form": "direction central combat"}, {"URI": "http://dbpedia.org/ontology/region", "surface form": "region"}]}, {"id": "275", "question": [{"language": "en", "string": "From how many different places have people gone to the Harward Medical School?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/institution> <http://dbpedia.org/resource/Harvard_Medical_School> . ?x <http://dbpedia.org/ontology/birthPlace> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "139"}}, "entities": [{"URI": "http://dbpedia.org/resource/Harvard_Medical_School", "surface form": "Harward Medical School"}], "relations": [{"URI": "http://dbpedia.org/ontology/height", "surface form": "places"}]}, {"id": "276", "question": [{"language": "en", "string": "What are Jerry Bock's musicals based upon?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/music> <http://dbpedia.org/resource/Jerry_Bock> . ?x <http://dbpedia.org/ontology/basedOn> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Musical>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sholem_Aleichem"}}, "entities": [{"URI": "http://dbpedia.org/resource/Jerry_Bock", "surface form": "Jerry Bock"}], "relations": [{"URI": "http://dbpedia.org/ontology/show", "surface form": " musicals"}, {"URI": "http://dbpedia.org/ontology/relative", "surface form": "based"}]}, {"id": "277", "question": [{"language": "en", "string": "Give me list of people who were the first to climb a peak in the Yosemite park?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/locatedInArea> <http://dbpedia.org/resource/Yosemite_National_Park> . ?x <http://dbpedia.org/ontology/firstAscentPerson> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Glen_Dawson_(mountaineer)"}}, "entities": [{"URI": "http://dbpedia.org/resource/Yosemite_National_Park", "surface form": "Yosemite park"}], "relations": [{"URI": "http://dbpedia.org/property/scale", "surface form": "climb"}, {"URI": "http://dbpedia.org/ontology/language", "surface form": "peak"}]}, {"id": "278", "question": [{"language": "en", "string": "What is the successor of PlayStation 4"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/successor> <http://dbpedia.org/resource/PlayStation_4> . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/PlayStation_3"}}, "entities": [{"URI": "http://dbpedia.org/resource/PlayStation_4", "surface form": "PlayStation 4"}], "relations": [{"URI": "http://dbpedia.org/ontology/successor", "surface form": "successor"}]}, {"id": "279", "question": [{"language": "en", "string": "What is the total number of professions in which someone who has suicided worked?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/deathCause> <http://dbpedia.org/resource/Suicide> . ?x <http://dbpedia.org/ontology/occupation> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "71"}}, "entities": [{"URI": "http://dbpedia.org/resource/Suicide", "surface form": "suicide"}], "relations": [{"URI": "http://dbpedia.org/ontology/result", "surface form": "total"}, {"URI": "http://dbpedia.org/ontology/show", "surface form": "professions"}, {"URI": "http://dbpedia.org/property/succeded", "surface form": "suicided"}, {"URI": "http://dbpedia.org/ontology/operator", "surface form": "worked"}]}, {"id": "280", "question": [{"language": "en", "string": "How many golf players are there in Arizona State Sun Devils ?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE {?uri <http://dbpedia.org/ontology/college> <http://dbpedia.org/resource/Arizona_State_Sun_Devils> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/GolfPlayer>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "7"}}, "entities": [{"URI": "http://dbpedia.org/resource/The_Golf_Players", "surface form": "golf players"}, {"URI": "http://dbpedia.org/resource/Arizona_State_Sun_Devils", "surface form": "Arizona State Sun Devils"}], "relations": []}, {"id": "281", "question": [{"language": "en", "string": "Count the number of characters in Batman Live?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { <http://dbpedia.org/resource/Batman_Live> <http://dbpedia.org/property/characters> ?uri . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/ComicsCharacter>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "11"}}, "entities": [{"URI": "http://dbpedia.org/resource/Batman_Live", "surface form": "Batman Live"}], "relations": [{"URI": "http://dbpedia.org/property/characters", "surface form": "characters"}, {"URI": "http://dbpedia.org/ontology/ComicsCharacter", "surface form": "characters"}]}, {"id": "282", "question": [{"language": "en", "string": "What are some team members of the team based in Camp Nou?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/homeStadium> <http://dbpedia.org/resource/Camp_Nou> . ?x <http://dbpedia.org/property/name> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Francisco_Rodr\u00edguez_Garc\u00eda"}}, "entities": [{"URI": "http://dbpedia.org/resource/Camp_Nou", "surface form": "Camp Nou"}], "relations": [{"URI": "http://dbpedia.org/ontology/languageFamily", "surface form": "team members"}, {"URI": "http://dbpedia.org/ontology/team", "surface form": "team"}, {"URI": "http://dbpedia.org/ontology/relative", "surface form": "based"}]}, {"id": "283", "question": [{"language": "en", "string": "Which universities are also known as the Tulane Green wave?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/nickname> <http://dbpedia.org/resource/Tulane_Green_Wave> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/University>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tulane_Green_Wave_women's_basketball"}}, "entities": [{"URI": "http://dbpedia.org/resource/Universities_Ireland", "surface form": "universities"}, {"URI": "http://dbpedia.org/resource/Tulane_Green_Wave", "surface form": "Tulane Green wave"}], "relations": []}, {"id": "284", "question": [{"language": "en", "string": "What is the location country of Teperberg 1870 ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Teperberg_1870> <http://dbpedia.org/property/locationCountry> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Israel"}}, "entities": [{"URI": "http://dbpedia.org/resource/Teperberg_1870", "surface form": "Teperberg 1870"}], "relations": [{"URI": "http://dbpedia.org/property/locationCountry", "surface form": "location country"}]}, {"id": "285", "question": [{"language": "en", "string": "List the software developed by Shawn Fanning ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/developer> <http://dbpedia.org/resource/Shawn_Fanning> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Software>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Napster"}}, "entities": [{"URI": "http://dbpedia.org/resource/Shawn_Fanning", "surface form": "Shawn Fanning"}], "relations": [{"URI": "http://dbpedia.org/property/developer", "surface form": "developed"}]}, {"id": "286", "question": [{"language": "en", "string": "What is the stylistic origin of the music genres where the Bass guitar is important?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/instruments> <http://dbpedia.org/resource/Bass_guitar> . ?x <http://dbpedia.org/ontology/stylisticOrigin> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/MusicGenre>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Arabic_music"}}, "entities": [{"URI": "http://dbpedia.org/resource/Bass_guitar", "surface form": "Bass guitar"}], "relations": [{"URI": "http://dbpedia.org/property/parent", "surface form": "stylistic origin"}, {"URI": "http://dbpedia.org/ontology/musicComposer", "surface form": "music genres"}]}, {"id": "287", "question": [{"language": "en", "string": "Who was the voice actor of allen walker also gave voice to kimihiro watanuki?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Allen_Walker> <http://dbpedia.org/ontology/voice> ?uri. <http://dbpedia.org/resource/Kimihiro_Watanuki> <http://dbpedia.org/ontology/voice> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Todd_Haberkorn"}}, "entities": [{"URI": "http://dbpedia.org/resource/Allen_Walker", "surface form": "Allen walker"}, {"URI": "http://dbpedia.org/resource/Kimihiro_Watanuki", "surface form": "Kimihiro watanuki"}], "relations": [{"URI": "http://dbpedia.org/ontology/voice", "surface form": "voice actor"}, {"URI": "http://dbpedia.org/ontology/voice", "surface form": "voice"}]}, {"id": "288", "question": [{"language": "en", "string": "What type of engines are utilised by Purvis Eureka?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Purvis_Eureka> <http://dbpedia.org/property/engine> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Volkswagen_air-cooled_engine"}}, "entities": [{"URI": "http://dbpedia.org/resource/Purvis_Eureka", "surface form": "Utilised by Purvis Eureka"}], "relations": [{"URI": "http://dbpedia.org/ontology/type", "surface form": "type"}, {"URI": "http://dbpedia.org/ontology/engine", "surface form": "engines"}]}, {"id": "289", "question": [{"language": "en", "string": "Who were involved in the wars where Jonathan Haskell battled?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Jonathan_Haskell> <http://dbpedia.org/property/battles> ?x . ?x <http://dbpedia.org/property/combatant> ?uri . }"}, "answers": {"uri": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "15"}}, "entities": [{"URI": "http://dbpedia.org/resource/Jonathan_Haskell", "surface form": "Jonathan Haskell"}], "relations": [{"URI": "http://dbpedia.org/ontology/date", "surface form": "involved"}, {"URI": "http://dbpedia.org/ontology/spouse", "surface form": "wars"}, {"URI": "http://dbpedia.org/ontology/battle", "surface form": "battled"}]}, {"id": "290", "question": [{"language": "en", "string": "For which teams did Ryan Powell play for?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Ryan_Powell_(lacrosse)> <http://dbpedia.org/ontology/team> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Syracuse_University"}}, "entities": [{"URI": "http://dbpedia.org/resource/Ryan_Powell_(lacrosse)", "surface form": "Ryan Powell"}], "relations": [{"URI": "http://dbpedia.org/property/team", "surface form": "teams"}, {"URI": "http://dbpedia.org/ontology/team", "surface form": "play"}]}, {"id": "291", "question": [{"language": "en", "string": "Total number of places where people drafted in the detroit pistons have died?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/draftTeam> <http://dbpedia.org/resource/Detroit_Pistons> . ?x <http://dbpedia.org/property/placeOfDeath> ?uri . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Location>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/Detroit_Pistons", "surface form": "detroit pistons"}], "relations": [{"URI": "http://dbpedia.org/ontology/populationTotal", "surface form": "total"}, {"URI": "http://dbpedia.org/ontology/height", "surface form": "places"}, {"URI": "http://dbpedia.org/ontology/draft", "surface form": "drafted"}, {"URI": "http://dbpedia.org/ontology/deathDate", "surface form": "died"}]}, {"id": "292", "question": [{"language": "en", "string": "Name the club of Julie Hastings ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Julie_Hastings> <http://dbpedia.org/ontology/club> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bayview_Golf_&_Country_Club"}}, "entities": [{"URI": "http://dbpedia.org/resource/Julie_Hastings", "surface form": "Julie Hastings"}], "relations": [{"URI": "http://dbpedia.org/property/name", "surface form": "name"}, {"URI": "http://dbpedia.org/ontology/club", "surface form": "club"}]}, {"id": "293", "question": [{"language": "en", "string": "From where does the river Upper Neretva start flowing?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Upper_Neretva> <http://dbpedia.org/ontology/riverMouth> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Adriatic_Sea"}}, "entities": [{"URI": "http://dbpedia.org/resource/NK_Neretva", "surface form": "river Upper Neretva start"}], "relations": [{"URI": "http://dbpedia.org/ontology/riverMouth", "surface form": "river"}]}, {"id": "294", "question": [{"language": "en", "string": "List the newspapers whose offices are situated in 1211 Avenue of the Americas?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/headquarter> <http://dbpedia.org/resource/1211_Avenue_of_the_Americas> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Newspaper>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/New_York_Post"}}, "entities": [{"URI": "http://dbpedia.org/resource/1211_Avenue_of_the_Americas", "surface form": "1211 Avenue of the Americas"}], "relations": [{"URI": "http://dbpedia.org/ontology/position", "surface form": "situated"}]}, {"id": "295", "question": [{"language": "en", "string": "By what style was Providence Chapel, Charlwood made?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Providence_Chapel,_Charlwood> <http://dbpedia.org/property/style> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vernacular_architecture"}}, "entities": [{"URI": "http://dbpedia.org/resource/Providence_Chapel,_Charlwood", "surface form": "Providence Chapel, Charlwood"}], "relations": [{"URI": "http://dbpedia.org/property/style", "surface form": "style"}]}, {"id": "296", "question": [{"language": "en", "string": "For how many PMs did the politician work, whose successor was Kingsley Wood?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { <http://dbpedia.org/resource/Kingsley_Wood> <http://dbpedia.org/ontology/successor> ?x . ?x <http://dbpedia.org/property/primeminister> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/OfficeHolder>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/Piedmontese_language", "surface form": "PMs"}, {"URI": "http://dbpedia.org/resource/Kingsley_Wood", "surface form": "Kingsley Wood"}], "relations": [{"URI": "http://dbpedia.org/property/minister", "surface form": "politician work,"}, {"URI": "http://dbpedia.org/ontology/successor", "surface form": "successor"}]}, {"id": "297", "question": [{"language": "en", "string": "list some companies founded by Jim Harris."}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/foundedBy> <http://dbpedia.org/resource/Jim_Harris_(entrepreneur)> } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Compaq"}}, "entities": [{"URI": "http://dbpedia.org/resource/Companies_listed_on_the_New_York_Stock_Exchange_(J)", "surface form": "companies"}, {"URI": "http://dbpedia.org/resource/Jim_Harris", "surface form": "Jim Harris"}], "relations": [{"URI": "http://dbpedia.org/ontology/foundingYear", "surface form": "founded"}]}, {"id": "298", "question": [{"language": "en", "string": "Give me the total number of employer of the engineers whose one of the employer is McDonnell Aircraft ?"}], "query": {"sparql": " SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/employer> <http://dbpedia.org/resource/McDonnell_Aircraft> . ?x <http://dbpedia.org/ontology/employer> ?uri }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/McDonnell_Aircraft", "surface form": "McDonnell Aircraft"}], "relations": [{"URI": "http://dbpedia.org/ontology/populationTotal", "surface form": "total"}, {"URI": "http://dbpedia.org/ontology/employer", "surface form": "employer"}, {"URI": "http://dbpedia.org/ontology/architect", "surface form": "engineers"}, {"URI": "http://dbpedia.org/ontology/employer", "surface form": "employer"}]}, {"id": "299", "question": [{"language": "en", "string": "How many developers have games where I can hear Lightning McQueen?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { <http://dbpedia.org/resource/Lightning_McQueen> <http://dbpedia.org/ontology/voice> ?x . ?x <http://dbpedia.org/ontology/developer> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "9"}}, "entities": [{"URI": "http://dbpedia.org/resource/I", "surface form": "I"}, {"URI": "http://dbpedia.org/resource/Lightning_McQueen", "surface form": "Lightning McQueen"}], "relations": [{"URI": "http://dbpedia.org/ontology/developer", "surface form": "developers"}, {"URI": "http://dbpedia.org/ontology/games", "surface form": "games"}, {"URI": "http://dbpedia.org/ontology/manager", "surface form": "hear"}]}, {"id": "300", "question": [{"language": "en", "string": "How many record labels publish works of Jazz fusion?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/genre> <http://dbpedia.org/resource/Jazz_fusion> . ?x <http://dbpedia.org/ontology/recordLabel> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "1876"}}, "entities": [{"URI": "http://dbpedia.org/resource/Jazz_fusion", "surface form": "Jazz fusion"}], "relations": [{"URI": "http://dbpedia.org/ontology/background", "surface form": "record labels"}, {"URI": "http://dbpedia.org/ontology/country", "surface form": "publish"}, {"URI": "http://dbpedia.org/ontology/language", "surface form": "works"}]}, {"id": "301", "question": [{"language": "en", "string": "List all the writers of the comics which has Robert Bernstein as one of the writer ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/writers> <http://dbpedia.org/resource/Robert_Bernstein_(comics)> . ?x <http://dbpedia.org/property/writers> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Comic>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Larry_Lieber"}}, "entities": [{"URI": "http://dbpedia.org/resource/Robert_Bernstein_(comics)", "surface form": "Robert Bernstein"}], "relations": [{"URI": "http://dbpedia.org/ontology/writer", "surface form": "writers"}, {"URI": "http://dbpedia.org/ontology/currency", "surface form": "comics"}, {"URI": "http://dbpedia.org/ontology/writer", "surface form": "writer"}]}, {"id": "302", "question": [{"language": "en", "string": "What are the settlements whose neighboring municipalities is Lancy?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/neighboringMunicipalities> <http://dbpedia.org/resource/Lancy> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Settlement>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vernier,_Switzerland"}}, "entities": [{"URI": "http://dbpedia.org/resource/Lancy", "surface form": "Lancy"}], "relations": [{"URI": "http://dbpedia.org/property/neighboringMunicipalities", "surface form": "neighboring municipalities"}, {"URI": "http://dbpedia.org/ontology/Settlement", "surface form": "settlement"}]}, {"id": "303", "question": [{"language": "en", "string": "Count the total number of hometown of the gymnasts whose one of the hometown in Russia ?"}], "query": {"sparql": " SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/hometown> <http://dbpedia.org/resource/Russia> . ?x <http://dbpedia.org/property/hometown> ?uri }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "104"}}, "entities": [{"URI": "http://dbpedia.org/resource/Russia", "surface form": "Russia"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": "count"}, {"URI": "http://dbpedia.org/ontology/populationTotal", "surface form": "total"}, {"URI": "http://dbpedia.org/ontology/hometown", "surface form": "hometown"}, {"URI": "http://dbpedia.org/ontology/athletics", "surface form": "gymnasts"}, {"URI": "http://dbpedia.org/ontology/hometown", "surface form": "hometown"}]}, {"id": "304", "question": [{"language": "en", "string": "Count the PhD students whose thesis are supervised by National Medal of Science winners?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/prizes> <http://dbpedia.org/resource/National_Medal_of_Science> . ?x <http://dbpedia.org/property/doctoralStudents> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "90"}}, "entities": [{"URI": "http://dbpedia.org/resource/National_Medal_of_Science", "surface form": "National Medal of Science"}], "relations": [{"URI": "http://dbpedia.org/ontology/type", "surface form": "count"}, {"URI": "http://dbpedia.org/ontology/ideology", "surface form": "thesis"}, {"URI": "http://dbpedia.org/ontology/head", "surface form": "supervised"}]}, {"id": "305", "question": [{"language": "en", "string": "Count the total number of cast member of the television shows whose actress is Joey McIntyre?"}], "query": {"sparql": " SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/starring> <http://dbpedia.org/resource/Joey_McIntyre> . ?x <http://dbpedia.org/property/starring> ?uri }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "20"}}, "entities": [{"URI": "http://dbpedia.org/resource/Joey_McIntyre", "surface form": "Joey McIntyre"}], "relations": [{"URI": "http://dbpedia.org/property/starring", "surface form": "actress"}, {"URI": "http://dbpedia.org/property/starring", "surface form": "actress"}]}, {"id": "306", "question": [{"language": "en", "string": "List all the awards won by the artist who has won SIGGRAPH ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/award> <http://dbpedia.org/resource/SIGGRAPH> . ?x <http://dbpedia.org/ontology/award> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Association_for_Computing_Machinery"}}, "entities": [{"URI": "http://dbpedia.org/resource/SIGGRAPH", "surface form": "SIGGRAPH"}], "relations": [{"URI": "http://dbpedia.org/ontology/award", "surface form": "awards"}, {"URI": "http://dbpedia.org/ontology/award", "surface form": "won"}, {"URI": "http://dbpedia.org/ontology/artist", "surface form": "artist"}, {"URI": "http://dbpedia.org/ontology/award", "surface form": "won"}]}, {"id": "307", "question": [{"language": "en", "string": "Where was david Scherman trained ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/David_Scherman> <http://dbpedia.org/property/training> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dartmouth_College"}}, "entities": [{"URI": "http://dbpedia.org/resource/David_Scherman", "surface form": "david Scherman"}], "relations": [{"URI": "http://dbpedia.org/ontology/training", "surface form": "trained"}]}, {"id": "308", "question": [{"language": "en", "string": "Count the battles fought by Raoul Magrin-Vernerey?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { <http://dbpedia.org/resource/Raoul_Magrin-Vernerey> <http://dbpedia.org/property/battles> ?uri . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/MilitaryConflict>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "5"}}, "entities": [{"URI": "http://dbpedia.org/resource/Raoul_Magrin-Vernerey", "surface form": "Raoul Magrin-Vernerey"}], "relations": [{"URI": "http://dbpedia.org/property/battles", "surface form": "fought"}]}, {"id": "309", "question": [{"language": "en", "string": "Which athlete was the flag bearer for Switzerland in 2004 and 2008 summer Olympics ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Switzerland_at_the_2004_Summer_Olympics> <http://dbpedia.org/property/flagbearer> ?uri. <http://dbpedia.org/resource/Switzerland_at_the_2008_Summer_Olympics> <http://dbpedia.org/property/flagbearer> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Roger_Federer"}}, "entities": [{"URI": "http://dbpedia.org/resource/Switzerland", "surface form": "Switzerland"}, {"URI": "http://dbpedia.org/resource/2004_OFC_Men's_Olympic_Qualifying_Tournament", "surface form": "2004"}, {"URI": "http://dbpedia.org/resource/2008_Summer_Olympics", "surface form": "2008 summer Olympics"}], "relations": [{"URI": "http://dbpedia.org/ontology/numberOfParticipatingAthletes", "surface form": "athlete"}, {"URI": "http://dbpedia.org/ontology/flag", "surface form": "flag bearer"}]}, {"id": "310", "question": [{"language": "en", "string": "What award was won by the father of Angelina Jolie?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/children> <http://dbpedia.org/resource/Angelina_Jolie> . ?x <http://dbpedia.org/ontology/award> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Medal_of_Arts"}}, "entities": [{"URI": "http://dbpedia.org/resource/Angelina_Jolie", "surface form": "Angelina Jolie"}], "relations": [{"URI": "http://dbpedia.org/ontology/award", "surface form": "award"}, {"URI": "http://dbpedia.org/ontology/parent", "surface form": "won"}, {"URI": "http://dbpedia.org/ontology/parent", "surface form": "father"}]}, {"id": "311", "question": [{"language": "en", "string": "What are the software whose programming language are Multilingual?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/language> <http://dbpedia.org/resource/Multilingualism> . ?uri <http://dbpedia.org/property/programmingLanguage> ?x . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Software>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lutris"}}, "entities": [{"URI": "http://dbpedia.org/resource/Software", "surface form": "software"}, {"URI": "http://dbpedia.org/resource/Multilingual_User_Interface", "surface form": "Multilingual"}], "relations": [{"URI": "http://dbpedia.org/ontology/programmingLanguage", "surface form": "programming language"}]}, {"id": "312", "question": [{"language": "en", "string": "Count all the stateless people"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE {?uri <http://dbpedia.org/ontology/citizenship> <http://dbpedia.org/resource/Statelessness> . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "15"}}, "entities": [], "relations": [{"URI": "http://dbpedia.org/ontology/time", "surface form": "count"}, {"URI": "http://dbpedia.org/ontology/gross", "surface form": "stateless"}]}, {"id": "313", "question": [{"language": "en", "string": "Where did the war take place where one of the commander was Zuo Zongtang?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/commander> <http://dbpedia.org/resource/Zuo_Zongtang> . ?x <http://dbpedia.org/ontology/territory> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/MilitaryConflict>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fujian"}}, "entities": [{"URI": "http://dbpedia.org/resource/Zuo_Zongtang", "surface form": "Zuo Zongtang"}], "relations": [{"URI": "http://dbpedia.org/ontology/battle", "surface form": "war"}, {"URI": "http://dbpedia.org/ontology/place", "surface form": "place"}, {"URI": "http://dbpedia.org/ontology/commander", "surface form": "commander"}]}, {"id": "314", "question": [{"language": "en", "string": "In which place is the company which is known for Barbara bestor located ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Barbara_Bestor> <http://dbpedia.org/property/knownFor> ?x . ?x <http://dbpedia.org/ontology/location> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Company>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chicago"}}, "entities": [{"URI": "http://dbpedia.org/resource/Barbara_Bestor", "surface form": "Barbara bestor"}], "relations": [{"URI": "http://dbpedia.org/ontology/knownFor", "surface form": "known for"}, {"URI": "http://dbpedia.org/ontology/location", "surface form": "located"}]}, {"id": "315", "question": [{"language": "en", "string": "What novels are belong to the genre of Utopian and dystopian fiction?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/literaryGenre> <http://dbpedia.org/resource/Utopian_and_dystopian_fiction> } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/1985_(Burgess_novel)"}}, "entities": [{"URI": "http://dbpedia.org/resource/Utopian_and_dystopian_fiction", "surface form": "Utopian"}], "relations": [{"URI": "http://dbpedia.org/ontology/literaryGenre", "surface form": "genre"}]}, {"id": "316", "question": [{"language": "en", "string": "What are the movies written by Nick Castle?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/writer> <http://dbpedia.org/resource/Nick_Castle> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/August_Rush"}}, "entities": [{"URI": "http://dbpedia.org/resource/Nick_Castle", "surface form": "Nick Castle"}], "relations": [{"URI": "http://dbpedia.org/ontology/writer", "surface form": "written by"}, {"URI": "http://dbpedia.org/ontology/Film", "surface form": "movie"}]}, {"id": "317", "question": [{"language": "en", "string": "On which river are there things belonging to zambezi river authority?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/owner> <http://dbpedia.org/resource/Zambezi_River_Authority> . ?x <http://dbpedia.org/ontology/river> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Zambezi"}}, "entities": [{"URI": "http://dbpedia.org/resource/Zambezi_River_Authority", "surface form": "zambezi river authority"}], "relations": [{"URI": "http://dbpedia.org/ontology/river", "surface form": "river"}, {"URI": "http://dbpedia.org/ontology/affiliation", "surface form": "belonging"}]}, {"id": "318", "question": [{"language": "en", "string": "Who has fought in wars under commander Arthur St Clair?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/commander> <http://dbpedia.org/resource/Arthur_St._Clair> . ?x <http://dbpedia.org/property/combatant> ?uri . }"}, "answers": {"uri": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "1"}}, "entities": [{"URI": "http://dbpedia.org/resource/Lake_St._Clair", "surface form": "commander Arthur St Clair"}], "relations": [{"URI": "http://dbpedia.org/ontology/type", "surface form": "fought"}, {"URI": "http://dbpedia.org/property/battles", "surface form": "wars"}]}, {"id": "319", "question": [{"language": "en", "string": "Which Paramount TV show was produced by Glen and Les Charles ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/executiveProducer> <http://dbpedia.org/resource/Glen_and_Les_Charles> . ?uri <http://dbpedia.org/property/company> <http://dbpedia.org/resource/Paramount_Television> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/All_Is_Forgiven_(TV_series)"}}, "entities": [{"URI": "http://dbpedia.org/resource/Tv_test_pattern", "surface form": "TV"}, {"URI": "http://dbpedia.org/resource/Plaxton_Paramount", "surface form": "Paramount show"}, {"URI": "http://dbpedia.org/resource/Glen", "surface form": "Glen"}, {"URI": "http://dbpedia.org/resource/Glen_and_Les_Charles", "surface form": "Les Charles"}], "relations": [{"URI": "http://dbpedia.org/ontology/manufacturer", "surface form": "produced"}]}, {"id": "320", "question": [{"language": "en", "string": "Name some basketball players who have played for chicago bulls?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/team> <http://dbpedia.org/resource/Chicago_Bulls> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/BasketballPlayer>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alize_Johnson"}}, "entities": [{"URI": "http://dbpedia.org/resource/The_Players_(film)", "surface form": "basketball players"}, {"URI": "http://dbpedia.org/resource/Chicago_Bulls", "surface form": "chicago bulls"}], "relations": [{"URI": "http://dbpedia.org/property/name", "surface form": "name"}, {"URI": "http://dbpedia.org/ontology/coach", "surface form": "played"}]}, {"id": "321", "question": [{"language": "en", "string": "What is the origin of the musical artist of A Todo Romantic Style ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/A_Todo_Romantic_Style> <http://dbpedia.org/property/artist> ?x . ?x <http://dbpedia.org/property/origin> ?uri . }"}, "answers": {"uri": {"type": "literal", "xml:lang": "en", "value": "Chitr\u00e9, Panama"}}, "entities": [{"URI": "http://dbpedia.org/resource/A", "surface form": "A"}, {"URI": "http://dbpedia.org/resource/A_Todo_Romantic_Style", "surface form": "Todo Romantic Style"}], "relations": [{"URI": "http://dbpedia.org/ontology/origin", "surface form": "origin"}, {"URI": "http://dbpedia.org/property/artist", "surface form": "musical artist"}]}, {"id": "322", "question": [{"language": "en", "string": "Horses sired by Karinga Bay have participated in which races?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/sire> <http://dbpedia.org/resource/Karinga_Bay> . ?x <http://dbpedia.org/property/race> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Horse>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Denman_Chase"}}, "entities": [{"URI": "http://dbpedia.org/resource/Karinga_Bay", "surface form": "Karinga Bay"}], "relations": [{"URI": "http://dbpedia.org/ontology/service", "surface form": "horses"}, {"URI": "http://dbpedia.org/ontology/flag", "surface form": "sired"}, {"URI": "http://dbpedia.org/ontology/participant", "surface form": "participated"}, {"URI": "http://dbpedia.org/ontology/races", "surface form": "races"}]}, {"id": "323", "question": [{"language": "en", "string": "What is the alma mater of the scientists known for String theory?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/knownFor> <http://dbpedia.org/resource/String_theory> . ?x <http://dbpedia.org/property/almaMater> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Scientist>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/University_of_Texas_at_Austin"}}, "entities": [{"URI": "http://dbpedia.org/resource/Scientists_for_Global_Responsibility", "surface form": "scientists"}, {"URI": "http://dbpedia.org/resource/String_theory", "surface form": "String theory"}], "relations": [{"URI": "http://dbpedia.org/ontology/school", "surface form": "alma mater"}]}, {"id": "324", "question": [{"language": "en", "string": "How many apes are there?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE {?uri <http://dbpedia.org/ontology/family> <http://dbpedia.org/resource/Ape> . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [], "relations": [{"URI": "http://dbpedia.org/ontology/height", "surface form": "apes"}]}, {"id": "325", "question": [{"language": "en", "string": "Where do beauty queens with brown hair reside?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/hairColor> <http://dbpedia.org/resource/Brown_hair> . ?x <http://dbpedia.org/ontology/residence> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Panama"}}, "entities": [{"URI": "http://dbpedia.org/resource/Beauty_Queens", "surface form": "beauty queens"}, {"URI": "http://dbpedia.org/resource/Brown_hair", "surface form": "brown hair reside"}], "relations": [{"URI": "http://dbpedia.org/property/hairColor", "surface form": "hair"}, {"URI": "http://dbpedia.org/ontology/residence", "surface form": "reside"}]}, {"id": "326", "question": [{"language": "en", "string": "Name the appointer of William Clark ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/William_Clark> <http://dbpedia.org/property/appointer> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/James_Madison"}}, "entities": [{"URI": "http://dbpedia.org/resource/William_Clark", "surface form": "William Clark"}], "relations": [{"URI": "http://dbpedia.org/property/name", "surface form": "name"}, {"URI": "http://dbpedia.org/ontology/appointer", "surface form": "appointer"}]}, {"id": "327", "question": [{"language": "en", "string": "What is the base currency of the Benelux and is also used as money in Kerguelen Islands?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Benelux> <http://dbpedia.org/property/currency> ?uri. <http://dbpedia.org/resource/Kerguelen_Islands> <http://dbpedia.org/ontology/currency> ?uri} "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Euro"}}, "entities": [{"URI": "http://dbpedia.org/resource/Benelux", "surface form": "Benelux"}, {"URI": "http://dbpedia.org/resource/Kerguelen_Islands", "surface form": "Kerguelen Islands"}], "relations": [{"URI": "http://dbpedia.org/ontology/currency", "surface form": "base currency"}, {"URI": "http://dbpedia.org/ontology/currency", "surface form": "money"}]}, {"id": "328", "question": [{"language": "en", "string": "List the mammals whose taxonomy is Diprotodontia and phylum is Chordate?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/order> <http://dbpedia.org/resource/Diprotodontia> . ?uri <http://dbpedia.org/ontology/phylum> <http://dbpedia.org/resource/Chordate> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Mammal>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Phalangerida"}}, "entities": [{"URI": "http://dbpedia.org/resource/Mammals_of_the_Indiana_Dunes", "surface form": "mammals"}, {"URI": "http://dbpedia.org/resource/Diprotodontia", "surface form": "Diprotodontia"}, {"URI": "http://dbpedia.org/resource/Chordate", "surface form": "Chordate"}], "relations": [{"URI": "http://dbpedia.org/ontology/order", "surface form": "taxonomy"}, {"URI": "http://dbpedia.org/ontology/phylum", "surface form": "phylum"}]}, {"id": "329", "question": [{"language": "en", "string": "Count the key people of the Clinton Foundation?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { <http://dbpedia.org/resource/Clinton_Foundation> <http://dbpedia.org/property/keyPeople> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "10"}}, "entities": [{"URI": "http://dbpedia.org/resource/Clinton_Foundation", "surface form": "Clinton Foundation"}], "relations": [{"URI": "http://dbpedia.org/property/keyPeople", "surface form": "key people"}]}, {"id": "330", "question": [{"language": "en", "string": "Music of how many things has been given by Akira Ifukube?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE {?uri <http://dbpedia.org/property/music> <http://dbpedia.org/resource/Akira_Ifukube> . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "56"}}, "entities": [{"URI": "http://dbpedia.org/resource/Akira_Ifukube", "surface form": "Akira Ifukube"}], "relations": [{"URI": "http://dbpedia.org/property/music", "surface form": "Music"}]}, {"id": "331", "question": [{"language": "en", "string": "What was the career of some people who have committed suicide?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/deathCause> <http://dbpedia.org/resource/Suicide> . ?x <http://dbpedia.org/ontology/occupation> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Supermodel"}}, "entities": [{"URI": "http://dbpedia.org/resource/Suicide", "surface form": "suicide"}], "relations": [{"URI": "http://dbpedia.org/ontology/occupation", "surface form": "career"}, {"URI": "http://dbpedia.org/ontology/committee", "surface form": "committed"}]}, {"id": "332", "question": [{"language": "en", "string": "In how many places are the tombs of people who died in Connecticut Colony?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/placeOfDeath> <http://dbpedia.org/resource/Connecticut_Colony> . ?x <http://dbpedia.org/ontology/restingPlace> ?uri . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Place>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/Tombs_of_the_Blind_Dead", "surface form": "tombs"}, {"URI": "http://dbpedia.org/resource/Connecticut_Colony", "surface form": "Connecticut Colony"}], "relations": [{"URI": "http://dbpedia.org/ontology/place", "surface form": "places"}, {"URI": "http://dbpedia.org/property/deathPlace", "surface form": "died"}]}, {"id": "333", "question": [{"language": "en", "string": "List the producer of the television shows distributed by FremantleMedia."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/distributor> <http://dbpedia.org/resource/FremantleMedia> . ?x <http://dbpedia.org/ontology/producer> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jay_Wolpert"}}, "entities": [{"URI": "http://dbpedia.org/resource/FremantleMedia", "surface form": "FremantleMedia"}], "relations": [{"URI": "http://dbpedia.org/ontology/producer", "surface form": "producer"}, {"URI": "http://dbpedia.org/ontology/televisionSeries", "surface form": "television shows"}, {"URI": "http://dbpedia.org/ontology/distributor", "surface form": "distributed"}]}, {"id": "334", "question": [{"language": "en", "string": "Who are the producers of Marie Sisters?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Marie_Sisters> <http://dbpedia.org/property/producer> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Shep_Goodman"}}, "entities": [{"URI": "http://dbpedia.org/resource/Marie_Sisters", "surface form": "Marie Sisters"}], "relations": [{"URI": "http://dbpedia.org/property/producer", "surface form": "producer"}]}, {"id": "335", "question": [{"language": "en", "string": "Who won the silver medal when the bronze was won by Yang Yilin?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/bronzeMedalist> <http://dbpedia.org/resource/Yang_Yilin> . ?x <http://dbpedia.org/ontology/silverMedalist> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nastia_Liukin"}}, "entities": [{"URI": "http://dbpedia.org/resource/Yang_Yilin", "surface form": "Yang Yilin"}], "relations": [{"URI": "http://dbpedia.org/ontology/city", "surface form": "won"}, {"URI": "http://dbpedia.org/ontology/title", "surface form": "silver medal"}, {"URI": "http://dbpedia.org/ontology/bronzeMedalist", "surface form": "bronze"}, {"URI": "http://dbpedia.org/ontology/city", "surface form": "won"}]}, {"id": "336", "question": [{"language": "en", "string": "List the successor of successor of Hayden, Stone & Co."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Hayden,_Stone_&_Co.> <http://dbpedia.org/ontology/successor> ?x . ?x <http://dbpedia.org/ontology/successor> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/American_Express"}}, "entities": [{"URI": "http://dbpedia.org/resource/Hayden,_Stone_&_Co.", "surface form": "Hayden, Stone & Co"}], "relations": [{"URI": "http://dbpedia.org/ontology/successor", "surface form": "successor"}, {"URI": "http://dbpedia.org/ontology/successor", "surface form": "successor"}]}, {"id": "337", "question": [{"language": "en", "string": "Count the number of battles fought by the military person involved in Morocco ?"}], "query": {"sparql": " SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/battles> <http://dbpedia.org/resource/Morocco> . ?x <http://dbpedia.org/property/battles> ?uri }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "8"}}, "entities": [{"URI": "http://dbpedia.org/resource/Morocco", "surface form": "Morocco"}], "relations": [{"URI": "http://dbpedia.org/property/battles", "surface form": "battles"}, {"URI": "http://dbpedia.org/property/battles", "surface form": "battles"}]}, {"id": "338", "question": [{"language": "en", "string": "What is the origin of Xynisteri?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Xynisteri> <http://dbpedia.org/ontology/origin> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cyprus"}}, "entities": [{"URI": "http://dbpedia.org/resource/Xynisteri", "surface form": "Xynisteri"}], "relations": [{"URI": "http://dbpedia.org/ontology/origin", "surface form": "origin"}]}, {"id": "339", "question": [{"language": "en", "string": "How many important works have been done by Russel Davies?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { <http://dbpedia.org/resource/Russell_T_Davies> <http://dbpedia.org/ontology/notableWork> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/Russell_T_Davies", "surface form": "Russel Davies"}], "relations": [{"URI": "http://dbpedia.org/ontology/notableWork", "surface form": "works"}]}, {"id": "340", "question": [{"language": "en", "string": "Who are currently playing for Barcelona FC?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/currentclub> <http://dbpedia.org/resource/FC_Barcelona> } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Andreas_Christensen"}}, "entities": [{"URI": "http://dbpedia.org/resource/FC", "surface form": "FC"}, {"URI": "http://dbpedia.org/resource/Barcelona", "surface form": "Barcelona"}], "relations": [{"URI": "http://dbpedia.org/ontology/field", "surface form": "playing"}]}, {"id": "341", "question": [{"language": "en", "string": "Who is the owner of Saumarez ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Saumarez_(horse)> <http://dbpedia.org/ontology/owner> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Wayne_Gretzky"}}, "entities": [{"URI": "http://dbpedia.org/resource/Saumarez_(horse)", "surface form": "Saumarez"}], "relations": [{"URI": "http://dbpedia.org/ontology/owner", "surface form": "owner"}]}, {"id": "342", "question": [{"language": "en", "string": "What is telecasted on the network where Deborah Turness holds important position?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/keyPerson> <http://dbpedia.org/resource/Deborah_Turness> . ?uri <http://dbpedia.org/ontology/network> ?x . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/BBC_Pop_Up"}}, "entities": [{"URI": "http://dbpedia.org/resource/Deborah_Turness", "surface form": "Deborah Turness"}], "relations": [{"URI": "http://dbpedia.org/ontology/transmission", "surface form": "telecasted"}, {"URI": "http://dbpedia.org/ontology/network", "surface form": "network"}, {"URI": "http://dbpedia.org/ontology/title", "surface form": "holds"}, {"URI": "http://dbpedia.org/ontology/position", "surface form": "position"}]}, {"id": "343", "question": [{"language": "en", "string": "How many home stadium are there, of the soccer club seasons whose chairman is Merritt Paulson?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/chairman> <http://dbpedia.org/resource/Merritt_Paulson> . ?x <http://dbpedia.org/ontology/homeStadium> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "66"}}, "entities": [{"URI": "http://dbpedia.org/resource/Mooroolbark_Soccer_Club", "surface form": "soccer club seasons"}, {"URI": "http://dbpedia.org/resource/Merritt_Paulson", "surface form": "Merritt Paulson"}], "relations": [{"URI": "http://dbpedia.org/property/chairman", "surface form": "chairman"}, {"URI": "http://dbpedia.org/ontology/homeStadium", "surface form": "home stadium"}]}, {"id": "344", "question": [{"language": "en", "string": "Name the alma mater of Ernest de Saisset ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Ernest_de_Saisset> <http://dbpedia.org/ontology/almaMater> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Santa_Clara_University"}}, "entities": [{"URI": "http://dbpedia.org/resource/Ernest_de_Saisset", "surface form": "Ernest de Saisset"}], "relations": [{"URI": "http://dbpedia.org/property/name", "surface form": "name"}, {"URI": "http://dbpedia.org/ontology/almaMater", "surface form": "alma mater"}]}, {"id": "345", "question": [{"language": "en", "string": "What magazine companies are of form Limited liability company?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/company> <http://dbpedia.org/resource/Limited_liability_company> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Magazine>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Milford_Magazine"}}, "entities": [{"URI": "http://dbpedia.org/resource/Limited_liability_company", "surface form": "form Limited liability company"}], "relations": [{"URI": "http://dbpedia.org/property/company", "surface form": "company"}, {"URI": "http://dbpedia.org/ontology/Magazine", "surface form": "magazine"}]}, {"id": "346", "question": [{"language": "en", "string": "List the driver of SA MArino Grand Prix is also the Pole driver of Canadian Grand Proix ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/1999_San_Marino_Grand_Prix> <http://dbpedia.org/property/firstDriver> ?uri. <http://dbpedia.org/resource/1997_Canadian_Grand_Prix> <http://dbpedia.org/property/poleDriver> ?uri} "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Michael_Schumacher"}}, "entities": [{"URI": "http://dbpedia.org/resource/Saudi_Arabia", "surface form": "SA"}, {"URI": "http://dbpedia.org/resource/Poland", "surface form": "Pole driver of Canadian Grand Proix MArino Grand Prix"}, {"URI": "http://dbpedia.org/resource/2008_Canadian_Grand_Prix", "surface form": "Pole driver of Canadian Grand Proix MArino Grand Prix"}], "relations": [{"URI": "http://dbpedia.org/ontology/poleDriver", "surface form": "driver"}, {"URI": "http://dbpedia.org/ontology/country", "surface form": ""}]}, {"id": "347", "question": [{"language": "en", "string": "Where does John A Danaher III work?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/John_A._Danaher_III> <http://dbpedia.org/property/office> ?uri } "}, "answers": {"uri": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "47"}}, "entities": [{"URI": "http://dbpedia.org/resource/A", "surface form": "A"}, {"URI": "http://dbpedia.org/resource/John_A._Danaher_III", "surface form": "John Danaher III work"}, {"URI": "http://dbpedia.org/resource/III", "surface form": "III"}, {"URI": "http://dbpedia.org/resource/John_A._Danaher", "surface form": "John A Danaher work"}], "relations": []}, {"id": "348", "question": [{"language": "en", "string": "Name few movies directed by Tim Burton ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/director> <http://dbpedia.org/resource/Tim_Burton> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dark_Shadows_(film)"}}, "entities": [{"URI": "http://dbpedia.org/resource/Tim_Burton", "surface form": "Tim Burton"}], "relations": [{"URI": "http://dbpedia.org/property/director", "surface form": "directed"}, {"URI": "http://dbpedia.org/ontology/Film", "surface form": "movie"}]}, {"id": "349", "question": [{"language": "en", "string": "Name all the bands which have members of QDT in them."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/QDT> <http://dbpedia.org/ontology/bandMember> ?x . ?x <http://dbpedia.org/ontology/associatedBand> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/James_DeBarge"}}, "entities": [{"URI": "http://dbpedia.org/resource/QDT", "surface form": "QDT"}], "relations": [{"URI": "http://dbpedia.org/ontology/name", "surface form": "name"}, {"URI": "http://dbpedia.org/ontology/staff", "surface form": "bands"}, {"URI": "http://dbpedia.org/ontology/family", "surface form": "members"}]}, {"id": "350", "question": [{"language": "en", "string": "List the names of the soccer club seasons whose division is 2012 Campeonato Brasileiro Srie A."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/league> <http://dbpedia.org/resource/2012_Campeonato_Brasileiro_S\u00e9rie_A> . ?x <http://dbpedia.org/property/name> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/SoccerClubSeason>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ded\u00e9_(footballer,_born_1988)"}}, "entities": [{"URI": "http://dbpedia.org/resource/Association_football_club_names", "surface form": "soccer club seasons"}, {"URI": "http://dbpedia.org/resource/A", "surface form": "A"}, {"URI": "http://dbpedia.org/resource/Campeonato_Brasileiro", "surface form": "2012 Campeonato Brasileiro Srie"}], "relations": [{"URI": "http://dbpedia.org/ontology/title", "surface form": "names"}, {"URI": "http://dbpedia.org/ontology/division", "surface form": "division"}]}, {"id": "351", "question": [{"language": "en", "string": "Which successor of Philippine Ports Authority is the state of origin of Ruben J. Villote ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Philippine_Ports_Authority> <http://dbpedia.org/ontology/successor> ?uri. <http://dbpedia.org/resource/Ruben_J._Villote> <http://dbpedia.org/ontology/stateOfOrigin> ?uri} "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Philippines"}}, "entities": [{"URI": "http://dbpedia.org/resource/Philippine_Ports_Authority", "surface form": "Philippine Ports Authority"}, {"URI": "http://dbpedia.org/resource/J", "surface form": "J"}, {"URI": "http://dbpedia.org/resource/Ruben_J._Villote", "surface form": "Ruben Villote"}], "relations": [{"URI": "http://dbpedia.org/ontology/successor", "surface form": "successor"}, {"URI": "http://dbpedia.org/ontology/origin", "surface form": "origin"}]}, {"id": "352", "question": [{"language": "en", "string": "What awards have been won by the executive producer of Timmy Time ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Timmy_Time> <http://dbpedia.org/ontology/executiveProducer> ?x . ?x <http://dbpedia.org/ontology/award> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Academy_Awards"}}, "entities": [{"URI": "http://dbpedia.org/resource/Timmy_Time", "surface form": "Timmy Time"}], "relations": [{"URI": "http://dbpedia.org/ontology/executiveProducer", "surface form": "executive producer"}, {"URI": "http://dbpedia.org/ontology/award", "surface form": "awards"}]}, {"id": "353", "question": [{"language": "en", "string": "Who is the prime minister of Michael Jeffery who is also the minister of Williuam Deane ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Michael_Jeffery> <http://dbpedia.org/property/primeminister> ?uri. <http://dbpedia.org/resource/William_Deane> <http://dbpedia.org/ontology/primeMinister> ?uri} "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/John_Howard"}}, "entities": [{"URI": "http://dbpedia.org/resource/Michael_Jeffery", "surface form": "Michael Jeffery"}, {"URI": "http://dbpedia.org/resource/Philippe_Gigant\u00e8s", "surface form": "Williuam Deane"}], "relations": [{"URI": "http://dbpedia.org/ontology/primeMinister", "surface form": "prime minister"}, {"URI": "http://dbpedia.org/ontology/primeMinister", "surface form": "minister"}]}, {"id": "354", "question": [{"language": "en", "string": "Who is the owner of the FC which owns the Cobham Training Centre?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Cobham_Training_Centre> <http://dbpedia.org/property/owner> ?x . ?x <http://dbpedia.org/property/owner> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/SoccerClub>}"}, "answers": {"uri": {"type": "literal", "xml:lang": "en", "value": "BlueCo 22 Limited"}}, "entities": [{"URI": "http://dbpedia.org/resource/FC", "surface form": "FC"}, {"URI": "http://dbpedia.org/resource/Cobham_Training_Centre", "surface form": "Cobham Training Centre"}], "relations": [{"URI": "http://dbpedia.org/ontology/owner", "surface form": "owner"}, {"URI": "http://dbpedia.org/ontology/languageFamily", "surface form": "owns"}]}, {"id": "355", "question": [{"language": "en", "string": "What have some US citizens died of?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/citizenship> <http://dbpedia.org/resource/United_States> . ?x <http://dbpedia.org/ontology/deathCause> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Killed_in_action"}}, "entities": [{"URI": "http://dbpedia.org/resource/United_States", "surface form": "US"}], "relations": [{"URI": "http://dbpedia.org/property/country", "surface form": "citizens"}, {"URI": "http://dbpedia.org/ontology/flag", "surface form": "died"}]}, {"id": "356", "question": [{"language": "en", "string": "Which military unit garrison is Arlington County, Virginia and The Pentagon?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/garrison> <http://dbpedia.org/resource/Arlington_County,_Virginia> . ?uri <http://dbpedia.org/property/garrison> <http://dbpedia.org/resource/The_Pentagon> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/MilitaryUnit>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Air_National_Guard"}}, "entities": [{"URI": "http://dbpedia.org/resource/1079th_Garrison_Support_Unit", "surface form": "military unit garrison"}, {"URI": "http://dbpedia.org/resource/Arlington_County,_Virginia", "surface form": "Arlington County, Virginia"}, {"URI": "http://dbpedia.org/resource/The_Pentagon", "surface form": "The Pentagon"}], "relations": []}, {"id": "357", "question": [{"language": "en", "string": "Name all the products produced by the producer of United States dollar ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/product> <http://dbpedia.org/resource/United_States_dollar> . ?x <http://dbpedia.org/ontology/product> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Euro"}}, "entities": [{"URI": "http://dbpedia.org/resource/United_States_dollar", "surface form": "United States dollar"}], "relations": [{"URI": "http://dbpedia.org/ontology/name", "surface form": "name"}, {"URI": "http://dbpedia.org/ontology/architect", "surface form": "products"}, {"URI": "http://dbpedia.org/ontology/architect", "surface form": "produced"}, {"URI": "http://dbpedia.org/ontology/producer", "surface form": "producer"}]}, {"id": "358", "question": [{"language": "en", "string": "What is the launch site of Aquarius (rocket) ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Aquarius_(rocket)> <http://dbpedia.org/ontology/launchSite> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hawaii"}}, "entities": [{"URI": "http://dbpedia.org/resource/Aquarius_(rocket)", "surface form": "Aquarius (rocket)"}], "relations": [{"URI": "http://dbpedia.org/ontology/launchSite", "surface form": "launch"}]}, {"id": "359", "question": [{"language": "en", "string": "What are the players whose former teams are Carolina Panthers and Indianapolis Colts?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/formerTeam> <http://dbpedia.org/resource/Carolina_Panthers> . ?uri <http://dbpedia.org/ontology/formerTeam> <http://dbpedia.org/resource/Indianapolis_Colts> . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Andre_Brown_(running_back)"}}, "entities": [{"URI": "http://dbpedia.org/resource/Carolina_Panthers", "surface form": "Carolina Panthers"}, {"URI": "http://dbpedia.org/resource/Indianapolis_Colts", "surface form": "Indianapolis Colts"}], "relations": [{"URI": "http://dbpedia.org/ontology/formerTeam", "surface form": "former team"}, {"URI": "http://dbpedia.org/ontology/formerTeam", "surface form": "former team"}]}, {"id": "360", "question": [{"language": "en", "string": "Count the total number of mammals whose phylum is Chordate and order (taxonomy) is Diprotodontia?"}], "query": {"sparql": " SELECT DISTINCT COUNT(?uri) WHERE {?uri <http://dbpedia.org/ontology/phylum> <http://dbpedia.org/resource/Chordate> . ?uri <http://dbpedia.org/ontology/order> <http://dbpedia.org/resource/Diprotodontia> } "}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "2"}}, "entities": [{"URI": "http://dbpedia.org/resource/Mammals_of_the_Indiana_Dunes", "surface form": "mammals"}, {"URI": "http://dbpedia.org/resource/Chordate", "surface form": "Chordate"}, {"URI": "http://dbpedia.org/resource/Diprotodontia", "surface form": "Diprotodontia"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": "count"}, {"URI": "http://dbpedia.org/ontology/result", "surface form": "total"}, {"URI": "http://dbpedia.org/ontology/phylum", "surface form": "phylum"}, {"URI": "http://dbpedia.org/ontology/order", "surface form": "(taxonomy)"}]}, {"id": "361", "question": [{"language": "en", "string": "How many cities are around the sea into which the aegean sea flows?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { <http://dbpedia.org/resource/Aegean_Sea> <http://dbpedia.org/ontology/outflow> ?x . ?x <http://dbpedia.org/property/cities> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Sea>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "1"}}, "entities": [{"URI": "http://dbpedia.org/resource/Aegean_Sea", "surface form": "aegean sea"}], "relations": [{"URI": "http://dbpedia.org/ontology/city", "surface form": "cities"}, {"URI": "http://dbpedia.org/ontology/lake", "surface form": "sea"}, {"URI": "http://dbpedia.org/ontology/lake", "surface form": "aegean sea"}, {"URI": "http://dbpedia.org/ontology/circulation", "surface form": "flows"}]}, {"id": "362", "question": [{"language": "en", "string": "What is the programme format of WWTR ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/WWTR> <http://dbpedia.org/ontology/programmeFormat> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/South_Asia"}}, "entities": [{"URI": "http://dbpedia.org/resource/WWTR", "surface form": "WWTR"}], "relations": [{"URI": "http://dbpedia.org/ontology/programmeFormat", "surface form": "programme format"}]}, {"id": "363", "question": [{"language": "en", "string": "What is the total number of participant in conflict of SFOR?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/battles> <http://dbpedia.org/resource/SFOR> . ?x <http://dbpedia.org/ontology/battle> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "79"}}, "entities": [{"URI": "http://dbpedia.org/resource/SFOR", "surface form": "SFOR"}], "relations": [{"URI": "http://dbpedia.org/ontology/populationTotal", "surface form": "total"}, {"URI": "http://dbpedia.org/ontology/participant", "surface form": "participant"}, {"URI": "http://dbpedia.org/ontology/battle", "surface form": "conflict"}]}, {"id": "364", "question": [{"language": "en", "string": "What is the university to which Erica Frank went, and where Ivan Toplak was a club manager?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Erica_Frank> <http://dbpedia.org/ontology/institution> ?uri. <http://dbpedia.org/resource/Ivan_Toplak> <http://dbpedia.org/ontology/managerClub> ?uri} "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Stanford_University"}}, "entities": [{"URI": "http://dbpedia.org/resource/Erica_Frank", "surface form": "Erica Frank went,"}, {"URI": "http://dbpedia.org/resource/Ivan_Toplak", "surface form": "Ivan Toplak"}], "relations": [{"URI": "http://dbpedia.org/ontology/university", "surface form": "university"}, {"URI": "http://dbpedia.org/ontology/managerClub", "surface form": "club manager"}]}, {"id": "365", "question": [{"language": "en", "string": "How many movies have been directed by Orson Welles ?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE {?uri <http://dbpedia.org/property/director> <http://dbpedia.org/resource/Orson_Welles> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "30"}}, "entities": [{"URI": "http://dbpedia.org/resource/Orson_Welles", "surface form": "Orson Welles"}], "relations": [{"URI": "http://dbpedia.org/property/director", "surface form": "directed"}, {"URI": "http://dbpedia.org/ontology/Film", "surface form": "movie"}]}, {"id": "366", "question": [{"language": "en", "string": "Which borough is common for Duddeston and Bordesley railway station ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Duddeston_railway_station> <http://dbpedia.org/property/borough> ?uri. <http://dbpedia.org/resource/Bordesley_railway_station> <http://dbpedia.org/property/borough> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Birmingham"}}, "entities": [{"URI": "http://dbpedia.org/resource/Duddeston_railway_station", "surface form": "Duddeston"}, {"URI": "http://dbpedia.org/resource/Bordesley_railway_station", "surface form": "Bordesley railway station"}], "relations": [{"URI": "http://dbpedia.org/ontology/borough", "surface form": "borough"}, {"URI": "http://dbpedia.org/ontology/established", "surface form": "common"}]}, {"id": "367", "question": [{"language": "en", "string": "What is the birthplace of Ludovic Boi which is also the residence of Fernando Augustin?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Ludovic_Boi> <http://dbpedia.org/ontology/birthPlace> ?uri. <http://dbpedia.org/resource/Fernando_Augustin> <http://dbpedia.org/property/residence> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mauritius"}}, "entities": [{"URI": "http://dbpedia.org/resource/Ludovic_Boi", "surface form": "Ludovic Boi"}, {"URI": "http://dbpedia.org/resource/Fernando_Augustin", "surface form": "Fernando Augustin"}], "relations": [{"URI": "http://dbpedia.org/ontology/birthPlace", "surface form": "birthplace"}, {"URI": "http://dbpedia.org/ontology/residence", "surface form": "residence"}]}, {"id": "368", "question": [{"language": "en", "string": "Which awards have been given to scientists that graduated from NKU athens?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/almaMater> <http://dbpedia.org/resource/National_and_Kapodistrian_University_of_Athens> . ?x <http://dbpedia.org/ontology/award> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Scientist>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fellowship_of_the_Royal_Society_of_Edinburgh"}}, "entities": [{"URI": "http://dbpedia.org/resource/National_and_Kapodistrian_University_of_Athens", "surface form": "NKU athens"}], "relations": [{"URI": "http://dbpedia.org/ontology/endowment", "surface form": "awards"}, {"URI": "http://dbpedia.org/ontology/effectiveRadiatedPower", "surface form": "graduated"}, {"URI": "http://dbpedia.org/ontology/country", "surface form": "athens"}]}, {"id": "369", "question": [{"language": "en", "string": "Ricky Gervais is the executive producer of the series having how many fictional characters?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/executiveProducer> <http://dbpedia.org/resource/Ricky_Gervais> . ?uri <http://dbpedia.org/ontology/series> ?x . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/FictionalCharacter>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "14"}}, "entities": [{"URI": "http://dbpedia.org/resource/Ricky_Gervais", "surface form": "Ricky gervais"}, {"URI": "http://dbpedia.org/resource/Fiction", "surface form": "fictional characters"}], "relations": [{"URI": "http://dbpedia.org/ontology/executiveProducer", "surface form": "executive producer"}, {"URI": "http://dbpedia.org/ontology/series", "surface form": "series"}]}, {"id": "370", "question": [{"language": "en", "string": "Cable stayed bridges have been used to cross over how many things?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/design> <http://dbpedia.org/resource/Cable-stayed_bridge> . ?x <http://dbpedia.org/property/crosses> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "193"}}, "entities": [{"URI": "http://dbpedia.org/resource/Cable-stayed_bridge", "surface form": "Cable stayed bridges"}], "relations": [{"URI": "http://dbpedia.org/ontology/voice", "surface form": "cable"}, {"URI": "http://dbpedia.org/ontology/era", "surface form": "stayed"}, {"URI": "http://dbpedia.org/ontology/thumbnail", "surface form": "bridges"}, {"URI": "http://dbpedia.org/ontology/hybrid", "surface form": "cross"}]}, {"id": "371", "question": [{"language": "en", "string": "What are the television shows whose starting music is composed by Ron Grainer?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/themeMusicComposer> <http://dbpedia.org/resource/Ron_Grainer> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/TFI_Friday"}}, "entities": [{"URI": "http://dbpedia.org/resource/Ron_Grainer", "surface form": "Ron Grainer"}], "relations": [{"URI": "http://dbpedia.org/property/themeMusicComposer", "surface form": "composed"}, {"URI": "http://dbpedia.org/ontology/TelevisionShow", "surface form": "television show"}]}, {"id": "372", "question": [{"language": "en", "string": "List some teams for which someone who has played as a defender, now plays?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/position> <http://dbpedia.org/resource/Defenceman> . ?x <http://dbpedia.org/ontology/team> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Link\u00f6ping_HC"}}, "entities": [], "relations": [{"URI": "http://dbpedia.org/ontology/numberOfTeams", "surface form": "teams"}, {"URI": "http://dbpedia.org/ontology/portrayer", "surface form": "played"}, {"URI": "http://dbpedia.org/ontology/champion", "surface form": "defender,"}, {"URI": "http://dbpedia.org/ontology/plays", "surface form": "plays"}]}, {"id": "373", "question": [{"language": "en", "string": "Who are the scientists known for the Manhattan Project?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/knownFor> <http://dbpedia.org/resource/Manhattan_Project> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Scientist>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alvin_M._Weinberg"}}, "entities": [{"URI": "http://dbpedia.org/resource/Scientists_for_Global_Responsibility", "surface form": "scientists"}, {"URI": "http://dbpedia.org/resource/Manhattan_Project", "surface form": "Manhattan Project"}], "relations": [{"URI": "http://dbpedia.org/property/knownFor", "surface form": "known for"}, {"URI": "http://dbpedia.org/ontology/Scientist", "surface form": "scientist"}]}, {"id": "374", "question": [{"language": "en", "string": "What are some dishes from the family of dishes which primarily use flour?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/mainIngredient> <http://dbpedia.org/resource/Flour> . ?uri <http://dbpedia.org/ontology/type> ?x . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Food>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Scotcheroos"}}, "entities": [], "relations": [{"URI": "http://dbpedia.org/ontology/state", "surface form": "dishes"}, {"URI": "http://dbpedia.org/ontology/family", "surface form": "family"}, {"URI": "http://dbpedia.org/ontology/state", "surface form": "dishes"}, {"URI": "http://dbpedia.org/ontology/depth", "surface form": "flour"}]}, {"id": "375", "question": [{"language": "en", "string": "How many things are crossed over by bridges which can carry cars?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/carries> <http://dbpedia.org/resource/Motor_vehicle> . ?x <http://dbpedia.org/property/crosses> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "1"}}, "entities": [{"URI": "http://dbpedia.org/resource/Motor_vehicle", "surface form": "cars"}], "relations": [{"URI": "http://dbpedia.org/property/carries", "surface form": "carry"}, {"URI": "http://dbpedia.org/property/crosses", "surface form": "crossed"}]}, {"id": "376", "question": [{"language": "en", "string": "Which team won the American Football League?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/American_Football_League> <http://dbpedia.org/property/champion> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kansas_City_Chiefs"}}, "entities": [{"URI": "http://dbpedia.org/resource/Organization_of_American_States", "surface form": "American Football League"}, {"URI": "http://dbpedia.org/resource/American_Football_League", "surface form": "American Football League"}], "relations": [{"URI": "http://dbpedia.org/ontology/team", "surface form": "team"}, {"URI": "http://dbpedia.org/ontology/award", "surface form": "won"}, {"URI": "http://dbpedia.org/ontology/country", "surface form": ""}]}, {"id": "377", "question": [{"language": "en", "string": "Who is the founder of the trade union which affiliates Amalgamated Association of Iron and Steel Workers?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Amalgamated_Association_of_Iron_and_Steel_Workers> <http://dbpedia.org/ontology/affiliation> ?x . ?x <http://dbpedia.org/property/founded> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TradeUnion>}"}, "answers": {"uri": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#date", "value": "1935-11-09"}}, "entities": [{"URI": "http://dbpedia.org/resource/Amalgamated_Weavers'_Association", "surface form": "Amalgamated Association of Iron"}, {"URI": "http://dbpedia.org/resource/Amalgamated_Weavers'_Association", "surface form": "Amalgamated Association of Iron"}, {"URI": "http://dbpedia.org/resource/Visakha_Steel_Workers_Union", "surface form": "Steel Workers"}], "relations": [{"URI": "http://dbpedia.org/ontology/founder", "surface form": "founder"}, {"URI": "http://dbpedia.org/ontology/riverBranch", "surface form": "affiliates"}]}, {"id": "378", "question": [{"language": "en", "string": "Which researchers received fellowship from Royal Society?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/award> <http://dbpedia.org/resource/Royal_Society> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Scientist>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alister_Hardy"}}, "entities": [{"URI": "http://dbpedia.org/resource/Researchers_Alliance_for_Development", "surface form": "researchers"}, {"URI": "http://dbpedia.org/resource/Royal_Society", "surface form": "Royal Society"}], "relations": [{"URI": "http://dbpedia.org/ontology/award", "surface form": "fellowship"}]}, {"id": "379", "question": [{"language": "en", "string": "Where was James H. Fields buried ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/James_H._Fields> <http://dbpedia.org/property/placeofburial> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Houston,_Texas"}}, "entities": [{"URI": "http://dbpedia.org/resource/James_H._Fields", "surface form": " James H. Fields"}], "relations": [{"URI": "http://dbpedia.org/ontology/genre", "surface form": "buried"}]}, {"id": "380", "question": [{"language": "en", "string": "What is the commander of Battle of Brownstown ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Battle_of_Brownstown> <http://dbpedia.org/ontology/commander> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tecumseh"}}, "entities": [{"URI": "http://dbpedia.org/resource/Battle_of_Brownstown", "surface form": "Battle of Brownstown"}], "relations": [{"URI": "http://dbpedia.org/ontology/commander", "surface form": "commander"}]}, {"id": "381", "question": [{"language": "en", "string": "Who is the fictional character whose family member is Padme Amidala?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/family> <http://dbpedia.org/resource/Padm\u00e9_Amidala> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/FictionalCharacter>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mara_Jade"}}, "entities": [{"URI": "http://dbpedia.org/resource/Padm\u00e9_Amidala", "surface form": "Padme Amidala"}], "relations": [{"URI": "http://dbpedia.org/property/family", "surface form": "family"}, {"URI": "http://dbpedia.org/ontology/FictionalCharacter", "surface form": "fictional character"}]}, {"id": "382", "question": [{"language": "en", "string": "What company is the one which wrote the google web toolkit and PlayN?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Google_Web_Toolkit> <http://dbpedia.org/ontology/author> ?uri. <http://dbpedia.org/resource/PlayN> <http://dbpedia.org/ontology/author> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Google"}}, "entities": [{"URI": "http://dbpedia.org/resource/Google_Web_Toolkit", "surface form": "google web toolkit"}, {"URI": "http://dbpedia.org/resource/PlayN", "surface form": "PlayN"}], "relations": [{"URI": "http://dbpedia.org/ontology/company", "surface form": "company"}, {"URI": "http://dbpedia.org/ontology/author", "surface form": "wrote"}]}, {"id": "383", "question": [{"language": "en", "string": "How many different songwriters have had their songs recorded in London?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/recordedIn> <http://dbpedia.org/resource/London> . ?x <http://dbpedia.org/ontology/writer> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "343"}}, "entities": [{"URI": "http://dbpedia.org/resource/London", "surface form": "London"}], "relations": [{"URI": "http://dbpedia.org/ontology/recordedIn", "surface form": "recorded in"}, {"URI": "http://dbpedia.org/ontology/writer", "surface form": "writers"}]}, {"id": "384", "question": [{"language": "en", "string": "Which are the automobile platform whose one of the automobile platform is Dodge ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/automobilePlatform> <http://dbpedia.org/resource/Dodge> . ?x <http://dbpedia.org/ontology/automobilePlatform> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Automobile>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ford_Motor_Company"}}, "entities": [{"URI": "http://dbpedia.org/resource/Dodge", "surface form": "Dodge"}], "relations": [{"URI": "http://dbpedia.org/ontology/automobilePlatform", "surface form": "automobile platform"}, {"URI": "http://dbpedia.org/ontology/automobilePlatform", "surface form": "automobile platform"}]}, {"id": "385", "question": [{"language": "en", "string": "What is the total number of other combatant of the military conflicts whose combatant is Choctaw?"}], "query": {"sparql": " SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/combatant> <http://dbpedia.org/resource/Choctaw> . ?x <http://dbpedia.org/property/combatant> ?uri }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "97"}}, "entities": [{"URI": "http://dbpedia.org/resource/Choctaw", "surface form": "Choctaw"}], "relations": [{"URI": "http://dbpedia.org/ontology/populationTotal", "surface form": "total"}, {"URI": "http://dbpedia.org/ontology/combatant", "surface form": "combatant"}, {"URI": "http://dbpedia.org/ontology/service", "surface form": "military conflicts"}, {"URI": "http://dbpedia.org/ontology/combatant", "surface form": "combatant"}, {"URI": "http://dbpedia.org/ontology/country", "surface form": ""}]}, {"id": "386", "question": [{"language": "en", "string": "List some pupils of National Science Medal winning scientists?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/prizes> <http://dbpedia.org/resource/National_Medal_of_Science> . ?x <http://dbpedia.org/property/doctoralStudents> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Scientist>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Malka_Schaps"}}, "entities": [{"URI": "http://dbpedia.org/resource/National_Medal_of_Science", "surface form": "National Science Medal"}, {"URI": "http://dbpedia.org/resource/Scientists_for_Global_Responsibility", "surface form": "scientists"}], "relations": [{"URI": "http://dbpedia.org/ontology/school", "surface form": "pupils"}, {"URI": "http://dbpedia.org/property/first", "surface form": "winning"}]}, {"id": "387", "question": [{"language": "en", "string": "Relatives of Moses used to follow which religions?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Moses> <http://dbpedia.org/ontology/relative> ?x . ?x <http://dbpedia.org/ontology/veneratedIn> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Samaritanism"}}, "entities": [{"URI": "http://dbpedia.org/resource/Moses", "surface form": "Moses"}], "relations": [{"URI": "http://dbpedia.org/ontology/relative", "surface form": "relatives"}, {"URI": "http://dbpedia.org/property/result", "surface form": "follow"}, {"URI": "http://dbpedia.org/ontology/religion", "surface form": "religions"}]}, {"id": "388", "question": [{"language": "en", "string": "Where was Ne daj se, Nina first aired ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Ne_daj_se,_Nina> <http://dbpedia.org/property/firstAired> ?uri } "}, "answers": {"uri": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#date", "value": "2007-10-29"}}, "entities": [{"URI": "http://dbpedia.org/resource/Ne_daj_se,_Nina", "surface form": "Ne daj se, Nina"}], "relations": [{"URI": "http://dbpedia.org/property/firstAired", "surface form": "aired"}]}, {"id": "389", "question": [{"language": "en", "string": "Where did the 2015 MLS All-Star Game take place?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/2015_MLS_All-Star_Game> <http://dbpedia.org/property/city> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Colorado"}}, "entities": [{"URI": "http://dbpedia.org/resource/2015_MLS_All-Star_Game", "surface form": "2015 MLS All-Star Game"}], "relations": [{"URI": "http://dbpedia.org/property/place", "surface form": "place"}]}, {"id": "390", "question": [{"language": "en", "string": "Brian Moriarty designed video games written by whom?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/designer> <http://dbpedia.org/resource/Brian_Moriarty> . ?x <http://dbpedia.org/property/writer> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/VideoGame>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Brian_Moriarty"}}, "entities": [{"URI": "http://dbpedia.org/resource/Brian_Moriarty", "surface form": "brian Moriarty"}, {"URI": "http://dbpedia.org/resource/Video_game", "surface form": "video games written"}], "relations": [{"URI": "http://dbpedia.org/ontology/designer", "surface form": "designed"}, {"URI": "http://dbpedia.org/ontology/writer", "surface form": "written"}]}, {"id": "391", "question": [{"language": "en", "string": "What automobile engine's successor is BMW M40"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/successor> <http://dbpedia.org/resource/BMW_M40> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/AutomobileEngine>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/BMW_M10"}}, "entities": [{"URI": "http://dbpedia.org/resource/BMW_M40", "surface form": "BMW M40"}], "relations": [{"URI": "http://dbpedia.org/property/successor", "surface form": "successor"}, {"URI": "http://dbpedia.org/ontology/AutomobileEngine", "surface form": "automobile engine"}]}, {"id": "392", "question": [{"language": "en", "string": "Who develops the computation platform of Microsoft Expression Encoder ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Microsoft_Expression_Encoder> <http://dbpedia.org/ontology/computingPlatform> ?x . ?x <http://dbpedia.org/ontology/developer> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Microsoft"}}, "entities": [{"URI": "http://dbpedia.org/resource/Microsoft_Expression_Encoder", "surface form": "Microsoft Expression Encoder"}], "relations": [{"URI": "http://dbpedia.org/ontology/developer", "surface form": "develops"}, {"URI": "http://dbpedia.org/ontology/computingPlatform", "surface form": "computation platform"}]}, {"id": "393", "question": [{"language": "en", "string": "What is the official language of Ladonia, which is the target area of Probus Journal?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Ladonia_(micronation)> <http://dbpedia.org/ontology/officialLanguage> ?uri. <http://dbpedia.org/resource/Probus_(journal)> <http://dbpedia.org/ontology/academicDiscipline> ?uri} "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Latin"}}, "entities": [{"URI": "http://dbpedia.org/resource/Ladonia_(micronation)", "surface form": "Ladonia"}, {"URI": "http://dbpedia.org/resource/Probus_(journal)", "surface form": "Probus"}], "relations": [{"URI": "http://dbpedia.org/ontology/officialLanguage", "surface form": "official language"}, {"URI": "http://dbpedia.org/ontology/academicDiscipline", "surface form": "area"}]}, {"id": "394", "question": [{"language": "en", "string": "Where did the conflict take place where Louis Briere de I'Isle was a commander?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/commander> <http://dbpedia.org/resource/Louis_Bri\u00e8re_de_l'Isle> . ?x <http://dbpedia.org/ontology/territory> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/MilitaryConflict>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Annam_(French_protectorate)"}}, "entities": [{"URI": "http://dbpedia.org/resource/I", "surface form": "I"}, {"URI": "http://dbpedia.org/resource/Michel_Bri\u00e8re", "surface form": "Louis Briere de"}], "relations": [{"URI": "http://dbpedia.org/ontology/battle", "surface form": "conflict"}, {"URI": "http://dbpedia.org/ontology/place", "surface form": "place"}, {"URI": "http://dbpedia.org/ontology/commander", "surface form": "commander"}]}, {"id": "395", "question": [{"language": "en", "string": "How many people hold important positions alongwith Donna Shalala?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/keyPerson> <http://dbpedia.org/resource/Donna_Shalala> . ?x <http://dbpedia.org/property/keyPeople> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "10"}}, "entities": [{"URI": "http://dbpedia.org/resource/Donna_Shalala", "surface form": "Donna Shalala"}], "relations": [{"URI": "http://dbpedia.org/ontology/title", "surface form": "hold"}, {"URI": "http://dbpedia.org/ontology/office", "surface form": "positions"}, {"URI": "http://dbpedia.org/property/alongWith", "surface form": "alongwith"}]}, {"id": "396", "question": [{"language": "en", "string": "Who fought in the battle at Tupelo Mississippi?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/place> <http://dbpedia.org/resource/Tupelo,_Mississippi> . ?x <http://dbpedia.org/property/combatant> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/MilitaryConflict>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/France"}}, "entities": [{"URI": "http://dbpedia.org/resource/Tupelo,_Mississippi", "surface form": "Tupelo Mississippi"}], "relations": [{"URI": "http://dbpedia.org/ontology/type", "surface form": "fought"}, {"URI": "http://dbpedia.org/ontology/battle", "surface form": "battle"}]}, {"id": "397", "question": [{"language": "en", "string": "List the movies whose cast member were born in Scotland."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/birthPlace> <http://dbpedia.org/resource/Scotland> . ?uri <http://dbpedia.org/ontology/starring> ?x . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/American_Utopia_(film)"}}, "entities": [{"URI": "http://dbpedia.org/resource/Scotland", "surface form": "Scotland"}], "relations": [{"URI": "http://dbpedia.org/ontology/picture", "surface form": "movies"}, {"URI": "http://dbpedia.org/ontology/type", "surface form": "cast member"}, {"URI": "http://dbpedia.org/ontology/birthPlace", "surface form": "born"}]}, {"id": "398", "question": [{"language": "en", "string": "Count the writers whose work has been played in NY?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/place> <http://dbpedia.org/resource/New_York> . ?x <http://dbpedia.org/property/writer> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/New_York", "surface form": "NY"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": "count"}, {"URI": "http://dbpedia.org/ontology/writer", "surface form": "writers"}, {"URI": "http://dbpedia.org/ontology/agency", "surface form": "work"}, {"URI": "http://dbpedia.org/ontology/portrayer", "surface form": "played"}]}, {"id": "399", "question": [{"language": "en", "string": "How many people used to play in the youthclub of FC Barcelona?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE {?uri <http://dbpedia.org/property/youthclubs> <http://dbpedia.org/resource/FC_Barcelona> . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "489"}}, "entities": [{"URI": "http://dbpedia.org/resource/FC_Barcelona", "surface form": "FC Barcelona"}], "relations": [{"URI": "http://dbpedia.org/property/youthclubs", "surface form": "youthclub"}]}, {"id": "400", "question": [{"language": "en", "string": "Quebec born ice hockey players have stopped playing for which teams?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/birthPlace> <http://dbpedia.org/resource/Quebec> . ?x <http://dbpedia.org/ontology/formerTeam> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/IceHockeyPlayer>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Quebec_Nordiques"}}, "entities": [{"URI": "http://dbpedia.org/resource/Ice_hockey", "surface form": "ice hockey players"}], "relations": [{"URI": "http://dbpedia.org/ontology/leader", "surface form": "quebec"}, {"URI": "http://dbpedia.org/ontology/birthYear", "surface form": "born"}, {"URI": "http://dbpedia.org/ontology/patron", "surface form": "stopped"}, {"URI": "http://dbpedia.org/ontology/field", "surface form": "playing"}, {"URI": "http://dbpedia.org/property/team", "surface form": "teams"}]}, {"id": "401", "question": [{"language": "en", "string": "Who is the chancellor of Falmouth University ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Falmouth_University> <http://dbpedia.org/property/chancellor> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dawn_French"}}, "entities": [{"URI": "http://dbpedia.org/resource/Falmouth_University", "surface form": "Falmouth University"}], "relations": [{"URI": "http://dbpedia.org/ontology/chancellor", "surface form": "chancellor"}]}, {"id": "402", "question": [{"language": "en", "string": "what kind of things play on WBIG FM?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/WBIG-FM> <http://dbpedia.org/ontology/programmeFormat> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Classic_rock"}}, "entities": [{"URI": "http://dbpedia.org/resource/WBIG", "surface form": "WBIG"}, {"URI": "http://dbpedia.org/resource/FM", "surface form": "FM"}, {"URI": "http://dbpedia.org/resource/FM", "surface form": "FM"}, {"URI": "http://dbpedia.org/resource/WBIG", "surface form": "WBIG"}], "relations": [{"URI": "http://dbpedia.org/ontology/team", "surface form": "play"}]}, {"id": "403", "question": [{"language": "en", "string": "In which fields are the graduates of Worcester College, Oxford working?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/almaMater> <http://dbpedia.org/resource/Worcester_College,_Oxford> . ?x <http://dbpedia.org/ontology/field> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Development_economics"}}, "entities": [{"URI": "http://dbpedia.org/resource/Worcester_College,_Oxford", "surface form": "Worcester College, Oxford"}], "relations": [{"URI": "http://dbpedia.org/property/almaMater", "surface form": "graduates"}, {"URI": "http://dbpedia.org/ontology/field", "surface form": "field"}]}, {"id": "404", "question": [{"language": "en", "string": "What are the musical performances whose label is Celluloid Records?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/label> <http://dbpedia.org/resource/Celluloid_Records> . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Visions_of_Excess"}}, "entities": [{"URI": "http://dbpedia.org/resource/Celluloid_Records", "surface form": "Celluloid Records"}], "relations": [{"URI": "http://dbpedia.org/ontology/musicalArtist", "surface form": "musical performances"}, {"URI": "http://dbpedia.org/property/label", "surface form": "label"}]}, {"id": "405", "question": [{"language": "en", "string": "How many people have fought wars where Arthur St. Clair was a commander?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/commander> <http://dbpedia.org/resource/Arthur_St._Clair> . ?x <http://dbpedia.org/property/combatant> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "22"}}, "entities": [{"URI": "http://dbpedia.org/resource/Arthur_St._Clair", "surface form": "Arthur St Clair"}], "relations": [{"URI": "http://dbpedia.org/ontology/type", "surface form": "fought"}, {"URI": "http://dbpedia.org/property/battles", "surface form": "wars"}, {"URI": "http://dbpedia.org/ontology/commander", "surface form": "commander"}]}, {"id": "406", "question": [{"language": "en", "string": "Which team has had both Martin prochzka and garry unger as its players ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Martin_Proch\u00e1zka> <http://dbpedia.org/ontology/formerTeam> ?uri. <http://dbpedia.org/resource/Garry_Unger> <http://dbpedia.org/ontology/formerTeam> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Toronto_Maple_Leafs"}}, "entities": [{"URI": "http://dbpedia.org/resource/Joel_W._Martin", "surface form": "Martin prochzka"}], "relations": [{"URI": "http://dbpedia.org/ontology/team", "surface form": "team"}, {"URI": "http://dbpedia.org/ontology/field", "surface form": "garry"}, {"URI": "http://dbpedia.org/ontology/assetUnderManagement", "surface form": "unger"}, {"URI": "http://dbpedia.org/ontology/portrayer", "surface form": "players"}]}, {"id": "407", "question": [{"language": "en", "string": "Give me the home town of all musical artists who uses Guitar as instrument ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/instrument> <http://dbpedia.org/resource/Guitar> . ?x <http://dbpedia.org/ontology/hometown> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/MusicalArtist>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hampshire"}}, "entities": [{"URI": "http://dbpedia.org/resource/Guitar", "surface form": "Guitar"}], "relations": [{"URI": "http://dbpedia.org/ontology/hometown", "surface form": "home town"}, {"URI": "http://dbpedia.org/property/show", "surface form": "musical artists"}, {"URI": "http://dbpedia.org/ontology/instrument", "surface form": "instrument"}]}, {"id": "408", "question": [{"language": "en", "string": "How many religions are followed amongst the people who've worked in the Korean army?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/militaryBranch> <http://dbpedia.org/resource/Republic_of_Korea_Army> . ?x <http://dbpedia.org/ontology/religion> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/Korea", "surface form": "Korean army"}, {"URI": "http://dbpedia.org/resource/Korean_Army", "surface form": "Korean army"}], "relations": [{"URI": "http://dbpedia.org/ontology/religion", "surface form": "religions"}, {"URI": "http://dbpedia.org/ontology/associate", "surface form": "worked"}, {"URI": "http://dbpedia.org/ontology/country", "surface form": ""}]}, {"id": "409", "question": [{"language": "en", "string": "Count the number of musical work which were sold by Sony Music?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/label> <http://dbpedia.org/resource/Sony_Music_Entertainment> . ?uri <http://dbpedia.org/property/music> ?x . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/MusicalWork>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "111"}}, "entities": [{"URI": "http://dbpedia.org/resource/Sony_Music_Entertainment", "surface form": "Sony Music"}], "relations": [{"URI": "http://dbpedia.org/ontology/type", "surface form": "count"}, {"URI": "http://dbpedia.org/ontology/service", "surface form": "musical work"}, {"URI": "http://dbpedia.org/ontology/interest", "surface form": "sold"}]}, {"id": "410", "question": [{"language": "en", "string": "Name the movies directed by Stanley Kubrick and edited by Anthony Harvey?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/director> <http://dbpedia.org/resource/Stanley_Kubrick> . ?uri <http://dbpedia.org/property/editing> <http://dbpedia.org/resource/Anthony_Harvey> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dr._Strangelove"}}, "entities": [{"URI": "http://dbpedia.org/resource/Stanley_Kubrick", "surface form": "Stanley Kubrick"}, {"URI": "http://dbpedia.org/resource/Anthony_Harvey", "surface form": "Anthony Harvey"}], "relations": [{"URI": "http://dbpedia.org/ontology/director", "surface form": "directed"}, {"URI": "http://dbpedia.org/ontology/editing", "surface form": "edited"}]}, {"id": "411", "question": [{"language": "en", "string": "List all binomial authority of the insects whose one of the binomial authority is douard Mntries?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/binomialAuthority> <http://dbpedia.org/resource/\u00c9douard_M\u00e9n\u00e9tries> . ?x <http://dbpedia.org/ontology/binomialAuthority> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/\u00c9douard_M\u00e9n\u00e9tries"}}, "entities": [{"URI": "http://dbpedia.org/resource/\u00c9douard_M\u00e9n\u00e9tries", "surface form": "douard Mntries"}], "relations": [{"URI": "http://dbpedia.org/ontology/binomialAuthority", "surface form": "binomial authority"}, {"URI": "http://dbpedia.org/ontology/binomialAuthority", "surface form": "binomial authority"}]}, {"id": "412", "question": [{"language": "en", "string": "Who is the military general buried in St Mary's Church, Battersea?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/placeofburial> <http://dbpedia.org/resource/St_Mary's_Church,_Battersea> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/MilitaryPerson>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Benedict_Arnold"}}, "entities": [{"URI": "http://dbpedia.org/resource/Saint_Mary,_Jersey", "surface form": "St Mary"}, {"URI": "http://dbpedia.org/resource/Battersea_(EP)", "surface form": " Church, Battersea"}], "relations": [{"URI": "http://dbpedia.org/ontology/service", "surface form": "military"}, {"URI": "http://dbpedia.org/ontology/flag", "surface form": "buried"}]}, {"id": "413", "question": [{"language": "en", "string": "What are some other things developed by the company who made the remote desktop protocol?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/products> <http://dbpedia.org/resource/Remote_Desktop_Protocol> . ?x <http://dbpedia.org/ontology/product> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Company>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Remote_Desktop_Protocol"}}, "entities": [{"URI": "http://dbpedia.org/resource/Remote_Desktop_Protocol", "surface form": "remote desktop protocol"}], "relations": [{"URI": "http://dbpedia.org/ontology/developer", "surface form": "developed"}, {"URI": "http://dbpedia.org/ontology/company", "surface form": "company"}]}, {"id": "414", "question": [{"language": "en", "string": "List the guests of On Broadway ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/On_Broadway_(Smash)> <http://dbpedia.org/property/guests> ?uri } "}, "answers": {"uri": {"type": "literal", "xml:lang": "en", "value": ""}}, "entities": [{"URI": "http://dbpedia.org/resource/On_Broadway_(Smash)", "surface form": "On Broadway"}], "relations": [{"URI": "http://dbpedia.org/property/guests", "surface form": "guests"}]}, {"id": "415", "question": [{"language": "en", "string": "How many universities are there whose country's capital is Oslo?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/capital> <http://dbpedia.org/resource/Oslo> . ?uri <http://dbpedia.org/ontology/country> ?x . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/University>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "58"}}, "entities": [{"URI": "http://dbpedia.org/resource/Universities_South_Africa", "surface form": "universities"}, {"URI": "http://dbpedia.org/resource/Oslo", "surface form": "Oslo"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": "country"}, {"URI": "http://dbpedia.org/ontology/capital", "surface form": " capital"}]}, {"id": "416", "question": [{"language": "en", "string": "Which executive producer of the ultimate merger is also an important person at Trump Productions?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/The_Ultimate_Merger> <http://dbpedia.org/ontology/executiveProducer> ?uri. <http://dbpedia.org/resource/Trump_Productions> <http://dbpedia.org/ontology/keyPerson> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Donald_Trump"}}, "entities": [{"URI": "http://dbpedia.org/resource/The_Ultimate_Merger", "surface form": "the ultimate merger"}, {"URI": "http://dbpedia.org/resource/Trump_Productions", "surface form": "Trump Productions"}], "relations": [{"URI": "http://dbpedia.org/ontology/executiveProducer", "surface form": "executive producer"}, {"URI": "http://dbpedia.org/ontology/keyPerson", "surface form": "person"}]}, {"id": "417", "question": [{"language": "en", "string": "What is the official name of Colorado wine ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Colorado_wine> <http://dbpedia.org/property/officialName> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Colorado"}}, "entities": [{"URI": "http://dbpedia.org/resource/Colorado_wine", "surface form": "Colorado wine"}], "relations": [{"URI": "http://dbpedia.org/property/officialName", "surface form": "official name"}]}, {"id": "418", "question": [{"language": "en", "string": "In how many states can one find Burr Tuss kind of bridges?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/style> <http://dbpedia.org/resource/Burr_Truss> . ?x <http://dbpedia.org/ontology/state> ?uri . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Region>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/Aphex_Twin", "surface form": "Burr Tuss"}], "relations": [{"URI": "http://dbpedia.org/ontology/abstract", "surface form": "bridges"}]}, {"id": "419", "question": [{"language": "en", "string": "Who is the owner of Latvian Wikipedia and Wiktionary ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Latvian_Wikipedia> <http://dbpedia.org/ontology/owner> ?uri. <http://dbpedia.org/resource/Wiktionary> <http://dbpedia.org/ontology/owner> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Wikimedia_Foundation"}}, "entities": [{"URI": "http://dbpedia.org/resource/Latvia", "surface form": "Latvian Wikipedia"}, {"URI": "http://dbpedia.org/resource/Latvian_Wikipedia", "surface form": "Latvian Wikipedia"}, {"URI": "http://dbpedia.org/resource/Wiktionary", "surface form": "Wiktionary"}], "relations": [{"URI": "http://dbpedia.org/ontology/owner", "surface form": "owner"}, {"URI": "http://dbpedia.org/ontology/country", "surface form": ""}]}, {"id": "420", "question": [{"language": "en", "string": "Name all those buried in a place governed by a city council."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/governingBody> <http://dbpedia.org/resource/City_council> . ?uri <http://dbpedia.org/property/restingPlace> ?x . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Joseph_Jorgensen"}}, "entities": [], "relations": [{"URI": "http://dbpedia.org/ontology/name", "surface form": "name"}, {"URI": "http://dbpedia.org/ontology/weight", "surface form": "buried"}, {"URI": "http://dbpedia.org/ontology/place", "surface form": "place"}, {"URI": "http://dbpedia.org/ontology/employer", "surface form": "governed"}, {"URI": "http://dbpedia.org/ontology/house", "surface form": "city council"}]}, {"id": "421", "question": [{"language": "en", "string": "What royalties's sepulchre is Mausoleum of Augustus?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/placeOfBurial> <http://dbpedia.org/resource/Mausoleum_of_Augustus> } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Britannicus"}}, "entities": [{"URI": "http://dbpedia.org/resource/Royalties", "surface form": "Royalties"}, {"URI": "http://dbpedia.org/resource/Easter_Sepulchre", "surface form": " sepulchre"}, {"URI": "http://dbpedia.org/resource/Mausoleum_of_Augustus", "surface form": "Mausoleum of Augustus"}], "relations": []}, {"id": "422", "question": [{"language": "en", "string": "Name the common university of the Cardinal and Jim Wylie?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Stanford_Cardinal> <http://dbpedia.org/ontology/university> ?uri. <http://dbpedia.org/resource/Jim_Wylie> <http://dbpedia.org/ontology/university> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Stanford_University"}}, "entities": [{"URI": "http://dbpedia.org/resource/Stanford_Cardinal", "surface form": "cardinal"}, {"URI": "http://dbpedia.org/resource/Jim_Wylie", "surface form": "Jim Wylie"}], "relations": [{"URI": "http://dbpedia.org/property/name", "surface form": "name"}, {"URI": "http://dbpedia.org/property/university", "surface form": "common university"}]}, {"id": "423", "question": [{"language": "en", "string": "What is the automobile platform of Chiva bus ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Chiva_bus> <http://dbpedia.org/ontology/automobilePlatform> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ford_Motor_Company"}}, "entities": [{"URI": "http://dbpedia.org/resource/Chiva_bus", "surface form": "Chiva bus"}], "relations": [{"URI": "http://dbpedia.org/ontology/automobilePlatform", "surface form": "automobile platform"}]}, {"id": "424", "question": [{"language": "en", "string": "How many movies have a screenplay located in the States?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/birthPlace> <http://dbpedia.org/resource/United_States> . ?uri <http://dbpedia.org/property/screenplay> ?x . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "699"}}, "entities": [{"URI": "http://dbpedia.org/resource/Screenplay", "surface form": "screenplay"}, {"URI": "http://dbpedia.org/resource/United_States", "surface form": "States"}], "relations": [{"URI": "http://dbpedia.org/ontology/film", "surface form": "movies"}, {"URI": "http://dbpedia.org/ontology/place", "surface form": "located"}]}, {"id": "425", "question": [{"language": "en", "string": "Name the country whose leader's deputy is Piotr Glinski?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/deputy> <http://dbpedia.org/resource/Piotr_Gli\u0144ski> . ?uri <http://dbpedia.org/property/leaderName> ?x . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Country>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Poland"}}, "entities": [{"URI": "http://dbpedia.org/resource/Piotr_Gli\u0144ski", "surface form": "Piotr Glinski"}], "relations": [{"URI": "http://dbpedia.org/property/name", "surface form": "name"}, {"URI": "http://dbpedia.org/ontology/country", "surface form": "country"}, {"URI": "http://dbpedia.org/ontology/leader", "surface form": "leader"}, {"URI": "http://dbpedia.org/ontology/deputy", "surface form": " deputy"}]}, {"id": "426", "question": [{"language": "en", "string": "Whose creators are Jerry Seinfeld and Larry David?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/creator> <http://dbpedia.org/resource/Jerry_Seinfeld> . ?uri <http://dbpedia.org/ontology/creator> <http://dbpedia.org/resource/Larry_David> . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jerry_Seinfeld_(character)"}}, "entities": [{"URI": "http://dbpedia.org/resource/Jerry_Seinfeld", "surface form": "Jerry Seinfeld"}, {"URI": "http://dbpedia.org/resource/Larry_David", "surface form": "Larry David"}], "relations": [{"URI": "http://dbpedia.org/ontology/creator", "surface form": "creators"}, {"URI": "http://dbpedia.org/ontology/creator", "surface form": "creators"}]}, {"id": "427", "question": [{"language": "en", "string": "Which TV show is related to The Sarah Jane Adventures and theme music is composed by Ron Grainer?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/related> <http://dbpedia.org/resource/The_Sarah_Jane_Adventures> . ?uri <http://dbpedia.org/property/themeMusicComposer> <http://dbpedia.org/resource/Ron_Grainer> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Doctor_Who"}}, "entities": [{"URI": "http://dbpedia.org/resource/Tv_test_pattern", "surface form": "TV"}, {"URI": "http://dbpedia.org/resource/The_Sarah_Jane_Adventures", "surface form": "The Sarah Jane Adventures"}, {"URI": "http://dbpedia.org/resource/Ron_Grainer", "surface form": "Ron Grainer"}], "relations": [{"URI": "http://dbpedia.org/ontology/show", "surface form": "show"}, {"URI": "http://dbpedia.org/ontology/related", "surface form": "related"}, {"URI": "http://dbpedia.org/ontology/openingTheme", "surface form": "theme music"}, {"URI": "http://dbpedia.org/ontology/composer", "surface form": "composed"}]}, {"id": "428", "question": [{"language": "en", "string": "Name the parent company of Ford Air Transport Service ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Ford_Air_Transport_Service> <http://dbpedia.org/ontology/parentCompany> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ford_Motor_Company"}}, "entities": [{"URI": "http://dbpedia.org/resource/Ford_Air_Transport_Service", "surface form": "Ford Air Transport Service"}], "relations": [{"URI": "http://dbpedia.org/ontology/parentCompany", "surface form": "parent company"}]}, {"id": "429", "question": [{"language": "en", "string": "Who has these major shrines : Emmitsburg, Maryland and Shrine of St. Elizabeth Ann Bayley Seton?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/majorShrine> <http://dbpedia.org/resource/Emmitsburg,_Maryland> . ?uri <http://dbpedia.org/ontology/majorShrine> <http://dbpedia.org/resource/Shrine_of_St._Elizabeth_Ann_Bayley_Seton> . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Elizabeth_Ann_Seton"}}, "entities": [{"URI": "http://dbpedia.org/resource/Emmitsburg,_Maryland", "surface form": "major shrines : Emmitsburg, Maryland"}, {"URI": "http://dbpedia.org/resource/Shrine_of_St._Elizabeth_Ann_Bayley_Seton", "surface form": "Shrine of St Elizabeth Ann Bayley Seton"}], "relations": []}, {"id": "430", "question": [{"language": "en", "string": "Count everyone who lives in a place where Indian English is an official language ?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/officialLanguage> <http://dbpedia.org/resource/Indian_English> . ?uri <http://dbpedia.org/ontology/residence> ?x . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "531"}}, "entities": [{"URI": "http://dbpedia.org/resource/India", "surface form": "Indian English"}, {"URI": "http://dbpedia.org/resource/Indian_English", "surface form": "Indian English"}], "relations": [{"URI": "http://dbpedia.org/ontology/type", "surface form": "count"}, {"URI": "http://dbpedia.org/ontology/residence", "surface form": "lives"}, {"URI": "http://dbpedia.org/ontology/place", "surface form": "place"}, {"URI": "http://dbpedia.org/ontology/officialLanguage", "surface form": "official language"}, {"URI": "http://dbpedia.org/ontology/country", "surface form": ""}]}, {"id": "431", "question": [{"language": "en", "string": "How many religions are practiced by diplomats?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/profession> <http://dbpedia.org/resource/Diplomacy> . ?x <http://dbpedia.org/property/religion> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "1"}}, "entities": [{"URI": "http://dbpedia.org/resource/Diplomacy", "surface form": "diplomats"}], "relations": [{"URI": "http://dbpedia.org/ontology/profession", "surface form": "practiced"}, {"URI": "http://dbpedia.org/property/religion", "surface form": "religion"}]}, {"id": "432", "question": [{"language": "en", "string": "To whom was Tessa Dahl born to?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Tessa_Dahl> <http://dbpedia.org/ontology/parent> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Roald_Dahl"}}, "entities": [{"URI": "http://dbpedia.org/resource/Tessa_Dahl", "surface form": "Tessa Dahl"}], "relations": [{"URI": "http://dbpedia.org/ontology/birthPlace", "surface form": "born"}]}, {"id": "433", "question": [{"language": "en", "string": "Count the number of things people who know linguistics are known for ?"}], "query": {"sparql": " SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/knownFor> <http://dbpedia.org/resource/Linguistics> . ?x <http://dbpedia.org/ontology/knownFor> ?uri }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "62"}}, "entities": [{"URI": "http://dbpedia.org/resource/Linguistics", "surface form": "Linguistics"}], "relations": [{"URI": "http://dbpedia.org/ontology/knownFor", "surface form": "known for"}, {"URI": "http://dbpedia.org/ontology/knownFor", "surface form": "known for"}]}, {"id": "434", "question": [{"language": "en", "string": "How many religions are followed by organizations which are internationally known as the muslim brotherhood?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/international> <http://dbpedia.org/resource/Muslim_Brotherhood> . ?x <http://dbpedia.org/ontology/religion> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "9"}}, "entities": [{"URI": "http://dbpedia.org/resource/Muslim_Brotherhood", "surface form": "muslim brotherhood"}], "relations": [{"URI": "http://dbpedia.org/property/international", "surface form": "international"}, {"URI": "http://dbpedia.org/ontology/religion", "surface form": "religion"}]}, {"id": "435", "question": [{"language": "en", "string": "What are some people born in NY known for?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/birthPlace> <http://dbpedia.org/resource/New_York_City> . ?x <http://dbpedia.org/ontology/knownFor> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Princeton_University_Art_Museum"}}, "entities": [{"URI": "http://dbpedia.org/resource/New_York_City", "surface form": "NY"}], "relations": [{"URI": "http://dbpedia.org/ontology/birthPlace", "surface form": "born in"}, {"URI": "http://dbpedia.org/ontology/knownFor", "surface form": "known for"}]}, {"id": "436", "question": [{"language": "en", "string": "Who is the developer of the software which is produced by Claris ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Claris> <http://dbpedia.org/property/products> ?x . ?x <http://dbpedia.org/ontology/developer> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Software>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Claris"}}, "entities": [{"URI": "http://dbpedia.org/resource/Software_Publishing_Corporation", "surface form": "software"}, {"URI": "http://dbpedia.org/resource/Claris", "surface form": "Claris"}], "relations": [{"URI": "http://dbpedia.org/ontology/developer", "surface form": "developer"}, {"URI": "http://dbpedia.org/ontology/author", "surface form": "produced"}]}, {"id": "437", "question": [{"language": "en", "string": "What is the government type of Ancient Rome ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Ancient_Rome> <http://dbpedia.org/ontology/governmentType> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Roman_Empire"}}, "entities": [{"URI": "http://dbpedia.org/resource/Ancient_Rome", "surface form": "Ancient Rome"}], "relations": [{"URI": "http://dbpedia.org/ontology/governmentType", "surface form": "government type"}]}, {"id": "438", "question": [{"language": "en", "string": "Which director of On deadly Ground also released Mojo Priest ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Mojo_Priest> <http://dbpedia.org/property/artist> ?uri. <http://dbpedia.org/resource/On_Deadly_Ground> <http://dbpedia.org/property/director> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Steven_Seagal"}}, "entities": [{"URI": "http://dbpedia.org/resource/On_Deadly_Ground", "surface form": "On deadly Ground"}, {"URI": "http://dbpedia.org/resource/Mojo_Priest", "surface form": "Mojo Priest"}], "relations": [{"URI": "http://dbpedia.org/ontology/director", "surface form": "director"}, {"URI": "http://dbpedia.org/property/released", "surface form": "released"}]}, {"id": "439", "question": [{"language": "en", "string": "What is the home ground of the clubs managed by Ciao Zanardi?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/manager> <http://dbpedia.org/resource/Caio_Zanardi> . ?x <http://dbpedia.org/ontology/ground> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/SoccerClubSeason>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lauderhill,_Florida"}}, "entities": [{"URI": "http://dbpedia.org/resource/Caio_Zanardi", "surface form": "Ciao Zanardi"}], "relations": [{"URI": "http://dbpedia.org/ontology/institution", "surface form": "home ground"}, {"URI": "http://dbpedia.org/ontology/college", "surface form": "clubs"}, {"URI": "http://dbpedia.org/ontology/director", "surface form": "managed"}]}, {"id": "440", "question": [{"language": "en", "string": "What is the country with native language as Languages of Ethiopia?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/language> <http://dbpedia.org/resource/Languages_of_Ethiopia> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Country>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ethiopia"}}, "entities": [{"URI": "http://dbpedia.org/resource/Languages_of_Ethiopia", "surface form": "Languages of Ethiopia"}], "relations": [{"URI": "http://dbpedia.org/ontology/language", "surface form": "language"}, {"URI": "http://dbpedia.org/ontology/Country", "surface form": "country"}]}, {"id": "441", "question": [{"language": "en", "string": "How many fictional characters were humans?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE {?uri <http://dbpedia.org/ontology/species> <http://dbpedia.org/resource/Human> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/FictionalCharacter>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "335"}}, "entities": [{"URI": "http://dbpedia.org/resource/List_of_fictional_genderqueer_characters", "surface form": "fictional characters"}], "relations": [{"URI": "http://dbpedia.org/ontology/person", "surface form": "humans"}]}, {"id": "442", "question": [{"language": "en", "string": "Where was Girls (The Prodigy song) recorded ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Girls_(The_Prodigy_song)> <http://dbpedia.org/property/recorded> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/England"}}, "entities": [{"URI": "http://dbpedia.org/resource/Girls_(The_Prodigy_song)", "surface form": "Girls (The Prodigy song)"}], "relations": [{"URI": "http://dbpedia.org/property/recorded", "surface form": "recorded"}]}, {"id": "443", "question": [{"language": "en", "string": "How many TV shows' networks are headquarterd in NY?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/headquarters> <http://dbpedia.org/resource/New_York> . ?uri <http://dbpedia.org/property/network> ?x . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/New_York", "surface form": "NY"}], "relations": [{"URI": "http://dbpedia.org/ontology/place", "surface form": "shows"}, {"URI": "http://dbpedia.org/ontology/broadcastNetwork", "surface form": " networks"}, {"URI": "http://dbpedia.org/property/headquarters", "surface form": "headquarterd"}]}, {"id": "444", "question": [{"language": "en", "string": "Give me some shows owned by BBC one and BBC hd?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/network> <http://dbpedia.org/resource/BBC_One> . ?uri <http://dbpedia.org/ontology/network> <http://dbpedia.org/resource/BBC_HD> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ashes_to_Ashes_(British_TV_series)"}}, "entities": [{"URI": "http://dbpedia.org/resource/BBC_One", "surface form": " BBC one"}, {"URI": "http://dbpedia.org/resource/BBC_HD", "surface form": "BBC hd"}], "relations": [{"URI": "http://dbpedia.org/ontology/place", "surface form": "shows"}, {"URI": "http://dbpedia.org/property/owner", "surface form": "owned"}]}, {"id": "445", "question": [{"language": "en", "string": "How many teams have rented stadiums in Canada?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/location> <http://dbpedia.org/resource/Canada> . ?x <http://dbpedia.org/property/tenants> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "44"}}, "entities": [{"URI": "http://dbpedia.org/resource/Canada", "surface form": "Canada"}], "relations": [{"URI": "http://dbpedia.org/property/team", "surface form": "teams"}, {"URI": "http://dbpedia.org/ontology/related", "surface form": "rented"}, {"URI": "http://dbpedia.org/property/stadium", "surface form": "stadiums"}]}, {"id": "446", "question": [{"language": "en", "string": "List the outflow of Lake Uniamsi?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Lake_Uniam\u00e9si> <http://dbpedia.org/ontology/outflow> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Benue_River"}}, "entities": [{"URI": "http://dbpedia.org/resource/Lake_Uniam\u00e9si", "surface form": "Lake Uniamsi"}], "relations": [{"URI": "http://dbpedia.org/ontology/outflow", "surface form": "outflow"}]}, {"id": "447", "question": [{"language": "en", "string": "List the universities from a country where Norwegian language is officially accepted."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/officialLanguage> <http://dbpedia.org/resource/Norwegian_language> . ?uri <http://dbpedia.org/ontology/country> ?x . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/University>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/VID_Specialized_University"}}, "entities": [{"URI": "http://dbpedia.org/resource/Universities_South_Africa", "surface form": "universities"}, {"URI": "http://dbpedia.org/resource/Norway", "surface form": "Norwegian language"}, {"URI": "http://dbpedia.org/resource/Norwegian_language", "surface form": "Norwegian language"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": "country"}, {"URI": "http://dbpedia.org/ontology/incumbent", "surface form": "officially"}, {"URI": "http://dbpedia.org/property/right", "surface form": "accepted"}, {"URI": "http://dbpedia.org/ontology/country", "surface form": ""}]}, {"id": "448", "question": [{"language": "en", "string": "Name the incumbent of Linda Jenness ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Linda_Jenness> <http://dbpedia.org/ontology/incumbent> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Richard_Nixon"}}, "entities": [{"URI": "http://dbpedia.org/resource/Linda_Jenness", "surface form": "Linda Jenness"}], "relations": [{"URI": "http://dbpedia.org/property/name", "surface form": "name"}, {"URI": "http://dbpedia.org/ontology/incumbent", "surface form": "incumbent"}]}, {"id": "449", "question": [{"language": "en", "string": "Which company founded by Fusajiro Yamauchi also provides services of Nintendo eShop ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/foundedBy> <http://dbpedia.org/resource/Fusajiro_Yamauchi> . ?uri <http://dbpedia.org/property/services> <http://dbpedia.org/resource/Nintendo_eShop> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Company>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nintendo"}}, "entities": [{"URI": "http://dbpedia.org/resource/Fusajiro_Yamauchi", "surface form": "Fusajiro Yamauchi"}, {"URI": "http://dbpedia.org/resource/Nintendo_eShop", "surface form": "Nintendo eShop"}], "relations": [{"URI": "http://dbpedia.org/ontology/company", "surface form": "company"}, {"URI": "http://dbpedia.org/ontology/foundedBy", "surface form": "founded"}, {"URI": "http://dbpedia.org/ontology/industry", "surface form": "services"}]}, {"id": "450", "question": [{"language": "en", "string": "In which countries does the sea lie on whose shore is the city of Cumana?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/cities> <http://dbpedia.org/resource/Cuman\u00e1> . ?x <http://dbpedia.org/ontology/country> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Sea>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Venezuela"}}, "entities": [{"URI": "http://dbpedia.org/resource/Cuman\u00e1", "surface form": "Cumana"}], "relations": [{"URI": "http://dbpedia.org/ontology/elevation", "surface form": "sea lie"}, {"URI": "http://dbpedia.org/ontology/interest", "surface form": "shore"}, {"URI": "http://dbpedia.org/ontology/city", "surface form": "city"}]}, {"id": "451", "question": [{"language": "en", "string": "Tirana is the largest city of which country?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/largestCity> <http://dbpedia.org/resource/Tirana> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Country>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Albania"}}, "entities": [{"URI": "http://dbpedia.org/resource/Tirana", "surface form": "tirana"}], "relations": [{"URI": "http://dbpedia.org/ontology/largestCity", "surface form": "largest city"}, {"URI": "http://dbpedia.org/ontology/Country", "surface form": "country"}]}, {"id": "452", "question": [{"language": "en", "string": "Where is the headquarters of Sigma TV"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Sigma_TV> <http://dbpedia.org/property/headquarters> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Strovolos"}}, "entities": [{"URI": "http://dbpedia.org/resource/Sigma_TV", "surface form": "Sigma TV"}], "relations": [{"URI": "http://dbpedia.org/property/headquarters", "surface form": "headquarters"}]}, {"id": "453", "question": [{"language": "en", "string": "Which scientist was advised by John Robert Woodyard?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/doctoralAdvisor> <http://dbpedia.org/resource/John_Robert_Woodyard> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Scientist>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Douglas_Engelbart"}}, "entities": [{"URI": "http://dbpedia.org/resource/Scientist", "surface form": "scientist"}, {"URI": "http://dbpedia.org/resource/John_Robert_Woodyard", "surface form": "John Robert Woodyard"}], "relations": [{"URI": "http://dbpedia.org/ontology/doctoralAdvisor", "surface form": "advised"}]}, {"id": "454", "question": [{"language": "en", "string": "What is the launch site of the Juno I which was also the ground of 2016 Fort Lauderdale Strikers season ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Juno_I> <http://dbpedia.org/ontology/launchSite> ?uri. <http://dbpedia.org/resource/2016_Fort_Lauderdale_Strikers_season> <http://dbpedia.org/ontology/ground> ?uri} "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Florida"}}, "entities": [{"URI": "http://dbpedia.org/resource/Juno_I", "surface form": "Juno I"}, {"URI": "http://dbpedia.org/resource/2016_Fort_Lauderdale_Strikers_season", "surface form": "2016 Fort Lauderdale Strikers season"}], "relations": [{"URI": "http://dbpedia.org/ontology/launchSite", "surface form": "launch site"}, {"URI": "http://dbpedia.org/ontology/ground", "surface form": "ground"}]}, {"id": "455", "question": [{"language": "en", "string": "Who has been married to both Penny Lancaster and Alana Stewart?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Penny_Lancaster> <http://dbpedia.org/ontology/spouse> ?uri. <http://dbpedia.org/resource/Alana_Stewart> <http://dbpedia.org/ontology/spouse> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rod_Stewart"}}, "entities": [{"URI": "http://dbpedia.org/resource/Penny_Lancaster", "surface form": "Penny Lancaster"}, {"URI": "http://dbpedia.org/resource/Alana_Stewart", "surface form": "Alana Stewart"}], "relations": [{"URI": "http://dbpedia.org/property/spouse", "surface form": "married"}]}, {"id": "456", "question": [{"language": "en", "string": "Count the affiliations of International Union of Anarchists?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { <http://dbpedia.org/resource/International_Union_of_Anarchists> <http://dbpedia.org/property/affiliation> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "9"}}, "entities": [{"URI": "http://dbpedia.org/resource/International_Union_of_Anarchists", "surface form": "International Union of Anarchists"}], "relations": [{"URI": "http://dbpedia.org/property/affiliation", "surface form": "affiliation"}]}, {"id": "457", "question": [{"language": "en", "string": "What is the alma mater of the scientist whose PhD advisor is Jean-Claude Latombe ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/doctoralAdvisor> <http://dbpedia.org/resource/Jean-Claude_Latombe> . ?x <http://dbpedia.org/property/almaMater> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Scientist>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Stanford_University"}}, "entities": [{"URI": "http://dbpedia.org/resource/Scientist", "surface form": "scientist"}, {"URI": "http://dbpedia.org/resource/Doctor_of_Philosophy", "surface form": "PhD advisor"}, {"URI": "http://dbpedia.org/resource/Jean-Claude_Latombe", "surface form": "Jean-Claude Latombe"}], "relations": [{"URI": "http://dbpedia.org/ontology/almaMater", "surface form": "alma mater"}]}, {"id": "458", "question": [{"language": "en", "string": "List the people residing in Wilton, Connecticut?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/residence> <http://dbpedia.org/resource/Wilton,_Connecticut> } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Samuel_Marvin"}}, "entities": [{"URI": "http://dbpedia.org/resource/Wilton,_Connecticut", "surface form": "Wilton, Connecticut"}], "relations": [{"URI": "http://dbpedia.org/property/residence", "surface form": "residing"}]}, {"id": "459", "question": [{"language": "en", "string": "Count the water bodies that flow into the North Sea?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { <http://dbpedia.org/resource/North_Sea> <http://dbpedia.org/property/inflow> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "18"}}, "entities": [{"URI": "http://dbpedia.org/resource/North_Sea", "surface form": "North Sea"}], "relations": [{"URI": "http://dbpedia.org/property/inflow", "surface form": "flow"}]}, {"id": "460", "question": [{"language": "en", "string": "Who was the First Driver of 1999 San Marino Grand Prix ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/1999_San_Marino_Grand_Prix> <http://dbpedia.org/property/firstDriver> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Michael_Schumacher"}}, "entities": [{"URI": "http://dbpedia.org/resource/1999_San_Marino_Grand_Prix", "surface form": "First Driver of 1999 San Marino Grand Prix"}], "relations": [{"URI": "http://dbpedia.org/property/firstDriver", "surface form": "First Driver"}]}, {"id": "461", "question": [{"language": "en", "string": "Bantam Spectra is the publisher of which series?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/publisher> <http://dbpedia.org/resource/Bantam_Spectra> . ?x <http://dbpedia.org/ontology/series> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Sword_of_Change"}}, "entities": [{"URI": "http://dbpedia.org/resource/Bantam_Spectra", "surface form": "bantam Spectra"}], "relations": [{"URI": "http://dbpedia.org/ontology/publisher", "surface form": "publisher"}, {"URI": "http://dbpedia.org/ontology/series", "surface form": "series"}]}, {"id": "462", "question": [{"language": "en", "string": "How many things are produced by companies located in Tehran?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/location> <http://dbpedia.org/resource/Tehran> . ?x <http://dbpedia.org/ontology/product> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "220"}}, "entities": [{"URI": "http://dbpedia.org/resource/Companies_listed_on_the_New_York_Stock_Exchange_(J)", "surface form": "companies"}, {"URI": "http://dbpedia.org/resource/Tehran", "surface form": "Tehran"}], "relations": [{"URI": "http://dbpedia.org/ontology/product", "surface form": "produced"}, {"URI": "http://dbpedia.org/property/location", "surface form": "located"}]}, {"id": "463", "question": [{"language": "en", "string": "Horses grandsired by Sundridge have won which awards?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/grandsire> <http://dbpedia.org/resource/Sundridge_(horse)> . ?x <http://dbpedia.org/ontology/honours> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Horse>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Blood-Horse_magazine_List_of_the_Top_100_U.S._Racehorses_of_the_20th_Century"}}, "entities": [{"URI": "http://dbpedia.org/resource/Sundridge", "surface form": "Sundridge"}], "relations": [{"URI": "http://dbpedia.org/ontology/staff", "surface form": "horses"}, {"URI": "http://dbpedia.org/ontology/grandsire", "surface form": "grandsired"}, {"URI": "http://dbpedia.org/ontology/award", "surface form": "won"}, {"URI": "http://dbpedia.org/ontology/award", "surface form": "awards"}]}, {"id": "464", "question": [{"language": "en", "string": "Who was on the first team in the GPs that were held at Watkins Glen, NY?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/location> <http://dbpedia.org/resource/Watkins_Glen,_New_York> . ?x <http://dbpedia.org/property/firstTeam> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/GrandPrix>}"}, "answers": {"uri": {"type": "literal", "xml:lang": "en", "value": "Lotus-Climax"}}, "entities": [{"URI": "http://dbpedia.org/resource/NBEAL2", "surface form": "GPs"}, {"URI": "http://dbpedia.org/resource/New_York", "surface form": "NY"}, {"URI": "http://dbpedia.org/resource/Watkins_Glen_International", "surface form": "Watkins Glen,"}], "relations": [{"URI": "http://dbpedia.org/ontology/team", "surface form": "team"}, {"URI": "http://dbpedia.org/ontology/office", "surface form": "held"}]}, {"id": "465", "question": [{"language": "en", "string": "Name the movie whose screenplay is by Akiva Goldsman and directed by Joel Schumacher ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/screenplay> <http://dbpedia.org/resource/Akiva_Goldsman> . ?uri <http://dbpedia.org/ontology/director> <http://dbpedia.org/resource/Joel_Schumacher> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/A_Time_to_Kill_(1996_film)"}}, "entities": [{"URI": "http://dbpedia.org/resource/Screenplay_(book)", "surface form": "screenplay"}, {"URI": "http://dbpedia.org/resource/Akiva_Goldsman", "surface form": "Akiva Goldsman"}, {"URI": "http://dbpedia.org/resource/Joel_Schumacher", "surface form": "Joel Schumacher"}], "relations": [{"URI": "http://dbpedia.org/property/name", "surface form": "name"}, {"URI": "http://dbpedia.org/ontology/picture", "surface form": "movie"}, {"URI": "http://dbpedia.org/property/directedby", "surface form": "directed"}]}, {"id": "466", "question": [{"language": "en", "string": "How many cities are close to Lake Victoria?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { <http://dbpedia.org/resource/Lake_Victoria> <http://dbpedia.org/ontology/nearestCity> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "12"}}, "entities": [{"URI": "http://dbpedia.org/resource/Lake_Victoria", "surface form": "Lake Victoria"}], "relations": [{"URI": "http://dbpedia.org/ontology/nearestCity", "surface form": "are"}]}, {"id": "467", "question": [{"language": "en", "string": "What is the baseball team whose club manager's debut team is Houston Astros?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/debutTeam> <http://dbpedia.org/resource/Houston_Astros> . ?uri <http://dbpedia.org/ontology/manager> ?x . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/BaseballTeam>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Seattle_Mariners"}}, "entities": [{"URI": "http://dbpedia.org/resource/The_Debut", "surface form": " debut team"}, {"URI": "http://dbpedia.org/resource/Houston_Astros", "surface form": "Houston Astros"}], "relations": [{"URI": "http://dbpedia.org/ontology/team", "surface form": "baseball team"}, {"URI": "http://dbpedia.org/ontology/director", "surface form": "club manager"}]}, {"id": "468", "question": [{"language": "en", "string": "What cities are near to Nihoa which is also known as Bird Island ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Nihoa> <http://dbpedia.org/property/nearestCity> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hawaii"}}, "entities": [{"URI": "http://dbpedia.org/resource/Nihoa", "surface form": "Nihoa"}, {"URI": "http://dbpedia.org/resource/Bird_Island", "surface form": "Bird Island"}], "relations": [{"URI": "http://dbpedia.org/property/nearestCity", "surface form": "near are"}]}, {"id": "469", "question": [{"language": "en", "string": "In how many different places have people beatified by Pope Pius X died?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/beatifiedBy> <http://dbpedia.org/resource/Pope_Pius_X> . ?x <http://dbpedia.org/property/deathPlace> ?uri . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Place>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "23"}}, "entities": [{"URI": "http://dbpedia.org/resource/X", "surface form": "X"}, {"URI": "http://dbpedia.org/resource/Pope_Pius_X", "surface form": "Pope Pius"}], "relations": [{"URI": "http://dbpedia.org/property/height", "surface form": "places"}, {"URI": "http://dbpedia.org/property/beatifiedBy", "surface form": "beatified"}, {"URI": "http://dbpedia.org/ontology/deathDate", "surface form": "died"}]}, {"id": "470", "question": [{"language": "en", "string": "What faiths are followed by the relatives of Meadow Soprano?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Meadow_Soprano> <http://dbpedia.org/ontology/relative> ?x . ?x <http://dbpedia.org/ontology/religion> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Evangelism"}}, "entities": [{"URI": "http://dbpedia.org/resource/Meadow_Soprano", "surface form": "Meadow Soprano"}], "relations": [{"URI": "http://dbpedia.org/ontology/religion", "surface form": "faiths"}, {"URI": "http://dbpedia.org/ontology/relative", "surface form": "relatives"}]}, {"id": "471", "question": [{"language": "en", "string": "What is the nationality of Aishath Saffa ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Aishath_Saffa> <http://dbpedia.org/property/nationality> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Maldives"}}, "entities": [{"URI": "http://dbpedia.org/resource/Aishath_Saffa", "surface form": "Aishath Saffa"}], "relations": [{"URI": "http://dbpedia.org/ontology/nationality", "surface form": "nationality"}]}, {"id": "472", "question": [{"language": "en", "string": "who was the president under whom winston bryant served as a lieutenant?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/lieutenant> <http://dbpedia.org/resource/Winston_Bryant> } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Frank_D._White__Tenure__1"}}, "entities": [{"URI": "http://dbpedia.org/resource/Winston_Bryant", "surface form": "Winston bryant"}], "relations": [{"URI": "http://dbpedia.org/ontology/president", "surface form": "president"}, {"URI": "http://dbpedia.org/ontology/regionServed", "surface form": "served"}, {"URI": "http://dbpedia.org/ontology/lieutenant", "surface form": "lieutenant"}]}, {"id": "473", "question": [{"language": "en", "string": "What are the bands associated with the artists of My Favorite Girl ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/My_Favorite_Girl_(Dave_Hollister_song)> <http://dbpedia.org/property/artist> ?x . ?x <http://dbpedia.org/ontology/associatedBand> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Erick_Sermon"}}, "entities": [{"URI": "http://dbpedia.org/resource/My_Favorite_Girl", "surface form": "My Favorite Girl"}], "relations": [{"URI": "http://dbpedia.org/ontology/staff", "surface form": "bands"}, {"URI": "http://dbpedia.org/ontology/associatedBand", "surface form": "associated"}, {"URI": "http://dbpedia.org/property/artist", "surface form": "artists"}]}, {"id": "474", "question": [{"language": "en", "string": "Which teams have used the stadium whose architect was Populous ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/architect> <http://dbpedia.org/resource/Populous_(company)> . ?x <http://dbpedia.org/ontology/tenant> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Stadium>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/VMI_Keydets_football"}}, "entities": [{"URI": "http://dbpedia.org/resource/Populous_(company)", "surface form": "Populous"}], "relations": [{"URI": "http://dbpedia.org/ontology/numberOfTeams", "surface form": "teams"}, {"URI": "http://dbpedia.org/ontology/stadium", "surface form": "stadium"}, {"URI": "http://dbpedia.org/ontology/architect", "surface form": "architect"}]}, {"id": "475", "question": [{"language": "en", "string": "Count the number of religions followed by the alumini of Ananda College."}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/almaMater> <http://dbpedia.org/resource/Ananda_College> . ?x <http://dbpedia.org/ontology/religion> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/Alumin\u00e9", "surface form": "alumini"}, {"URI": "http://dbpedia.org/resource/Ananda_College", "surface form": "Ananda College"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": "count"}, {"URI": "http://dbpedia.org/ontology/religion", "surface form": "religions"}]}, {"id": "476", "question": [{"language": "en", "string": "Which team did Wilfred McDonalds and Cam Plante play for?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Wilfred_McDonald> <http://dbpedia.org/property/playedFor> ?uri. <http://dbpedia.org/resource/Cam_Plante> <http://dbpedia.org/property/playedFor> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Toronto_Maple_Leafs"}}, "entities": [{"URI": "http://dbpedia.org/resource/Wilfred_McDonald", "surface form": "Wilfred McDonald"}, {"URI": "http://dbpedia.org/resource/Cam_Plante", "surface form": "Cam Plante"}], "relations": [{"URI": "http://dbpedia.org/property/playedFor", "surface form": "team"}, {"URI": "http://dbpedia.org/property/playedFor", "surface form": "team"}]}, {"id": "477", "question": [{"language": "en", "string": "What are the television shows whose network's stockholder is Warner Bros. Television?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/owner> <http://dbpedia.org/resource/Warner_Bros._Television> . ?uri <http://dbpedia.org/ontology/network> ?x . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pointman"}}, "entities": [{"URI": "http://dbpedia.org/resource/Warner_Bros._Television", "surface form": "Warner Bros. Television"}], "relations": [{"URI": "http://dbpedia.org/ontology/transmission", "surface form": "television"}, {"URI": "http://dbpedia.org/ontology/place", "surface form": "shows"}, {"URI": "http://dbpedia.org/ontology/network", "surface form": "network"}]}, {"id": "478", "question": [{"language": "en", "string": "What is the total number of software whose programming language is C++ and operating system is Microsoft Windows?"}], "query": {"sparql": " SELECT DISTINCT COUNT(?uri) WHERE {?uri <http://dbpedia.org/ontology/programmingLanguage> <http://dbpedia.org/resource/C++> . ?uri <http://dbpedia.org/ontology/operatingSystem> <http://dbpedia.org/resource/Microsoft_Windows> } "}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "601"}}, "entities": [{"URI": "http://dbpedia.org/resource/Rietveld_(software)", "surface form": "software"}, {"URI": "http://dbpedia.org/resource/C++", "surface form": "C++"}, {"URI": "http://dbpedia.org/resource/Microsoft_Windows", "surface form": "Microsoft Windows"}], "relations": [{"URI": "http://dbpedia.org/ontology/populationTotal", "surface form": "total"}, {"URI": "http://dbpedia.org/ontology/language", "surface form": "programming language"}, {"URI": "http://dbpedia.org/ontology/operatingSystem", "surface form": "operating"}]}, {"id": "479", "question": [{"language": "en", "string": "Name the city of Phil-Ellena ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Phil-Ellena> <http://dbpedia.org/ontology/city> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Philadelphia"}}, "entities": [{"URI": "http://dbpedia.org/resource/Phil-Ellena", "surface form": "Phil-Ellena"}], "relations": [{"URI": "http://dbpedia.org/ontology/city", "surface form": "city"}]}, {"id": "480", "question": [{"language": "en", "string": "how many companies are located in a spanish speaking region?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/language> <http://dbpedia.org/resource/Spanish_language> . ?uri <http://dbpedia.org/ontology/location> ?x . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Organisation>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "3830"}}, "entities": [{"URI": "http://dbpedia.org/resource/Spanish_language", "surface form": "spanish"}], "relations": [{"URI": "http://dbpedia.org/ontology/language", "surface form": "located"}, {"URI": "http://dbpedia.org/ontology/location", "surface form": "spanish speaking"}]}, {"id": "481", "question": [{"language": "en", "string": "Which airlines fly to Gimhae International Airport?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/targetAirport> <http://dbpedia.org/resource/Gimhae_International_Airport> } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Air_Busan"}}, "entities": [{"URI": "http://dbpedia.org/resource/Gimhae_International_Airport", "surface form": "Gimhae International Airport"}], "relations": [{"URI": "http://dbpedia.org/ontology/icaoAirlineCode", "surface form": "airlines"}, {"URI": "http://dbpedia.org/ontology/race", "surface form": "fly"}]}, {"id": "482", "question": [{"language": "en", "string": "List the settlements area whose province is Metropolitan City of Venice ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/province> <http://dbpedia.org/resource/Metropolitan_City_of_Venice> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Settlement>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cona,_Veneto"}}, "entities": [{"URI": "http://dbpedia.org/resource/Metropolitan_City_of_Venice", "surface form": "Metropolitan City of Venice"}], "relations": [{"URI": "http://dbpedia.org/property/province", "surface form": "province"}, {"URI": "http://dbpedia.org/ontology/Settlement", "surface form": "settlement"}]}, {"id": "483", "question": [{"language": "en", "string": "From how many different institutes have the members of Judge Advocate General's Corps graduated?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/militaryRank> <http://dbpedia.org/resource/Judge_Advocate_General's_Corps,_United_States_Army> . ?x <http://dbpedia.org/ontology/almaMater> ?uri . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/EducationalInstitution>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/Judge_Advocate_General's_Corps,_United_States_Army", "surface form": "Judge Advocate General 's Corps"}], "relations": [{"URI": "http://dbpedia.org/ontology/university", "surface form": "institutes"}, {"URI": "http://dbpedia.org/ontology/family", "surface form": "members"}, {"URI": "http://dbpedia.org/ontology/effectiveRadiatedPower", "surface form": "graduated"}]}, {"id": "484", "question": [{"language": "en", "string": "To which city does Northeast Library belong?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Northeast_Library> <http://dbpedia.org/ontology/city> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Minneapolis"}}, "entities": [{"URI": "http://dbpedia.org/resource/Northeast_Library", "surface form": "Northeast Library"}], "relations": [{"URI": "http://dbpedia.org/ontology/city", "surface form": "city"}]}, {"id": "485", "question": [{"language": "en", "string": "What are the airline hubs of Cascade Airways?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Union_of_Cambodian_Democrats> <http://dbpedia.org/ontology/ideology> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Royalist"}}, "entities": [{"URI": "http://dbpedia.org/resource/Cascade_Airways", "surface form": "Cascade Airways"}], "relations": [{"URI": "http://dbpedia.org/property/hubs", "surface form": "hubs"}]}, {"id": "486", "question": [{"language": "en", "string": "What show has theme music composer as Ron Grainer and at the same time related to Class (2016 TV series)?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/themeMusicComposer> <http://dbpedia.org/resource/Ron_Grainer> . ?uri <http://dbpedia.org/ontology/related> <http://dbpedia.org/resource/Class_(2016_TV_series)> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Doctor_Who"}}, "entities": [{"URI": "http://dbpedia.org/resource/Ron_Grainer", "surface form": "Ron Grainer"}, {"URI": "http://dbpedia.org/resource/Class_(2016_TV_series)", "surface form": "Class (2016 TV series)"}], "relations": [{"URI": "http://dbpedia.org/ontology/show", "surface form": "show"}, {"URI": "http://dbpedia.org/ontology/time", "surface form": "time"}, {"URI": "http://dbpedia.org/ontology/related", "surface form": "related"}]}, {"id": "487", "question": [{"language": "en", "string": "What is the life stance of the ethnic groups related to Micronesia ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/related> <http://dbpedia.org/resource/Micronesia> . ?x <http://dbpedia.org/ontology/religion> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/EthnicGroup>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Animism"}}, "entities": [{"URI": "http://dbpedia.org/resource/Micronesia", "surface form": "Micronesia"}], "relations": [{"URI": "http://dbpedia.org/ontology/occupation", "surface form": "life stance"}, {"URI": "http://dbpedia.org/ontology/ethnicGroup", "surface form": "ethnic"}, {"URI": "http://dbpedia.org/ontology/related", "surface form": "related"}]}, {"id": "488", "question": [{"language": "en", "string": "Name the river whose mouth mountain is Southend-on-Sea and mouth place is Essex?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/mouthMountain> <http://dbpedia.org/resource/Southend-on-Sea> . ?uri <http://dbpedia.org/ontology/mouthPlace> <http://dbpedia.org/resource/Essex> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/River>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/River_Thames"}}, "entities": [{"URI": "http://dbpedia.org/resource/Southend-on-Sea", "surface form": "Southend-on-Sea"}, {"URI": "http://dbpedia.org/resource/Essex", "surface form": "Essex"}], "relations": [{"URI": "http://dbpedia.org/property/name", "surface form": "name"}, {"URI": "http://dbpedia.org/ontology/river", "surface form": "river"}, {"URI": "http://dbpedia.org/ontology/elevation", "surface form": "mouth mountain"}, {"URI": "http://dbpedia.org/ontology/district", "surface form": "mouth place"}]}, {"id": "489", "question": [{"language": "en", "string": "What genre's softwares are released with a GNU GPL license?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/license> <http://dbpedia.org/resource/GNU_General_Public_License> . ?x <http://dbpedia.org/property/genre> ?uri . }"}, "answers": {"uri": {"type": "literal", "xml:lang": "en", "value": "Audio"}}, "entities": [{"URI": "http://dbpedia.org/resource/Software", "surface form": " softwares"}, {"URI": "http://dbpedia.org/resource/GNU", "surface form": "GNU"}, {"URI": "http://dbpedia.org/resource/Gpl-violations.org", "surface form": "GPL license"}, {"URI": "http://dbpedia.org/resource/Gpl-violations.org", "surface form": "GPL"}, {"URI": "http://dbpedia.org/resource/GNU_Free_Documentation_License", "surface form": "GNU license"}], "relations": [{"URI": "http://dbpedia.org/ontology/genre", "surface form": "genre"}, {"URI": "http://dbpedia.org/property/released", "surface form": "released"}]}, {"id": "490", "question": [{"language": "en", "string": "Who is the leader of Allgemeine SS ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Allgemeine_SS> <http://dbpedia.org/ontology/leader> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Heinrich_Himmler"}}, "entities": [{"URI": "http://dbpedia.org/resource/Schutzstaffel", "surface form": "SS"}, {"URI": "http://dbpedia.org/resource/Allgemeine_SS", "surface form": "Allgemeine"}], "relations": [{"URI": "http://dbpedia.org/ontology/leader", "surface form": "leader"}]}, {"id": "491", "question": [{"language": "en", "string": "Where is the headquarters of Metro Transit (Minnesota) ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Metro_Transit_(Minnesota)> <http://dbpedia.org/property/headquarters> ?uri } "}, "answers": {"uri": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "560"}}, "entities": [{"URI": "http://dbpedia.org/resource/Metro_Transit_(Minnesota)", "surface form": "Metro Transit (Minnesota)"}], "relations": [{"URI": "http://dbpedia.org/property/headquarters", "surface form": "headquarters"}]}, {"id": "492", "question": [{"language": "en", "string": "Give me the count of all the names of characters created by Frank Miller"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/creators> <http://dbpedia.org/resource/Frank_Miller_(comics)> . ?x <http://dbpedia.org/property/characterName> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "1"}}, "entities": [{"URI": "http://dbpedia.org/resource/Frank_Miller_(comics)", "surface form": "Frank Miller"}], "relations": [{"URI": "http://dbpedia.org/property/creators", "surface form": "created by"}, {"URI": "http://dbpedia.org/property/characterName", "surface form": "characters"}]}, {"id": "493", "question": [{"language": "en", "string": "Where was the narrator of Spain on the Road Again born?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Spain..._on_the_Road_Again> <http://dbpedia.org/ontology/narrator> ?x . ?x <http://dbpedia.org/property/birthPlace> ?uri . }"}, "answers": {"uri": {"type": "literal", "xml:lang": "en", "value": "Seattle, Washington, U.S."}}, "entities": [{"URI": "http://dbpedia.org/resource/Spain..._on_the_Road_Again", "surface form": "Spain on the Road Again"}], "relations": [{"URI": "http://dbpedia.org/ontology/narrator", "surface form": "narrator"}, {"URI": "http://dbpedia.org/property/birthPlace", "surface form": "born"}]}, {"id": "494", "question": [{"language": "en", "string": "Where did the scientist study whose doctoral thesis was supervised by Leonard Lerman?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/doctoralAdvisor> <http://dbpedia.org/resource/Leonard_Lerman> . ?x <http://dbpedia.org/property/almaMater> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Scientist>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vanderbilt_University"}}, "entities": [{"URI": "http://dbpedia.org/resource/Leonard_Lerman", "surface form": "Leonard Lerman"}], "relations": [{"URI": "http://dbpedia.org/ontology/picture", "surface form": "scientist study"}, {"URI": "http://dbpedia.org/ontology/doctoralAdvisor", "surface form": "doctoral thesis"}, {"URI": "http://dbpedia.org/ontology/doctoralAdvisor", "surface form": "supervised"}]}, {"id": "495", "question": [{"language": "en", "string": "What is the sea whose cities are Gdask and Oulu?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/cities> <http://dbpedia.org/resource/Gda\u0144sk> . ?uri <http://dbpedia.org/property/cities> <http://dbpedia.org/resource/Oulu> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Sea>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Baltic_Sea"}}, "entities": [{"URI": "http://dbpedia.org/resource/Oulu_University_Hospital", "surface form": "Gdask and Oulu"}], "relations": [{"URI": "http://dbpedia.org/ontology/elevation", "surface form": "sea"}, {"URI": "http://dbpedia.org/ontology/country", "surface form": "cities"}]}, {"id": "496", "question": [{"language": "en", "string": "List the comic characters created by Joe Shuster ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/creators> <http://dbpedia.org/resource/Joe_Shuster> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/ComicsCharacter>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Delores_Winters"}}, "entities": [{"URI": "http://dbpedia.org/resource/Joe_Shuster", "surface form": "Joe Shuster"}], "relations": [{"URI": "http://dbpedia.org/property/creators", "surface form": "created by"}, {"URI": "http://dbpedia.org/ontology/ComicsCharacter", "surface form": "characters"}]}, {"id": "497", "question": [{"language": "en", "string": "Which kind of conventions are held in Rosemont, Illinois?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/location> <http://dbpedia.org/resource/Rosemont,_Illinois> . ?x <http://dbpedia.org/property/genre> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Convention>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Doctor_Who"}}, "entities": [{"URI": "http://dbpedia.org/resource/Rosemont,_Illinois", "surface form": "Rosemont, Illinois"}], "relations": [{"URI": "http://dbpedia.org/ontology/assembly", "surface form": "conventions"}, {"URI": "http://dbpedia.org/ontology/category", "surface form": "held"}]}, {"id": "498", "question": [{"language": "en", "string": "What city is located on the mouth of Duwamish River?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Duwamish_River> <http://dbpedia.org/ontology/riverMouth> ?x . ?x <http://dbpedia.org/property/cities> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Seattle"}}, "entities": [{"URI": "http://dbpedia.org/resource/Duwamish_River", "surface form": "Duwamish River"}], "relations": [{"URI": "http://dbpedia.org/ontology/riverMouth", "surface form": "river mouth"}, {"URI": "http://dbpedia.org/property/cities", "surface form": "city"}]}, {"id": "499", "question": [{"language": "en", "string": "Which governer of Winston Bryant is the president of Joseph Stiglitz ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Winston_Bryant> <http://dbpedia.org/property/governor> ?uri. <http://dbpedia.org/resource/Joseph_Stiglitz> <http://dbpedia.org/property/president> ?uri} "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bill_Clinton"}}, "entities": [{"URI": "http://dbpedia.org/resource/Winston_Bryant", "surface form": "Winston Bryant"}, {"URI": "http://dbpedia.org/resource/Joseph_Stiglitz", "surface form": "Joseph Stiglitz"}], "relations": [{"URI": "http://dbpedia.org/property/governor", "surface form": "governer"}, {"URI": "http://dbpedia.org/ontology/president", "surface form": "president"}]}, {"id": "500", "question": [{"language": "en", "string": "How many people have led agencies in German occupied Europe?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/jurisdiction> <http://dbpedia.org/resource/German-occupied_Europe> . ?x <http://dbpedia.org/ontology/leader> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "10"}}, "entities": [{"URI": "http://dbpedia.org/resource/Agencies_of_the_European_Union", "surface form": "agencies"}, {"URI": "http://dbpedia.org/resource/Germany", "surface form": "German"}, {"URI": "http://dbpedia.org/resource/German", "surface form": "German"}, {"URI": "http://dbpedia.org/resource/Europe", "surface form": "Europe"}], "relations": [{"URI": "http://dbpedia.org/ontology/field", "surface form": "led"}, {"URI": "http://dbpedia.org/property/about", "surface form": "occupied"}, {"URI": "http://dbpedia.org/ontology/country", "surface form": ""}, {"URI": "http://dbpedia.org/ontology/country", "surface form": ""}]}, {"id": "501", "question": [{"language": "en", "string": "Where did the plays written by Robert Schenkkan take place?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/writer> <http://dbpedia.org/resource/Robert_Schenkkan> . ?x <http://dbpedia.org/property/place> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Play>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Oregon_Shakespeare_Festival"}}, "entities": [{"URI": "http://dbpedia.org/resource/Robert_Schenkkan", "surface form": "Robert Schenkkan"}], "relations": [{"URI": "http://dbpedia.org/ontology/plays", "surface form": "plays"}, {"URI": "http://dbpedia.org/ontology/writer", "surface form": "written"}, {"URI": "http://dbpedia.org/ontology/place", "surface form": "place"}]}, {"id": "502", "question": [{"language": "en", "string": "Under which president did the predecessor of Simon Ferro work?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/successor> <http://dbpedia.org/resource/Simon_Ferro> . ?x <http://dbpedia.org/ontology/president> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bill_Clinton"}}, "entities": [{"URI": "http://dbpedia.org/resource/Simon_Ferro", "surface form": "Simon Ferro"}], "relations": [{"URI": "http://dbpedia.org/ontology/president", "surface form": "president"}, {"URI": "http://dbpedia.org/ontology/predecessor", "surface form": "predecessor"}]}, {"id": "503", "question": [{"language": "en", "string": "Name some ww1 veterans?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/battles> <http://dbpedia.org/resource/World_War_I> . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/194th_(2/1st_South_Scottish)_Brigade"}}, "entities": [{"URI": "http://dbpedia.org/resource/WW1_(album)", "surface form": "ww1 veterans"}], "relations": [{"URI": "http://dbpedia.org/ontology/name", "surface form": "name"}]}, {"id": "504", "question": [{"language": "en", "string": "Which are the predecessor of Chevrolet Caprice?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Chevrolet_Caprice> <http://dbpedia.org/ontology/predecessor> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pontiac_G8"}}, "entities": [{"URI": "http://dbpedia.org/resource/Chevrolet_Caprice", "surface form": "Chevrolet Caprice"}], "relations": [{"URI": "http://dbpedia.org/ontology/predecessor", "surface form": "predecessor"}]}, {"id": "505", "question": [{"language": "en", "string": "What is the series of the book which is a subsequent work of Blade Runner 2: The Edge of Human ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Blade_Runner_2:_The_Edge_of_Human> <http://dbpedia.org/ontology/subsequentWork> ?x . ?x <http://dbpedia.org/ontology/series> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Book>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Blade_Runner_(franchise)"}}, "entities": [{"URI": "http://dbpedia.org/resource/Blade_Runner_2:_The_Edge_of_Human", "surface form": "Blade Runner 2: The Edge of Human subsequent work"}], "relations": [{"URI": "http://dbpedia.org/ontology/series", "surface form": "series"}]}, {"id": "506", "question": [{"language": "en", "string": "For how many cities's teams did David Bowens play?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { <http://dbpedia.org/resource/David_Bowens> <http://dbpedia.org/ontology/formerTeam> ?x . ?x <http://dbpedia.org/ontology/locationCity> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/SportsTeam>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/David_Bowens", "surface form": "David Bowens"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": "cities"}, {"URI": "http://dbpedia.org/property/teams", "surface form": " teams"}, {"URI": "http://dbpedia.org/ontology/team", "surface form": "play"}]}, {"id": "507", "question": [{"language": "en", "string": "Which TV show whose theme is composed by someone signed up with ATO records?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/recordLabel> <http://dbpedia.org/resource/ATO_Records> . ?uri <http://dbpedia.org/property/themeMusicComposer> ?x . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Around_the_Horn"}}, "entities": [{"URI": "http://dbpedia.org/resource/ATO_Records", "surface form": "ATO records"}], "relations": [{"URI": "http://dbpedia.org/ontology/show", "surface form": "show"}, {"URI": "http://dbpedia.org/property/subject", "surface form": "theme"}, {"URI": "http://dbpedia.org/ontology/musicComposer", "surface form": "composed"}, {"URI": "http://dbpedia.org/ontology/movement", "surface form": "signed"}, {"URI": "http://dbpedia.org/ontology/background", "surface form": "records"}]}, {"id": "508", "question": [{"language": "en", "string": "What currencies have been prevalent in the country whose national anthem is La Marseillaise?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/anthem> <http://dbpedia.org/resource/La_Marseillaise> . ?x <http://dbpedia.org/ontology/currency> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Euro"}}, "entities": [{"URI": "http://dbpedia.org/resource/Currencies_of_Puerto_Rico", "surface form": "Currencies"}, {"URI": "http://dbpedia.org/resource/La_Marseillaise", "surface form": "La Marseillaise"}], "relations": [{"URI": "http://dbpedia.org/ontology/currency", "surface form": "prevalent"}, {"URI": "http://dbpedia.org/property/country", "surface form": "country"}, {"URI": "http://dbpedia.org/ontology/anthem", "surface form": "national anthem"}]}, {"id": "509", "question": [{"language": "en", "string": "Who is the relative of Jim Farley (businessman) ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Jim_Farley_(businessman)> <http://dbpedia.org/property/relatives> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kevin_Farley"}}, "entities": [{"URI": "http://dbpedia.org/resource/Jim_Farley_(businessman)", "surface form": "Jim Farley (businessman)"}], "relations": [{"URI": "http://dbpedia.org/property/relatives", "surface form": "relative"}]}, {"id": "510", "question": [{"language": "en", "string": "Name the institute of Alton Ochsner ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Alton_Ochsner> <http://dbpedia.org/ontology/institution> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ochsner_Medical_Center"}}, "entities": [{"URI": "http://dbpedia.org/resource/Alton_Ochsner", "surface form": "Alton Ochsner"}], "relations": [{"URI": "http://dbpedia.org/property/name", "surface form": "name"}, {"URI": "http://dbpedia.org/ontology/institution", "surface form": "institute"}]}, {"id": "511", "question": [{"language": "en", "string": "Name the scientist whose academic advisor is Karl Ewald Hasse and supervisor is Georg Meissner?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/academicAdvisor> <http://dbpedia.org/resource/Karl_Ewald_Hasse> . ?uri <http://dbpedia.org/property/doctoralAdvisor> <http://dbpedia.org/resource/Georg_Meissner> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Scientist>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Robert_Koch"}}, "entities": [{"URI": "http://dbpedia.org/resource/Scientist_(musician)", "surface form": "scientist"}, {"URI": "http://dbpedia.org/resource/Karl_Ewald_Hasse", "surface form": "Karl Ewald Hasse"}, {"URI": "http://dbpedia.org/resource/Georg_Meissner", "surface form": "Georg Meissner"}], "relations": [{"URI": "http://dbpedia.org/property/name", "surface form": "name"}, {"URI": "http://dbpedia.org/ontology/abstract", "surface form": "academic advisor"}, {"URI": "http://dbpedia.org/ontology/doctoralAdvisor", "surface form": "supervisor"}]}, {"id": "512", "question": [{"language": "en", "string": "Georg Meissner was doctoral supervisor of which scientist ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/doctoralAdvisor> <http://dbpedia.org/resource/Georg_Meissner> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Scientist>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Robert_Koch"}}, "entities": [{"URI": "http://dbpedia.org/resource/Georg_Meissner", "surface form": "Georg meissner"}, {"URI": "http://dbpedia.org/resource/Scientist", "surface form": "scientist"}], "relations": [{"URI": "http://dbpedia.org/property/doctoralAdvisor", "surface form": "doctoral supervisor"}, {"URI": "http://dbpedia.org/ontology/Scientist", "surface form": "scientist"}]}, {"id": "513", "question": [{"language": "en", "string": "Name books with publisher as Francisco de Robles and writer as Miguel de Cervantes ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/publisher> <http://dbpedia.org/resource/Francisco_de_Robles> . ?uri <http://dbpedia.org/property/author> <http://dbpedia.org/resource/Miguel_de_Cervantes> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Book>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/La_Galatea"}}, "entities": [{"URI": "http://dbpedia.org/resource/Francisco_de_Robles", "surface form": "Francisco de Robles"}, {"URI": "http://dbpedia.org/resource/Miguel_de_Cervantes", "surface form": "Miguel de Cervantes"}], "relations": [{"URI": "http://dbpedia.org/ontology/leaderName", "surface form": "name books"}, {"URI": "http://dbpedia.org/ontology/publisher", "surface form": "publisher"}, {"URI": "http://dbpedia.org/ontology/writer", "surface form": "writer"}]}, {"id": "514", "question": [{"language": "en", "string": "Who owns the schools which have a penguin as its mascot?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/mascot> <http://dbpedia.org/resource/Penguin> . ?x <http://dbpedia.org/ontology/authority> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/School>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Maine"}}, "entities": [{"URI": "http://dbpedia.org/resource/Penguin", "surface form": "penguin"}], "relations": [{"URI": "http://dbpedia.org/ontology/family", "surface form": "owns"}, {"URI": "http://dbpedia.org/ontology/discipline", "surface form": "schools"}, {"URI": "http://dbpedia.org/ontology/mascot", "surface form": "mascot"}]}, {"id": "515", "question": [{"language": "en", "string": "What nation is Hornito located in, where Jamie Bateman Cayn died too?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Jaime_Bateman_Cay\u00f3n> <http://dbpedia.org/ontology/deathPlace> ?uri. <http://dbpedia.org/resource/Hornito,_Chiriqu\u00ed> <http://dbpedia.org/ontology/country> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Panama"}}, "entities": [{"URI": "http://dbpedia.org/resource/Hornito", "surface form": "Hornito"}, {"URI": "http://dbpedia.org/resource/John_Jones_Bateman", "surface form": "Jamie Bateman Cayn"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": "nation"}, {"URI": "http://dbpedia.org/ontology/position", "surface form": "located"}, {"URI": "http://dbpedia.org/ontology/recordedIn", "surface form": "in,"}, {"URI": "http://dbpedia.org/ontology/deathDate", "surface form": "died"}]}, {"id": "516", "question": [{"language": "en", "string": "Name the resting place of Fazlur Rahman Khan ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Fazlur_Rahman_Khan> <http://dbpedia.org/ontology/restingPlace> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chicago"}}, "entities": [{"URI": "http://dbpedia.org/resource/Fazlur_Rahman_Khan", "surface form": "Fazlur Rahman Khan"}], "relations": [{"URI": "http://dbpedia.org/property/name", "surface form": "name"}, {"URI": "http://dbpedia.org/ontology/restingPlace", "surface form": "resting"}, {"URI": "http://dbpedia.org/ontology/place", "surface form": "place"}]}, {"id": "517", "question": [{"language": "en", "string": "Who is the meaning of Isa ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Isa_(name)> <http://dbpedia.org/property/meaning> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jesus"}}, "entities": [{"URI": "http://dbpedia.org/resource/Isa_(name)", "surface form": "Isa"}], "relations": [{"URI": "http://dbpedia.org/ontology/meaning", "surface form": "meaning"}]}, {"id": "518", "question": [{"language": "en", "string": "Who is venerated in Judaism and Islam?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/veneratedIn> <http://dbpedia.org/resource/Judaism> . ?uri <http://dbpedia.org/ontology/veneratedIn> <http://dbpedia.org/resource/Islam> . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Shadrach,_Meshach,_and_Abednego"}}, "entities": [{"URI": "http://dbpedia.org/resource/Judaism", "surface form": "Judaism"}, {"URI": "http://dbpedia.org/resource/Islam", "surface form": "Islam"}], "relations": [{"URI": "http://dbpedia.org/ontology/veneratedIn", "surface form": "venerated"}]}, {"id": "519", "question": [{"language": "en", "string": "Count the number teams which have former ice hockey players which also included American Hockey League ?"}], "query": {"sparql": " SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/formerTeam> <http://dbpedia.org/resource/American_Hockey_League> . ?x <http://dbpedia.org/ontology/formerTeam> ?uri }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "4131"}}, "entities": [{"URI": "http://dbpedia.org/resource/Ice_hockey", "surface form": "former ice hockey players"}, {"URI": "http://dbpedia.org/resource/Organization_of_American_States", "surface form": "American Hockey League"}, {"URI": "http://dbpedia.org/resource/American_Hockey_League", "surface form": "American Hockey League"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": "count"}, {"URI": "http://dbpedia.org/property/teams", "surface form": "teams"}, {"URI": "http://dbpedia.org/ontology/number", "surface form": "included"}, {"URI": "http://dbpedia.org/ontology/country", "surface form": ""}]}, {"id": "520", "question": [{"language": "en", "string": "List all the schools of the rugby player whose went to school named Pietermaritzburg ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/school> <http://dbpedia.org/resource/Pietermaritzburg> . ?x <http://dbpedia.org/property/school> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Maritzburg_College"}}, "entities": [{"URI": "http://dbpedia.org/resource/Pietermaritzburg", "surface form": "Pietermaritzburg"}], "relations": [{"URI": "http://dbpedia.org/ontology/ground", "surface form": "schools"}, {"URI": "http://dbpedia.org/ontology/combatant", "surface form": "rugby player"}, {"URI": "http://dbpedia.org/ontology/school", "surface form": "school"}]}, {"id": "521", "question": [{"language": "en", "string": "Name the office of Richard Coke ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Richard_Coke> <http://dbpedia.org/property/office> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/United_States_Senator"}}, "entities": [{"URI": "http://dbpedia.org/resource/Richard_Coke", "surface form": "Richard Coke"}], "relations": [{"URI": "http://dbpedia.org/ontology/name", "surface form": "name"}, {"URI": "http://dbpedia.org/ontology/office", "surface form": "office"}]}, {"id": "522", "question": [{"language": "en", "string": "How many movies did Stanley Kubrick direct?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE {?uri <http://dbpedia.org/ontology/director> <http://dbpedia.org/resource/Stanley_Kubrick> . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "16"}}, "entities": [{"URI": "http://dbpedia.org/resource/Stanley_Kubrick", "surface form": "Stanley Kubrick direct"}], "relations": [{"URI": "http://dbpedia.org/ontology/film", "surface form": "movies"}]}, {"id": "523", "question": [{"language": "en", "string": "Which city's foundeer is John Forbes?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/founder> <http://dbpedia.org/resource/John_Forbes_(British_Army_officer)> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/City>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pittsburgh"}}, "entities": [{"URI": "http://dbpedia.org/resource/John_Forbes_(British_Army_officer)", "surface form": "John Forbes"}], "relations": [{"URI": "http://dbpedia.org/ontology/city", "surface form": "city"}, {"URI": "http://dbpedia.org/property/founder", "surface form": " foundeer"}]}, {"id": "524", "question": [{"language": "en", "string": "What is the river whose mouth is in deadsea?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/riverMouth> <http://dbpedia.org/resource/Dead_Sea> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/River>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jordan_River"}}, "entities": [{"URI": "http://dbpedia.org/resource/Deadhead", "surface form": "deadsea"}], "relations": [{"URI": "http://dbpedia.org/ontology/riverMouth", "surface form": "river mouth"}]}, {"id": "525", "question": [{"language": "en", "string": "What is the allegiance of John Kotelawala ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/John_Kotelawala> <http://dbpedia.org/property/allegiance> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ceylon"}}, "entities": [{"URI": "http://dbpedia.org/resource/John_Kotelawala", "surface form": "John Kotelawala"}], "relations": [{"URI": "http://dbpedia.org/ontology/allegiance", "surface form": "allegiance"}]}, {"id": "526", "question": [{"language": "en", "string": "How many races have the horses bred by Jacques Van't Hart participated in?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/breeder> <http://dbpedia.org/resource/Jacques_Van't_Hart> . ?x <http://dbpedia.org/property/race> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "8"}}, "entities": [{"URI": "http://dbpedia.org/resource/Jacques_Van't_Hart", "surface form": "Jacques Van't Hart"}], "relations": [{"URI": "http://dbpedia.org/ontology/breeder", "surface form": "bred"}, {"URI": "http://dbpedia.org/property/race", "surface form": "race"}]}, {"id": "527", "question": [{"language": "en", "string": "What layout can be found in cars similar to the Subaru Outback?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/related> <http://dbpedia.org/resource/Subaru_Outback> . ?x <http://dbpedia.org/ontology/layout> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Automobile>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/All-wheel_drive"}}, "entities": [{"URI": "http://dbpedia.org/resource/Subaru_Outback", "surface form": "Subaru Outback"}], "relations": [{"URI": "http://dbpedia.org/ontology/layout", "surface form": "layout"}, {"URI": "http://dbpedia.org/ontology/management", "surface form": "cars"}]}, {"id": "528", "question": [{"language": "en", "string": "Name the mascot of Austin College ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Austin_College> <http://dbpedia.org/property/mascot> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kangaroo"}}, "entities": [{"URI": "http://dbpedia.org/resource/Austin_College", "surface form": "Austin College"}], "relations": [{"URI": "http://dbpedia.org/property/name", "surface form": "name"}, {"URI": "http://dbpedia.org/ontology/mascot", "surface form": "mascot"}]}, {"id": "529", "question": [{"language": "en", "string": "How many people live in Wilton, Connecticut?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE {?uri <http://dbpedia.org/property/residence> <http://dbpedia.org/resource/Wilton,_Connecticut> . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "6"}}, "entities": [{"URI": "http://dbpedia.org/resource/Wilton,_Connecticut", "surface form": "Wilton, Connecticut"}], "relations": [{"URI": "http://dbpedia.org/ontology/residence", "surface form": "live"}]}, {"id": "530", "question": [{"language": "en", "string": "What awards did the film director of The Haunted House win ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/The_Haunted_House_(1929_film)> <http://dbpedia.org/ontology/director> ?x . ?x <http://dbpedia.org/ontology/award> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Emmy_Awards"}}, "entities": [{"URI": "http://dbpedia.org/resource/The_Haunted_House_(1929_film)", "surface form": "The Haunted House"}], "relations": [{"URI": "http://dbpedia.org/ontology/director", "surface form": "film director"}, {"URI": "http://dbpedia.org/ontology/award", "surface form": "awards"}]}, {"id": "531", "question": [{"language": "en", "string": "Name the origin of Henry Cluney ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Henry_Cluney> <http://dbpedia.org/property/origin> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Belfast"}}, "entities": [{"URI": "http://dbpedia.org/resource/Henry_Cluney", "surface form": "Henry Cluney"}], "relations": [{"URI": "http://dbpedia.org/property/name", "surface form": "name"}, {"URI": "http://dbpedia.org/ontology/origin", "surface form": "origin"}]}, {"id": "532", "question": [{"language": "en", "string": "In which part of the world can i find Xynisteri and Mavro?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Xynisteri> <http://dbpedia.org/ontology/origin> ?uri. <http://dbpedia.org/resource/Mavro> <http://dbpedia.org/ontology/origin> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cyprus"}}, "entities": [{"URI": "http://dbpedia.org/resource/Xynisteri", "surface form": "Xynisteri"}, {"URI": "http://dbpedia.org/resource/Mavro", "surface form": "Mavro"}], "relations": [{"URI": "http://dbpedia.org/ontology/origin", "surface form": "in"}, {"URI": "http://dbpedia.org/ontology/origin", "surface form": "in"}]}, {"id": "533", "question": [{"language": "en", "string": "which awards have been given to people who fought in the Battle of France?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/battle> <http://dbpedia.org/resource/Battle_of_France> . ?x <http://dbpedia.org/ontology/award> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Person>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Distinguished_Flying_Cross_(United_Kingdom)"}}, "entities": [{"URI": "http://dbpedia.org/resource/Battle_of_France", "surface form": "Battle of France"}], "relations": [{"URI": "http://dbpedia.org/ontology/award", "surface form": "awards"}, {"URI": "http://dbpedia.org/ontology/type", "surface form": "fought"}]}, {"id": "534", "question": [{"language": "en", "string": "Name the resting place of Charles Edward Magoon ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Charles_Edward_Magoon> <http://dbpedia.org/property/restingplace> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lincoln,_Nebraska"}}, "entities": [{"URI": "http://dbpedia.org/resource/Charles_Edward_Magoon", "surface form": "Charles Edward Magoon"}], "relations": [{"URI": "http://dbpedia.org/property/restingplace", "surface form": "resting place"}]}, {"id": "535", "question": [{"language": "en", "string": "Who was the silver medalist of Gymnastics at the 2008 Summer Olympics Women's artistic individual all-around ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Gymnastics_at_the_2008_Summer_Olympics_\u2013_Women's_artistic_individual_all-around> <http://dbpedia.org/ontology/silverMedalist> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Shawn_Johnson_East"}}, "entities": [{"URI": "http://dbpedia.org/resource/Gymnastics_at_the_2008_Summer_Olympics", "surface form": "Gymnastics at the 2008 Summer Olympics Women"}, {"URI": "http://dbpedia.org/resource/European_Artistic_Gymnastics_Championships_\u2013_Women's_individual_all-around", "surface form": " artistic individual all-around"}], "relations": []}, {"id": "536", "question": [{"language": "en", "string": "what are some common surnames of female people?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/gender> <http://dbpedia.org/resource/Female> } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Amy"}}, "entities": [], "relations": [{"URI": "http://dbpedia.org/ontology/established", "surface form": "common surnames"}, {"URI": "http://dbpedia.org/ontology/championInSingleFemale", "surface form": "female"}]}, {"id": "537", "question": [{"language": "en", "string": "List the total number of board members who share board with Creative commons ?"}], "query": {"sparql": " SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/board> <http://dbpedia.org/resource/Creative_Commons> . ?x <http://dbpedia.org/ontology/board> ?uri }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "9"}}, "entities": [{"URI": "http://dbpedia.org/resource/Creative_Commons", "surface form": "Creative commons"}], "relations": [{"URI": "http://dbpedia.org/ontology/populationTotal", "surface form": "total"}, {"URI": "http://dbpedia.org/ontology/board", "surface form": "board members"}, {"URI": "http://dbpedia.org/ontology/part", "surface form": "share"}, {"URI": "http://dbpedia.org/ontology/board", "surface form": "board"}]}, {"id": "538", "question": [{"language": "en", "string": "How many mammals are in the Chordate phylum?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE {?uri <http://dbpedia.org/property/phylum> <http://dbpedia.org/resource/Chordate> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Mammal>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "77"}}, "entities": [{"URI": "http://dbpedia.org/resource/Mammals_of_the_Indiana_Dunes", "surface form": "mammals"}, {"URI": "http://dbpedia.org/resource/Chordate", "surface form": "Chordate phylum"}], "relations": [{"URI": "http://dbpedia.org/property/phylum", "surface form": "phylum"}, {"URI": "http://dbpedia.org/ontology/Mammal", "surface form": "mammal"}]}, {"id": "539", "question": [{"language": "en", "string": "List the battles fought by Roh Tae-woo ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Roh_Tae-woo> <http://dbpedia.org/property/battles> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vietnam_War"}}, "entities": [{"URI": "http://dbpedia.org/resource/Roh_Tae-woo", "surface form": "Roh Tae-woo"}], "relations": [{"URI": "http://dbpedia.org/property/battles", "surface form": "battles"}]}, {"id": "540", "question": [{"language": "en", "string": "Which genre of books are published by Random House?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/publisher> <http://dbpedia.org/resource/Random_House> . ?x <http://dbpedia.org/property/subject> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Book>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Courtship"}}, "entities": [{"URI": "http://dbpedia.org/resource/Random_House", "surface form": "Random House"}], "relations": [{"URI": "http://dbpedia.org/ontology/genre", "surface form": "genre"}, {"URI": "http://dbpedia.org/ontology/volume", "surface form": "books"}, {"URI": "http://dbpedia.org/ontology/publisher", "surface form": "published"}]}, {"id": "541", "question": [{"language": "en", "string": "List the common official language of the ladonia and Empire of Atlantium ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Ladonia_(micronation)> <http://dbpedia.org/ontology/officialLanguage> ?uri. <http://dbpedia.org/resource/Empire_of_Atlantium> <http://dbpedia.org/ontology/officialLanguage> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Latin"}}, "entities": [{"URI": "http://dbpedia.org/resource/Ladonia_(micronation)", "surface form": "ladonia"}, {"URI": "http://dbpedia.org/resource/Empire_of_Atlantium", "surface form": "Empire of Atlantium"}], "relations": [{"URI": "http://dbpedia.org/ontology/officialLanguage", "surface form": "official language"}, {"URI": "http://dbpedia.org/ontology/officialLanguage", "surface form": "official language"}]}, {"id": "542", "question": [{"language": "en", "string": "Who is the common manager of Aston Villa 2000-02 season and aldo the manager of Middlesbrough F.C. season 2009-10"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/2000\u201301_Aston_Villa_F.C._season> <http://dbpedia.org/property/name> ?uri. <http://dbpedia.org/resource/2009\u201310_Middlesbrough_F.C._season> <http://dbpedia.org/ontology/manager> ?uri} "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gareth_Southgate"}}, "entities": [{"URI": "http://dbpedia.org/resource/2000\u201301_Aston_Villa_F.C._season", "surface form": "Aston Villa 2000-02 season"}, {"URI": "http://dbpedia.org/resource/2009\u201310_Middlesbrough_F.C._season", "surface form": "Middlesbrough F.C. season 2009-10"}], "relations": [{"URI": "http://dbpedia.org/property/name", "surface form": "Who"}, {"URI": "http://dbpedia.org/ontology/manager", "surface form": "manager"}]}, {"id": "543", "question": [{"language": "en", "string": "Name the F1 racer with relative as Ralf Schumacher and has child named Mick Schumacher?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/relatives> <http://dbpedia.org/resource/Ralf_Schumacher> . ?uri <http://dbpedia.org/ontology/child> <http://dbpedia.org/resource/Mick_Schumacher> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/FormulaOneRacer>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Michael_Schumacher"}}, "entities": [{"URI": "http://dbpedia.org/resource/F1_2013_(video_game)", "surface form": "F1"}, {"URI": "http://dbpedia.org/resource/Racer", "surface form": "name racer"}, {"URI": "http://dbpedia.org/resource/Ralf_Schumacher", "surface form": "Ralf Schumacher"}, {"URI": "http://dbpedia.org/resource/Mick_Schumacher", "surface form": "Mick Schumacher"}], "relations": [{"URI": "http://dbpedia.org/ontology/relative", "surface form": "relative"}, {"URI": "http://dbpedia.org/ontology/child", "surface form": "child"}]}, {"id": "544", "question": [{"language": "en", "string": "What are some other products of the banks which makes Postbanken?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/product> <http://dbpedia.org/resource/Postbanken> . ?x <http://dbpedia.org/property/products> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Bank>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/American_Express"}}, "entities": [], "relations": [{"URI": "http://dbpedia.org/ontology/product", "surface form": "products"}, {"URI": "http://dbpedia.org/ontology/series", "surface form": "banks"}]}, {"id": "545", "question": [{"language": "en", "string": "What is the occupation of the Irving Chernev and Karen Grigorian?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Irving_Chernev> <http://dbpedia.org/ontology/occupation> ?uri. <http://dbpedia.org/resource/Karen_Grigorian> <http://dbpedia.org/ontology/occupation> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chess"}}, "entities": [{"URI": "http://dbpedia.org/resource/Irving_Chernev", "surface form": "Irving Chernev"}, {"URI": "http://dbpedia.org/resource/Karen_Grigorian", "surface form": "Karen Grigorian"}], "relations": [{"URI": "http://dbpedia.org/ontology/occupation", "surface form": "occupation"}]}, {"id": "546", "question": [{"language": "en", "string": "Who produces the trains operated by the MTR?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/operator> <http://dbpedia.org/resource/MTR> . ?x <http://dbpedia.org/ontology/manufacturer> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Train>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kawasaki_Railcar_Manufacturing"}}, "entities": [{"URI": "http://dbpedia.org/resource/MTR", "surface form": "MTR"}], "relations": [{"URI": "http://dbpedia.org/ontology/manufacturer", "surface form": "produces"}, {"URI": "http://dbpedia.org/property/stock", "surface form": "trains"}, {"URI": "http://dbpedia.org/ontology/operator", "surface form": "operated"}]}, {"id": "547", "question": [{"language": "en", "string": "In which countries can i find some feminist writers?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/movement> <http://dbpedia.org/resource/Feminism> . ?x <http://dbpedia.org/ontology/nationality> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Writer>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/United_States"}}, "entities": [{"URI": "http://dbpedia.org/resource/Countries_of_the_United_Kingdom", "surface form": "countries"}, {"URI": "http://dbpedia.org/resource/Feminist_stripper", "surface form": "feminist writers"}], "relations": [{"URI": "http://dbpedia.org/property/i", "surface form": "i"}]}, {"id": "548", "question": [{"language": "en", "string": "In which teams did anyone who played as a defencemen, play previously?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/position> <http://dbpedia.org/resource/Defenceman> . ?x <http://dbpedia.org/ontology/formerTeam> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Quebec_Nordiques"}}, "entities": [], "relations": [{"URI": "http://dbpedia.org/ontology/numberOfTeams", "surface form": "teams"}, {"URI": "http://dbpedia.org/ontology/portrayer", "surface form": "played"}, {"URI": "http://dbpedia.org/ontology/starring", "surface form": "play"}]}, {"id": "549", "question": [{"language": "en", "string": "Who authored the works published in the Jump Square Magazine?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/magazine> <http://dbpedia.org/resource/Jump_Square> . ?x <http://dbpedia.org/property/author> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nisio_Isin"}}, "entities": [{"URI": "http://dbpedia.org/resource/Jump_Square", "surface form": "Jump Square"}], "relations": [{"URI": "http://dbpedia.org/property/magazine", "surface form": "Magazine"}, {"URI": "http://dbpedia.org/property/author", "surface form": "author"}]}, {"id": "550", "question": [{"language": "en", "string": "How many things are aired on BBC HD?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE {?uri <http://dbpedia.org/ontology/network> <http://dbpedia.org/resource/BBC_HD> . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "57"}}, "entities": [{"URI": "http://dbpedia.org/resource/BBC", "surface form": "BBC"}, {"URI": "http://dbpedia.org/resource/HD", "surface form": "HD"}, {"URI": "http://dbpedia.org/resource/HD", "surface form": "HD"}, {"URI": "http://dbpedia.org/resource/BBC", "surface form": "BBC"}], "relations": [{"URI": "http://dbpedia.org/ontology/derivative", "surface form": "aired"}]}, {"id": "551", "question": [{"language": "en", "string": "Which work of Craig van Tilbury is close to the area of The Chess Monthyl ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/The_Chess_Monthly> <http://dbpedia.org/property/discipline> ?uri. <http://dbpedia.org/resource/Craig_Van_Tilbury> <http://dbpedia.org/ontology/occupation> ?uri} "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chess"}}, "entities": [{"URI": "http://dbpedia.org/resource/Craig_Van_Tilbury", "surface form": "Craig van Tilbury"}, {"URI": "http://dbpedia.org/resource/Chess", "surface form": "The Chess Monthyl"}], "relations": [{"URI": "http://dbpedia.org/ontology/service", "surface form": "work"}, {"URI": "http://dbpedia.org/ontology/similar", "surface form": "close"}, {"URI": "http://dbpedia.org/ontology/area", "surface form": "area"}]}, {"id": "552", "question": [{"language": "en", "string": "List bacteria whose order (taxonomy) is Bacillales and domain is Bacteria?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/order> <http://dbpedia.org/resource/Bacillales> . ?uri <http://dbpedia.org/property/domain> <http://dbpedia.org/resource/Bacteria> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Bacteria>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Aeribacillus"}}, "entities": [{"URI": "http://dbpedia.org/resource/Bacteria", "surface form": "Bacteria (taxonomy)"}, {"URI": "http://dbpedia.org/resource/Bacillales", "surface form": "Bacillales"}, {"URI": "http://dbpedia.org/resource/Bacteria", "surface form": "Bacteria"}], "relations": [{"URI": "http://dbpedia.org/ontology/domain", "surface form": "domain"}]}, {"id": "553", "question": [{"language": "en", "string": "What are some characters of series produced by Ricky Grevais?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/executiveProducer> <http://dbpedia.org/resource/Ricky_Gervais> . ?uri <http://dbpedia.org/ontology/series> ?x . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Michael_Scott_(The_Office)"}}, "entities": [{"URI": "http://dbpedia.org/resource/Ricky_Kayame", "surface form": "Ricky Grevais"}], "relations": [{"URI": "http://dbpedia.org/ontology/executiveProducer", "surface form": "produced"}, {"URI": "http://dbpedia.org/ontology/series", "surface form": "series"}]}, {"id": "554", "question": [{"language": "en", "string": "Count all those whose youth club was managed by Luis Enrique."}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/manager> <http://dbpedia.org/resource/Luis_Enrique_(footballer)> . ?uri <http://dbpedia.org/property/youthclubs> ?x . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/Luis_Enrique", "surface form": "Luis Enrique"}], "relations": [{"URI": "http://dbpedia.org/ontology/number", "surface form": "count"}, {"URI": "http://dbpedia.org/property/youthclubs", "surface form": "youth club"}, {"URI": "http://dbpedia.org/ontology/leader", "surface form": "managed"}]}, {"id": "555", "question": [{"language": "en", "string": "Whose former teams are Indianapolis Colts and Carolina Panthers?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/formerTeam> <http://dbpedia.org/resource/Indianapolis_Colts> . ?uri <http://dbpedia.org/ontology/formerTeam> <http://dbpedia.org/resource/Carolina_Panthers> . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Andre_Brown_(running_back)"}}, "entities": [{"URI": "http://dbpedia.org/resource/Indianapolis_Colts", "surface form": "Indianapolis Colts"}, {"URI": "http://dbpedia.org/resource/Carolina_Panthers", "surface form": "Carolina Panthers"}], "relations": [{"URI": "http://dbpedia.org/ontology/formerTeam", "surface form": "former team"}, {"URI": "http://dbpedia.org/ontology/formerTeam", "surface form": "former team"}]}, {"id": "556", "question": [{"language": "en", "string": "In which language is All I need is Your Sweet lovin written ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/All_I_Need_Is_Your_Sweet_Lovin'> <http://dbpedia.org/property/language> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Slovakia"}}, "entities": [{"URI": "http://dbpedia.org/resource/I", "surface form": "I"}, {"URI": "http://dbpedia.org/resource/All", "surface form": "All"}, {"URI": "http://dbpedia.org/resource/All_I_Need_Is_Your_Sweet_Lovin'", "surface form": "Your Sweet lovin"}], "relations": [{"URI": "http://dbpedia.org/ontology/language", "surface form": "language"}, {"URI": "http://dbpedia.org/ontology/writer", "surface form": "written"}]}, {"id": "557", "question": [{"language": "en", "string": "Which party does Iqbal Singh and B Shiva Rao currently belong to?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Iqbal_Singh_(politician)> <http://dbpedia.org/property/party> ?uri. <http://dbpedia.org/resource/B._Shiva_Rao> <http://dbpedia.org/property/party> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Indian_National_Congress"}}, "entities": [{"URI": "http://dbpedia.org/resource/Iqbal_Singh", "surface form": "Iqbal Singh"}, {"URI": "http://dbpedia.org/resource/B", "surface form": "B"}, {"URI": "http://dbpedia.org/resource/B._Shiva_Rao", "surface form": "Shiva Rao"}], "relations": [{"URI": "http://dbpedia.org/ontology/party", "surface form": "party"}, {"URI": "http://dbpedia.org/property/rank", "surface form": "belong"}]}, {"id": "558", "question": [{"language": "en", "string": "What sport amongst the one Lagos Preparatory School practices, did Willian Garne play for?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Lagos_Preparatory_School> <http://dbpedia.org/ontology/sport> ?uri. <http://dbpedia.org/resource/William_Garne> <http://dbpedia.org/ontology/occupation> ?uri} "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cricket"}}, "entities": [{"URI": "http://dbpedia.org/resource/Lagos_Preparatory_School", "surface form": "Lagos Preparatory School practices, did Willian Garne"}], "relations": [{"URI": "http://dbpedia.org/ontology/sport", "surface form": "sport"}, {"URI": "http://dbpedia.org/ontology/sport", "surface form": "play"}]}, {"id": "559", "question": [{"language": "en", "string": "What are the beverages whose origin is England?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/origin> <http://dbpedia.org/resource/England> } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Allington_Pippin"}}, "entities": [{"URI": "http://dbpedia.org/resource/England", "surface form": "England"}], "relations": [{"URI": "http://dbpedia.org/ontology/strength", "surface form": "beverages"}, {"URI": "http://dbpedia.org/ontology/origin", "surface form": "origin"}]}, {"id": "560", "question": [{"language": "en", "string": "What are the television shows whose distributer is HBO?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/distributor> <http://dbpedia.org/resource/HBO> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alive_Day_Memories"}}, "entities": [{"URI": "http://dbpedia.org/resource/HBO", "surface form": "HBO"}], "relations": [{"URI": "http://dbpedia.org/ontology/televisionSeries", "surface form": "television shows"}, {"URI": "http://dbpedia.org/ontology/distributor", "surface form": "distributer"}]}, {"id": "561", "question": [{"language": "en", "string": "What is the distributing label of StandBy Records ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/StandBy_Records> <http://dbpedia.org/ontology/distributingLabel> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Victory_Records"}}, "entities": [{"URI": "http://dbpedia.org/resource/StandBy_Records", "surface form": "StandBy Records"}], "relations": [{"URI": "http://dbpedia.org/ontology/distributingLabel", "surface form": "distributing"}, {"URI": "http://dbpedia.org/ontology/distributingLabel", "surface form": "label"}]}, {"id": "562", "question": [{"language": "en", "string": "Who is the film star of On Air with Ryan Seacrest ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/On_Air_with_Ryan_Seacrest> <http://dbpedia.org/ontology/starring> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Manny_Guevara"}}, "entities": [{"URI": "http://dbpedia.org/resource/On_Air_with_Ryan_Seacrest", "surface form": "On Air with Ryan Seacrest"}], "relations": [{"URI": "http://dbpedia.org/ontology/starring", "surface form": "star"}]}, {"id": "563", "question": [{"language": "en", "string": "In how many different places does Canal and River Trust own its assets?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/owner> <http://dbpedia.org/resource/Canal_&_River_Trust> . ?x <http://dbpedia.org/ontology/location> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "21"}}, "entities": [{"URI": "http://dbpedia.org/resource/Canal", "surface form": "Canal"}, {"URI": "http://dbpedia.org/resource/Canal_&_River_Trust", "surface form": "River Trust"}], "relations": [{"URI": "http://dbpedia.org/ontology/height", "surface form": "places"}, {"URI": "http://dbpedia.org/ontology/assets", "surface form": "assets"}]}, {"id": "564", "question": [{"language": "en", "string": "Count the total number of launch site of the rockets which have been launched form Cape Canaveral Air Force Station ?"}], "query": {"sparql": " SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/launchSite> <http://dbpedia.org/resource/Cape_Canaveral_Air_Force_Station> . ?x <http://dbpedia.org/ontology/launchSite> ?uri }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/Cape_Canaveral_Air_Force_Station", "surface form": "Cape Canaveral Air Force Station"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": "count"}, {"URI": "http://dbpedia.org/ontology/totalLaunches", "surface form": "total"}, {"URI": "http://dbpedia.org/ontology/launchSite", "surface form": "launch"}, {"URI": "http://dbpedia.org/ontology/capital", "surface form": "rockets"}, {"URI": "http://dbpedia.org/ontology/totalLaunches", "surface form": "launched"}]}, {"id": "565", "question": [{"language": "en", "string": "Name some comic characters created by Bruce Timm?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/creator> <http://dbpedia.org/resource/Bruce_Timm> . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Andrea_Beaumont"}}, "entities": [{"URI": "http://dbpedia.org/resource/Bruce", "surface form": "Bruce"}], "relations": [{"URI": "http://dbpedia.org/property/name", "surface form": "name"}, {"URI": "http://dbpedia.org/ontology/type", "surface form": "comic characters"}, {"URI": "http://dbpedia.org/ontology/author", "surface form": "created"}, {"URI": "http://dbpedia.org/property/mime", "surface form": "Timm"}]}, {"id": "566", "question": [{"language": "en", "string": "Which university attended by Franklin W. Olin was also the alma mater of Patty Lin ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Patty_Lin> <http://dbpedia.org/property/almaMater> ?uri. <http://dbpedia.org/resource/Franklin_W._Olin> <http://dbpedia.org/property/education> ?uri} "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cornell_University"}}, "entities": [{"URI": "http://dbpedia.org/resource/Patty_Lin", "surface form": "Patty Lin"}, {"URI": "http://dbpedia.org/resource/Franklin_W._Olin", "surface form": "Franklin W. Olin"}], "relations": [{"URI": "http://dbpedia.org/property/almaMater", "surface form": "university attended"}, {"URI": "http://dbpedia.org/property/education", "surface form": "university attended"}]}, {"id": "567", "question": [{"language": "en", "string": "Count the number of sports played by schools which play hockey ?"}], "query": {"sparql": " SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/sport> <http://dbpedia.org/resource/Hockey> . ?x <http://dbpedia.org/ontology/sport> ?uri }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/Hockey", "surface form": "hockey"}], "relations": [{"URI": "http://dbpedia.org/ontology/sport", "surface form": "sports"}, {"URI": "http://dbpedia.org/ontology/sport", "surface form": "sports"}]}, {"id": "568", "question": [{"language": "en", "string": "List the tomb of the royalties whose burial place is Little Easton ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/placeOfBurial> <http://dbpedia.org/resource/Little_Easton> . ?x <http://dbpedia.org/property/placeOfBurial> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Royalty>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Essex"}}, "entities": [{"URI": "http://dbpedia.org/resource/Royalties", "surface form": "Royalties"}, {"URI": "http://dbpedia.org/resource/Little_Easton", "surface form": "Little Easton"}], "relations": [{"URI": "http://dbpedia.org/ontology/race", "surface form": "tomb"}, {"URI": "http://dbpedia.org/ontology/district", "surface form": "burial place"}]}, {"id": "569", "question": [{"language": "en", "string": "What are some relatives of the people who fought in Operation Barbarossa?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/battle> <http://dbpedia.org/resource/Operation_Barbarossa> . ?x <http://dbpedia.org/ontology/relation> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Person>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hans-Christof_von_Sponeck"}}, "entities": [{"URI": "http://dbpedia.org/resource/Operation_Barbarossa", "surface form": "Operation Barbarossa"}], "relations": [{"URI": "http://dbpedia.org/ontology/family", "surface form": "relatives"}, {"URI": "http://dbpedia.org/ontology/type", "surface form": "fought"}]}, {"id": "570", "question": [{"language": "en", "string": "How many awards have been given to screenwriters?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/occupation> <http://dbpedia.org/resource/Screenwriter> . ?x <http://dbpedia.org/property/awards> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "300"}}, "entities": [{"URI": "http://dbpedia.org/resource/Screenwriter", "surface form": "screenwriters"}], "relations": [{"URI": "http://dbpedia.org/ontology/award", "surface form": "awards"}]}, {"id": "571", "question": [{"language": "en", "string": "How many software run on operating system is Microsoft Windows?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE {?uri <http://dbpedia.org/ontology/operatingSystem> <http://dbpedia.org/resource/Microsoft_Windows> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Software>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "2810"}}, "entities": [{"URI": "http://dbpedia.org/resource/Software", "surface form": "software"}, {"URI": "http://dbpedia.org/resource/Microsoft_Windows", "surface form": "Microsoft Windows"}], "relations": [{"URI": "http://dbpedia.org/ontology/operatingSystem", "surface form": "operating system"}, {"URI": "http://dbpedia.org/ontology/Software", "surface form": "software"}]}, {"id": "572", "question": [{"language": "en", "string": "What is the awards given to the horse whose grandson is the famous Counterpoint?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Counterpoint_(horse)> <http://dbpedia.org/property/grandsire> ?x . ?x <http://dbpedia.org/ontology/honours> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Horse>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kentucky"}}, "entities": [{"URI": "http://dbpedia.org/resource/Grandson_of_Morris_On", "surface form": "grandson"}, {"URI": "http://dbpedia.org/resource/Counterpoint_(horse)", "surface form": "famous Counterpoint"}], "relations": [{"URI": "http://dbpedia.org/ontology/award", "surface form": "awards"}, {"URI": "http://dbpedia.org/property/horsename", "surface form": "horse"}]}, {"id": "573", "question": [{"language": "en", "string": "Who won a Norbert Wiener Award for Social and Professional Responsibility?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/prizes> <http://dbpedia.org/resource/Norbert_Wiener_Award_for_Social_and_Professional_Responsibility> . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Douglas_Engelbart"}}, "entities": [{"URI": "http://dbpedia.org/resource/Norbert_Wiener_Award_for_Social_and_Professional_Responsibility", "surface form": "Norbert Wiener Award for Social and Professional Responsibility"}], "relations": [{"URI": "http://dbpedia.org/property/prizes", "surface form": "won"}]}, {"id": "574", "question": [{"language": "en", "string": "What awards have been given to Screenwriters?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/occupation> <http://dbpedia.org/resource/Screenwriter> . ?x <http://dbpedia.org/property/awards> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Writers_Guild_of_America_Awards"}}, "entities": [{"URI": "http://dbpedia.org/resource/Screenwriter", "surface form": "Screenwriters"}], "relations": [{"URI": "http://dbpedia.org/ontology/award", "surface form": "awards"}]}, {"id": "575", "question": [{"language": "en", "string": "List the show related to the which was followed by Doctor Who Extra?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/subsequentWork> <http://dbpedia.org/resource/Doctor_Who_Extra> . ?uri <http://dbpedia.org/ontology/related> ?x . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Torchwood_Declassified"}}, "entities": [{"URI": "http://dbpedia.org/resource/Doctor_Who_Extra", "surface form": "Doctor Who Extra"}], "relations": [{"URI": "http://dbpedia.org/property/show", "surface form": "show"}, {"URI": "http://dbpedia.org/ontology/related", "surface form": "related"}]}, {"id": "576", "question": [{"language": "en", "string": "What is the predecessor of the automobile which is the related of Cadillac Fleetwood?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Cadillac_Fleetwood> <http://dbpedia.org/property/related> ?x . ?x <http://dbpedia.org/ontology/predecessor> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Automobile>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Buick_Limited"}}, "entities": [{"URI": "http://dbpedia.org/resource/Cadillac_Fleetwood", "surface form": "Cadillac Fleetwood"}], "relations": [{"URI": "http://dbpedia.org/ontology/predecessor", "surface form": "predecessor"}, {"URI": "http://dbpedia.org/ontology/automobilePlatform", "surface form": "automobile"}, {"URI": "http://dbpedia.org/ontology/related", "surface form": "related"}]}, {"id": "577", "question": [{"language": "en", "string": "Which country's largest city is Lima?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/largestCity> <http://dbpedia.org/resource/Lima> } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Andean_Community"}}, "entities": [{"URI": "http://dbpedia.org/resource/Largest_octopus", "surface form": " largest city"}, {"URI": "http://dbpedia.org/resource/Lima", "surface form": "Lima"}], "relations": [{"URI": "http://dbpedia.org/ontology/largestCity", "surface form": "largest city"}]}, {"id": "578", "question": [{"language": "en", "string": "Whose opponents are Ike Clanton and Billy Clanton?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/opponent> <http://dbpedia.org/resource/Ike_Clanton> . ?uri <http://dbpedia.org/ontology/opponent> <http://dbpedia.org/resource/Billy_Clanton> . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Wyatt_Earp"}}, "entities": [{"URI": "http://dbpedia.org/resource/Ike_Clanton", "surface form": "Ike Clanton"}, {"URI": "http://dbpedia.org/resource/Billy_Clanton", "surface form": "Billy Clanton"}], "relations": [{"URI": "http://dbpedia.org/ontology/opponent", "surface form": "opponents"}]}, {"id": "579", "question": [{"language": "en", "string": "List the institute of Robert hall ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Robert_Hall_(economist)> <http://dbpedia.org/ontology/institution> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Stanford_University"}}, "entities": [{"URI": "http://dbpedia.org/resource/Robert_S._Hall", "surface form": "Robert hall"}], "relations": [{"URI": "http://dbpedia.org/ontology/institution", "surface form": "institute"}]}, {"id": "580", "question": [{"language": "en", "string": "What are the movies whose music is given by Laurie Johnson?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/music> <http://dbpedia.org/resource/Laurie_Johnson> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/And_Soon_the_Darkness"}}, "entities": [{"URI": "http://dbpedia.org/resource/Laurie_Johnson", "surface form": "Laurie Johnson"}], "relations": [{"URI": "http://dbpedia.org/property/music", "surface form": "music"}, {"URI": "http://dbpedia.org/ontology/Film", "surface form": "movie"}]}, {"id": "581", "question": [{"language": "en", "string": "What appliance Sony made after the success of PlayStation 2?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/manufacturer> <http://dbpedia.org/resource/Sony> . ?uri <http://dbpedia.org/ontology/predecessor> <http://dbpedia.org/resource/PlayStation_2> . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/PlayStation_3"}}, "entities": [{"URI": "http://dbpedia.org/resource/Appliance", "surface form": "appliance Sony"}, {"URI": "http://dbpedia.org/resource/PlayStation_2", "surface form": "PlayStation 2"}], "relations": [{"URI": "http://dbpedia.org/ontology/successor", "surface form": "success"}]}, {"id": "582", "question": [{"language": "en", "string": "What are some cars similar to luxury cars?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/class> <http://dbpedia.org/resource/Luxury_vehicle> . ?x <http://dbpedia.org/property/related> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Automobile>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rolls-Royce_Silver_Dawn"}}, "entities": [{"URI": "http://dbpedia.org/resource/Luxury_vehicle", "surface form": "luxury cars"}], "relations": [{"URI": "http://dbpedia.org/ontology/management", "surface form": "cars"}]}, {"id": "583", "question": [{"language": "en", "string": "What genre of games are made by Blizzard Entertainment studios?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/developer> <http://dbpedia.org/resource/Blizzard_Entertainment> . ?x <http://dbpedia.org/property/genre> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/VideoGame>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Simulation_game"}}, "entities": [{"URI": "http://dbpedia.org/resource/Blizzard_Entertainment", "surface form": "Blizzard Entertainment studios"}], "relations": [{"URI": "http://dbpedia.org/ontology/genre", "surface form": "genre"}, {"URI": "http://dbpedia.org/ontology/games", "surface form": "games"}]}, {"id": "584", "question": [{"language": "en", "string": "Name the series of Doctor Who: Evacuation Earth ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Doctor_Who:_Evacuation_Earth> <http://dbpedia.org/ontology/series> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Doctor_Who"}}, "entities": [{"URI": "http://dbpedia.org/resource/Doctor_Who:_Evacuation_Earth", "surface form": "Doctor Who: Evacuation Earth"}], "relations": [{"URI": "http://dbpedia.org/property/name", "surface form": "name"}, {"URI": "http://dbpedia.org/ontology/series", "surface form": "series"}]}, {"id": "585", "question": [{"language": "en", "string": "List the awards won by the writer of Face to Face ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Face_to_Face_(1976_film)> <http://dbpedia.org/property/writer> ?x . ?x <http://dbpedia.org/property/awards> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Goethe_Prize"}}, "entities": [{"URI": "http://dbpedia.org/resource/Face_to_Face_(1976_film)", "surface form": "Face to Face"}], "relations": [{"URI": "http://dbpedia.org/property/writer", "surface form": "writer"}, {"URI": "http://dbpedia.org/property/awards", "surface form": "awards"}]}, {"id": "586", "question": [{"language": "en", "string": "What awards were given to the screenplayer of The Motorcycle Diaries?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/The_Motorcycle_Diaries_(film)> <http://dbpedia.org/property/screenplay> ?x . ?x <http://dbpedia.org/property/awards> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Obie_Award"}}, "entities": [{"URI": "http://dbpedia.org/resource/The_Motorcycle_Diaries_(film)", "surface form": "The Motorcycle Diaries"}], "relations": [{"URI": "http://dbpedia.org/property/screenplay", "surface form": "screenplay"}, {"URI": "http://dbpedia.org/property/awards", "surface form": "awards"}]}, {"id": "587", "question": [{"language": "en", "string": "What are some music artists whose bands have signed up with Entertainment One Music?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/label> <http://dbpedia.org/resource/Entertainment_One_Music> . ?x <http://dbpedia.org/ontology/bandMember> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Band>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ricky_Bell_(singer)"}}, "entities": [{"URI": "http://dbpedia.org/resource/Entertainment_One_Music", "surface form": "Entertainment One Music"}], "relations": [{"URI": "http://dbpedia.org/ontology/musicSubgenre", "surface form": "music artists"}, {"URI": "http://dbpedia.org/ontology/staff", "surface form": "bands"}, {"URI": "http://dbpedia.org/ontology/movement", "surface form": "signed"}]}, {"id": "588", "question": [{"language": "en", "string": "What team did Dan Daoust and Don Ashby play for?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Dan_Daoust> <http://dbpedia.org/ontology/formerTeam> ?uri. <http://dbpedia.org/resource/Don_Ashby> <http://dbpedia.org/property/playedFor> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Toronto_Maple_Leafs"}}, "entities": [{"URI": "http://dbpedia.org/resource/Dan_Daoust", "surface form": "Dan Daoust"}, {"URI": "http://dbpedia.org/resource/Don_Ashby", "surface form": "Don Ashby"}], "relations": [{"URI": "http://dbpedia.org/ontology/formerTeam", "surface form": "team for"}, {"URI": "http://dbpedia.org/property/playedFor", "surface form": "team"}]}, {"id": "589", "question": [{"language": "en", "string": "Name the broadcast area of Radio Philippines Network ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Radio_Philippines_Network> <http://dbpedia.org/property/area> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Philippines"}}, "entities": [{"URI": "http://dbpedia.org/resource/Radio_Philippines_Network", "surface form": "Radio Philippines Network"}], "relations": [{"URI": "http://dbpedia.org/ontology/name", "surface form": "name"}, {"URI": "http://dbpedia.org/ontology/broadcastArea", "surface form": "broadcast area"}]}, {"id": "590", "question": [{"language": "en", "string": "Which religion is prevalent in the schools of the Ashanti region?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/region> <http://dbpedia.org/resource/Ashanti_Region> . ?x <http://dbpedia.org/property/denomination> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/School>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ahmadiyya_Muslim_Mission"}}, "entities": [{"URI": "http://dbpedia.org/resource/Ashanti_Region", "surface form": "Ashanti region"}], "relations": [{"URI": "http://dbpedia.org/ontology/religion", "surface form": "religion"}, {"URI": "http://dbpedia.org/ontology/currency", "surface form": "prevalent"}, {"URI": "http://dbpedia.org/ontology/ground", "surface form": "schools"}]}, {"id": "591", "question": [{"language": "en", "string": "How many different mascots are there of the NCAA teams?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/athletics> <http://dbpedia.org/resource/National_Collegiate_Athletic_Association> . ?x <http://dbpedia.org/property/mascot> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/National_Collegiate_Athletic_Association_(Philippines)", "surface form": "NCAA"}], "relations": [{"URI": "http://dbpedia.org/ontology/mascot", "surface form": "mascots"}, {"URI": "http://dbpedia.org/property/teams", "surface form": "teams"}]}, {"id": "592", "question": [{"language": "en", "string": "What are the awrds won by Laemmle Theatres ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Laemmle_Theatres> <http://dbpedia.org/ontology/service> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Academy_Awards"}}, "entities": [{"URI": "http://dbpedia.org/resource/Laemmle_Theatres", "surface form": "Laemmle Theatres"}], "relations": [{"URI": "http://dbpedia.org/ontology/award", "surface form": "awrds"}, {"URI": "http://dbpedia.org/ontology/award", "surface form": "won"}]}, {"id": "593", "question": [{"language": "en", "string": "Which maintainer of Cheasty Boulevard South is also the city of Soccer Bowl' 76 ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Soccer_Bowl_'76> <http://dbpedia.org/ontology/city> ?uri. <http://dbpedia.org/resource/Cheasty_Boulevard_South> <http://dbpedia.org/ontology/maintainedBy> ?uri} "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Seattle"}}, "entities": [{"URI": "http://dbpedia.org/resource/Cheasty_Boulevard_South", "surface form": "Cheasty Boulevard South"}, {"URI": "http://dbpedia.org/resource/Soccer_Bowl", "surface form": "Soccer Bowl"}, {"URI": "http://dbpedia.org/resource/UFC_76", "surface form": " 76"}], "relations": [{"URI": "http://dbpedia.org/ontology/maintainedBy", "surface form": "maintainer"}, {"URI": "http://dbpedia.org/ontology/city", "surface form": "city"}]}, {"id": "594", "question": [{"language": "en", "string": "Which driver came first in the 1993 European Grand Prix ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/1993_European_Grand_Prix> <http://dbpedia.org/property/firstDriver> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ayrton_Senna"}}, "entities": [{"URI": "http://dbpedia.org/resource/1993_European_Grand_Prix", "surface form": "1993 European Grand Prix"}], "relations": [{"URI": "http://dbpedia.org/property/firstDriver", "surface form": "driver first"}]}, {"id": "595", "question": [{"language": "en", "string": "What is the layout of the cars similar to that of the Subaru Outback?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/relatedMeanOfTransportation> <http://dbpedia.org/resource/Subaru_Outback> . ?x <http://dbpedia.org/ontology/layout> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Automobile>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/All-wheel_drive"}}, "entities": [{"URI": "http://dbpedia.org/resource/Subaru_Outback", "surface form": "Subaru Outback"}], "relations": [{"URI": "http://dbpedia.org/ontology/layout", "surface form": "layout"}, {"URI": "http://dbpedia.org/ontology/management", "surface form": "cars"}]}, {"id": "596", "question": [{"language": "en", "string": "How many other ingredient are there in the foods whihh have one of the ingredient as Potato ?"}], "query": {"sparql": " SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/ingredient> <http://dbpedia.org/resource/Potato> . ?x <http://dbpedia.org/ontology/ingredient> ?uri }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "996"}}, "entities": [{"URI": "http://dbpedia.org/resource/Sclafani_Foods", "surface form": "Foods whihh"}, {"URI": "http://dbpedia.org/resource/Potato", "surface form": "Potato"}], "relations": [{"URI": "http://dbpedia.org/ontology/ingredient", "surface form": "ingredient"}, {"URI": "http://dbpedia.org/ontology/ingredient", "surface form": "ingredient"}]}, {"id": "597", "question": [{"language": "en", "string": "How many companies have launched their rockets from the Vandenerg Air base?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/launchSite> <http://dbpedia.org/resource/Vandenberg_Air_Force_Base> . ?x <http://dbpedia.org/ontology/manufacturer> ?uri . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Company>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/Companies_listed_on_the_New_York_Stock_Exchange_(J)", "surface form": "companies"}, {"URI": "http://dbpedia.org/resource/Reims_\u2013_Champagne_Air_Base", "surface form": "Vandenerg Air base"}], "relations": [{"URI": "http://dbpedia.org/ontology/shipLaunch", "surface form": "launched"}, {"URI": "http://dbpedia.org/ontology/capital", "surface form": "rockets"}]}, {"id": "598", "question": [{"language": "en", "string": "What are some given names for males?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/gender> <http://dbpedia.org/resource/Male> } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Andreas"}}, "entities": [{"URI": "http://dbpedia.org/resource/Male", "surface form": "males"}], "relations": [{"URI": "http://dbpedia.org/ontology/athletics", "surface form": "names"}, {"URI": "http://dbpedia.org/ontology/sales", "surface form": "males"}]}, {"id": "599", "question": [{"language": "en", "string": "The official residence of Sukhumbhand paribatra ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Sukhumbhand_Paribatra> <http://dbpedia.org/property/residence> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bangkok"}}, "entities": [{"URI": "http://dbpedia.org/resource/Sukhumbhand_Paribatra", "surface form": "Sukhumbhand paribatra"}], "relations": [{"URI": "http://dbpedia.org/ontology/residence", "surface form": "official residence"}]}, {"id": "600", "question": [{"language": "en", "string": "What are the television shows whose company's predecessor is Desilu Productions?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/predecessor> <http://dbpedia.org/resource/Desilu_Productions> . ?uri <http://dbpedia.org/property/company> ?x . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Almost_Perfect"}}, "entities": [{"URI": "http://dbpedia.org/resource/Desilu_Productions", "surface form": "Desilu Productions"}], "relations": [{"URI": "http://dbpedia.org/ontology/televisionSeries", "surface form": "television shows"}, {"URI": "http://dbpedia.org/ontology/company", "surface form": "company"}, {"URI": "http://dbpedia.org/property/parent", "surface form": " predecessor"}]}, {"id": "601", "question": [{"language": "en", "string": "What is operated by FedExField ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/FedExField> <http://dbpedia.org/ontology/operator> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Washington_Commanders"}}, "entities": [{"URI": "http://dbpedia.org/resource/FedExField", "surface form": "FedExField"}], "relations": [{"URI": "http://dbpedia.org/ontology/operator", "surface form": "operated"}]}, {"id": "602", "question": [{"language": "en", "string": "Foxconn makes how many things?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE {?uri <http://dbpedia.org/ontology/manufacturer> <http://dbpedia.org/resource/Foxconn> . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "132"}}, "entities": [{"URI": "http://dbpedia.org/resource/Foxconn", "surface form": "Foxconn"}], "relations": []}, {"id": "603", "question": [{"language": "en", "string": "In how many nations can I find dishes made of Shallot?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/ingredient> <http://dbpedia.org/resource/Shallot> . ?x <http://dbpedia.org/ontology/country> ?uri . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Country>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "32"}}, "entities": [{"URI": "http://dbpedia.org/resource/I", "surface form": "I"}, {"URI": "http://dbpedia.org/resource/Shallot", "surface form": "Shallot"}], "relations": [{"URI": "http://dbpedia.org/ontology/state", "surface form": "nations"}, {"URI": "http://dbpedia.org/ontology/state", "surface form": "dishes"}]}, {"id": "604", "question": [{"language": "en", "string": "How many other important things have been written by the creator of Stuart Alan Jones?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { <http://dbpedia.org/resource/Stuart_Alan_Jones> <http://dbpedia.org/ontology/creator> ?x . ?x <http://dbpedia.org/ontology/notableWork> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/Stuart_Alan_Jones", "surface form": "Stuart Alan Jones"}], "relations": [{"URI": "http://dbpedia.org/ontology/creator", "surface form": "creator"}, {"URI": "http://dbpedia.org/ontology/notableWork", "surface form": "written"}]}, {"id": "605", "question": [{"language": "en", "string": "What is the genre of the Band whose home town is County Westmeath?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/hometown> <http://dbpedia.org/resource/County_Westmeath> . ?x <http://dbpedia.org/property/genre> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Band>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Indie_rock"}}, "entities": [{"URI": "http://dbpedia.org/resource/Band", "surface form": "Band"}, {"URI": "http://dbpedia.org/resource/County_Westmeath", "surface form": "County Westmeath"}], "relations": [{"URI": "http://dbpedia.org/ontology/type", "surface form": "genre"}, {"URI": "http://dbpedia.org/ontology/hometown", "surface form": "home town"}]}, {"id": "606", "question": [{"language": "en", "string": "Whose album is Haiti, I am sorry?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Haiti_I_Am_Sorry> <http://dbpedia.org/ontology/album> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Haiti"}}, "entities": [{"URI": "http://dbpedia.org/resource/Haiti_I_Am_Sorry", "surface form": "Haiti, I am sorry"}], "relations": [{"URI": "http://dbpedia.org/ontology/album", "surface form": "album"}]}, {"id": "607", "question": [{"language": "en", "string": "Name the commanders of military conflicts where Roundhead was one of the commander ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/commander> <http://dbpedia.org/resource/Roundhead_(Wyandot)> . ?x <http://dbpedia.org/ontology/commander> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/MilitaryConflict>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tecumseh"}}, "entities": [{"URI": "http://dbpedia.org/resource/Roundhead_(Wyandot)", "surface form": "Roundhead"}], "relations": [{"URI": "http://dbpedia.org/property/name", "surface form": "name"}, {"URI": "http://dbpedia.org/ontology/commander", "surface form": "commanders"}, {"URI": "http://dbpedia.org/ontology/service", "surface form": "military conflicts"}, {"URI": "http://dbpedia.org/ontology/commander", "surface form": "commander"}]}, {"id": "608", "question": [{"language": "en", "string": "What are some short story kind of Books?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/literaryGenre> <http://dbpedia.org/resource/Short_story> } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/All_the_King's_Horses_(short_story)"}}, "entities": [{"URI": "http://dbpedia.org/resource/Books_published_per_country_per_year", "surface form": "Books"}], "relations": [{"URI": "http://dbpedia.org/ontology/thumbnail", "surface form": "short story"}]}, {"id": "609", "question": [{"language": "en", "string": "What are the nicknames of the schools whose color is royal blue?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/colour> <http://dbpedia.org/resource/Royal_blue> . ?x <http://dbpedia.org/property/nickname> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/School>}"}, "answers": {"uri": {"type": "literal", "xml:lang": "en", "value": "Dandy High"}}, "entities": [{"URI": "http://dbpedia.org/resource/Royal_blue", "surface form": "royal blue"}], "relations": [{"URI": "http://dbpedia.org/ontology/denomination", "surface form": "nicknames"}, {"URI": "http://dbpedia.org/ontology/discipline", "surface form": "schools"}, {"URI": "http://dbpedia.org/ontology/hairColor", "surface form": "color"}, {"URI": "http://dbpedia.org/ontology/gross", "surface form": "royal blue"}]}, {"id": "610", "question": [{"language": "en", "string": "To what political party do the politicians graduated from Somerville college, Oxford belong to?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/almaMater> <http://dbpedia.org/resource/Somerville_College,_Oxford> . ?x <http://dbpedia.org/ontology/party> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/OfficeHolder>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Labour_Party_(UK)"}}, "entities": [{"URI": "http://dbpedia.org/resource/Politicians_of_The_Wire", "surface form": "politicians"}, {"URI": "http://dbpedia.org/resource/Somerville_College,_Oxford", "surface form": "Somerville college, Oxford"}], "relations": [{"URI": "http://dbpedia.org/property/party", "surface form": "political party"}, {"URI": "http://dbpedia.org/ontology/numberOfGraduateStudents", "surface form": "graduated"}, {"URI": "http://dbpedia.org/ontology/person", "surface form": "belong"}]}, {"id": "611", "question": [{"language": "en", "string": "What awards did Jos Rivera (playwright) win?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Jos\u00e9_Rivera_(playwright)> <http://dbpedia.org/property/awards> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Obie_Award"}}, "entities": [{"URI": "http://dbpedia.org/resource/Jos\u00e9_Rivera_(playwright)", "surface form": "Jos Rivera (playwright)"}], "relations": [{"URI": "http://dbpedia.org/property/awards", "surface form": "awards"}]}, {"id": "612", "question": [{"language": "en", "string": "Which political figures were awarded Screen Actors Guild Life Achievement Award?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/award> <http://dbpedia.org/resource/Screen_Actors_Guild_Life_Achievement_Award> . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Edward_G._Robinson"}}, "entities": [{"URI": "http://dbpedia.org/resource/Screen_Actors_Guild_Life_Achievement_Award", "surface form": "Screen Actors Guild Life Achievement Award"}], "relations": [{"URI": "http://dbpedia.org/ontology/award", "surface form": "awarded"}]}, {"id": "613", "question": [{"language": "en", "string": "What are the things whose director of photography died in United States?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/deathPlace> <http://dbpedia.org/resource/United_States> . ?uri <http://dbpedia.org/property/cinematography> ?x . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Peter_Gaya_Kaam_Se"}}, "entities": [{"URI": "http://dbpedia.org/resource/United_States", "surface form": "United States"}], "relations": [{"URI": "http://dbpedia.org/ontology/director", "surface form": "director"}, {"URI": "http://dbpedia.org/ontology/picture", "surface form": "photography"}, {"URI": "http://dbpedia.org/ontology/flag", "surface form": "died"}]}, {"id": "614", "question": [{"language": "en", "string": "What is the Home Stadium of the Kenya national under-20 football team where Matin Suji was also born ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Kenya_national_under-20_football_team> <http://dbpedia.org/property/homeStadium> ?uri. <http://dbpedia.org/resource/Martin_Suji> <http://dbpedia.org/ontology/birthPlace> ?uri} "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nairobi"}}, "entities": [{"URI": "http://dbpedia.org/resource/Kenya_national_under-20_football_team", "surface form": "Home Stadium of the Kenya national under-20 football team where Matin Suji"}], "relations": [{"URI": "http://dbpedia.org/ontology/birthYear", "surface form": "born"}]}, {"id": "615", "question": [{"language": "en", "string": "What are some scientists who have stateless citizenship?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/citizenship> <http://dbpedia.org/resource/Statelessness> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Scientist>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Albert_Einstein"}}, "entities": [{"URI": "http://dbpedia.org/resource/Statelessness", "surface form": "stateless"}], "relations": [{"URI": "http://dbpedia.org/ontology/citizenship", "surface form": "citizenship"}, {"URI": "http://dbpedia.org/ontology/Scientist", "surface form": "scientist"}]}, {"id": "616", "question": [{"language": "en", "string": "What is the protected area whose nearest city is Kenya?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/nearestCity> <http://dbpedia.org/resource/Kenya> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/ProtectedArea>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kariandusi_prehistoric_site"}}, "entities": [{"URI": "http://dbpedia.org/resource/Kenya", "surface form": "Kenya"}], "relations": [{"URI": "http://dbpedia.org/ontology/nearestCity", "surface form": "nearest city"}, {"URI": "http://dbpedia.org/ontology/ProtectedArea", "surface form": "protected area"}]}, {"id": "617", "question": [{"language": "en", "string": "Count the nearest city to the historic palce whose one of the nearest city is Wisconsin ?"}], "query": {"sparql": " SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/nearestCity> <http://dbpedia.org/resource/Wisconsin> . ?x <http://dbpedia.org/property/nearestCity> ?uri }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "32"}}, "entities": [{"URI": "http://dbpedia.org/resource/Historic_Jamestowne", "surface form": "historic palce"}, {"URI": "http://dbpedia.org/resource/Wisconsin", "surface form": "Wisconsin"}], "relations": [{"URI": "http://dbpedia.org/ontology/type", "surface form": "count"}, {"URI": "http://dbpedia.org/ontology/nearestCity", "surface form": "nearest city"}, {"URI": "http://dbpedia.org/ontology/nearestCity", "surface form": "nearest city"}]}, {"id": "618", "question": [{"language": "en", "string": "Give me the total number of commander of the military conflicts whose commander is Roundhead (Wyandot)."}], "query": {"sparql": " SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/commander> <http://dbpedia.org/resource/Roundhead_(Wyandot)> . ?x <http://dbpedia.org/ontology/commander> ?uri }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "6"}}, "entities": [{"URI": "http://dbpedia.org/resource/Roundhead_(Wyandot)", "surface form": "Roundhead (Wyandot)"}], "relations": [{"URI": "http://dbpedia.org/ontology/populationTotal", "surface form": "total"}, {"URI": "http://dbpedia.org/ontology/commander", "surface form": "commander"}, {"URI": "http://dbpedia.org/ontology/service", "surface form": "military conflicts"}, {"URI": "http://dbpedia.org/ontology/commander", "surface form": "commander"}]}, {"id": "619", "question": [{"language": "en", "string": "How many places were ruled by Elizabeth II?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE {?uri <http://dbpedia.org/property/leaderName> <http://dbpedia.org/resource/Elizabeth_II> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Place>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "19"}}, "entities": [{"URI": "http://dbpedia.org/resource/Ii", "surface form": "II"}, {"URI": "http://dbpedia.org/resource/Elizabeth", "surface form": "Elizabeth"}], "relations": [{"URI": "http://dbpedia.org/property/leaderName", "surface form": "ruled"}]}, {"id": "620", "question": [{"language": "en", "string": "List the interest of the scientists whose one of the field is Chinese poetry ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/fields> <http://dbpedia.org/resource/Chinese_poetry> . ?x <http://dbpedia.org/property/fields> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Scientist>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chinese_poetry"}}, "entities": [{"URI": "http://dbpedia.org/resource/Scientists_for_Global_Responsibility", "surface form": "scientists"}, {"URI": "http://dbpedia.org/resource/China", "surface form": "Chinese poetry"}, {"URI": "http://dbpedia.org/resource/Chinese_poetry", "surface form": "Chinese poetry"}], "relations": [{"URI": "http://dbpedia.org/ontology/field", "surface form": "field"}, {"URI": "http://dbpedia.org/ontology/country", "surface form": ""}]}, {"id": "621", "question": [{"language": "en", "string": "Which college of Luke List (golfer) is the alma mater of K. Terry Dornbush"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Luke_List_(golfer)> <http://dbpedia.org/property/college> ?uri. <http://dbpedia.org/resource/K._Terry_Dornbush> <http://dbpedia.org/property/almaMater> ?uri} "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vanderbilt_University"}}, "entities": [{"URI": "http://dbpedia.org/resource/Luke_List_(golfer)", "surface form": "Luke List (golfer)"}, {"URI": "http://dbpedia.org/resource/K", "surface form": "K"}, {"URI": "http://dbpedia.org/resource/K._Terry_Dornbush", "surface form": "Terry Dornbush"}], "relations": [{"URI": "http://dbpedia.org/ontology/college", "surface form": "college"}, {"URI": "http://dbpedia.org/ontology/almaMater", "surface form": "alma mater"}]}, {"id": "622", "question": [{"language": "en", "string": "Give me a count of bacterias which belongs to Bacilli class?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE {?uri <http://dbpedia.org/ontology/class> <http://dbpedia.org/resource/Bacilli> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Bacteria>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "664"}}, "entities": [{"URI": "http://dbpedia.org/resource/Bacilli", "surface form": "Bacilli"}], "relations": [{"URI": "http://dbpedia.org/ontology/class", "surface form": "class"}, {"URI": "http://dbpedia.org/ontology/Bacteria", "surface form": "bacteria"}]}, {"id": "623", "question": [{"language": "en", "string": "How many producers have worked for FremantleMedia productions?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/company> <http://dbpedia.org/resource/FremantleMedia> . ?x <http://dbpedia.org/ontology/producer> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "9"}}, "entities": [{"URI": "http://dbpedia.org/resource/FremantleMedia", "surface form": "FremantleMedia productions"}], "relations": [{"URI": "http://dbpedia.org/property/company", "surface form": "worked for"}, {"URI": "http://dbpedia.org/ontology/producer", "surface form": "producer"}]}, {"id": "624", "question": [{"language": "en", "string": "Which animator of Tommy Ticker's Tooth is also the director of The Haunted house ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Tommy_Tucker's_Tooth> <http://dbpedia.org/property/animator> ?uri. <http://dbpedia.org/resource/The_Haunted_House_(1929_film)> <http://dbpedia.org/ontology/director> ?uri} "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Walt_Disney"}}, "entities": [{"URI": "http://dbpedia.org/resource/Ticker_(2001_film)", "surface form": "Tommy Ticker"}, {"URI": "http://dbpedia.org/resource/The_Booth", "surface form": " Tooth"}, {"URI": "http://dbpedia.org/resource/The_Haunted_House_(1929_film)", "surface form": "The Haunted house"}], "relations": [{"URI": "http://dbpedia.org/ontology/animator", "surface form": "animator"}, {"URI": "http://dbpedia.org/ontology/director", "surface form": "director"}]}, {"id": "625", "question": [{"language": "en", "string": "How many shows are made by Larry David?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE {?uri <http://dbpedia.org/ontology/creator> <http://dbpedia.org/resource/Larry_David> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "1"}}, "entities": [{"URI": "http://dbpedia.org/resource/Larry_David", "surface form": "Larry David"}], "relations": [{"URI": "http://dbpedia.org/ontology/creator", "surface form": "made by"}]}, {"id": "626", "question": [{"language": "en", "string": "How many architects are there who have made something used by Oakland athletics?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/tenant> <http://dbpedia.org/resource/Oakland_Athletics> . ?x <http://dbpedia.org/property/architect> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "7"}}, "entities": [{"URI": "http://dbpedia.org/resource/Oakland_Athletics", "surface form": "Oakland athletics"}], "relations": [{"URI": "http://dbpedia.org/ontology/builder", "surface form": "architects"}]}, {"id": "627", "question": [{"language": "en", "string": "Where is Ethiopian Parliament Building located ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Ethiopian_Parliament_Building> <http://dbpedia.org/property/locationCountry> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ethiopia"}}, "entities": [{"URI": "http://dbpedia.org/resource/Ethiopia", "surface form": "Ethiopian Parliament Building"}, {"URI": "http://dbpedia.org/resource/Ethiopian_Parliament_Building", "surface form": "Ethiopian Parliament Building"}], "relations": [{"URI": "http://dbpedia.org/ontology/locatedInArea", "surface form": "located"}, {"URI": "http://dbpedia.org/ontology/country", "surface form": ""}]}, {"id": "628", "question": [{"language": "en", "string": "Who are the biological parents of Dannielynn Birkhead?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Dannielynn_Birkhead> <http://dbpedia.org/ontology/parent> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Anna_Nicole_Smith"}}, "entities": [{"URI": "http://dbpedia.org/resource/Dannielynn_Birkhead", "surface form": "Dannielynn Birkhead"}], "relations": [{"URI": "http://dbpedia.org/ontology/parent", "surface form": "biological parents"}]}, {"id": "629", "question": [{"language": "en", "string": "List the awards won by the spouse of Harriet Andersson?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Harriet_Andersson> <http://dbpedia.org/ontology/partner> ?x . ?x <http://dbpedia.org/property/awards> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Goethe_Prize"}}, "entities": [{"URI": "http://dbpedia.org/resource/Harriet_Andersson", "surface form": "Harriet Andersson"}], "relations": [{"URI": "http://dbpedia.org/ontology/partner", "surface form": "spouse"}, {"URI": "http://dbpedia.org/property/awards", "surface form": "awards"}]}, {"id": "630", "question": [{"language": "en", "string": "Where are Solidus and Aureus used?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/currency> <http://dbpedia.org/resource/Solidus_(coin)> . ?uri <http://dbpedia.org/ontology/currency> <http://dbpedia.org/resource/Aureus> . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/History_of_the_Roman_Empire"}}, "entities": [{"URI": "http://dbpedia.org/resource/Solidus_mark", "surface form": "Solidus and Aureus"}], "relations": []}, {"id": "631", "question": [{"language": "en", "string": "Which company owns the airlines whose hub is in Dubai?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/hubs> <http://dbpedia.org/resource/Detroit> . ?x <http://dbpedia.org/property/parent> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Airline>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ford_Motor_Company"}}, "entities": [{"URI": "http://dbpedia.org/resource/Dubai", "surface form": "Dubai"}], "relations": [{"URI": "http://dbpedia.org/ontology/company", "surface form": "company"}, {"URI": "http://dbpedia.org/ontology/relation", "surface form": "owns"}, {"URI": "http://dbpedia.org/ontology/icaoAirlineCode", "surface form": "airlines"}, {"URI": "http://dbpedia.org/property/centre", "surface form": "hub"}]}, {"id": "632", "question": [{"language": "en", "string": "Who built the Ford Y-block engine ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Ford_Y-block_engine> <http://dbpedia.org/ontology/manufacturer> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ford_Motor_Company"}}, "entities": [{"URI": "http://dbpedia.org/resource/Ford_Y-block_engine", "surface form": "Ford Y-block engine"}], "relations": [{"URI": "http://dbpedia.org/ontology/manufacturer", "surface form": "built"}]}, {"id": "633", "question": [{"language": "en", "string": "What is the region of Lumberjack ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Lumberjack_100> <http://dbpedia.org/property/region> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Norman_Township,_Michigan"}}, "entities": [{"URI": "http://dbpedia.org/resource/Lumberjack_100", "surface form": "Lumberjack"}], "relations": [{"URI": "http://dbpedia.org/ontology/region", "surface form": "region"}]}, {"id": "634", "question": [{"language": "en", "string": "How many awards have royal designers for industry awardwinners got?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/awards> <http://dbpedia.org/resource/Royal_Designers_for_Industry> . ?x <http://dbpedia.org/ontology/award> ?uri . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Award>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "8"}}, "entities": [], "relations": [{"URI": "http://dbpedia.org/ontology/award", "surface form": "awards"}, {"URI": "http://dbpedia.org/ontology/royalAnthem", "surface form": "royal designers"}, {"URI": "http://dbpedia.org/ontology/industry", "surface form": "industry awardwinners"}]}, {"id": "635", "question": [{"language": "en", "string": "Where is the team of Abdel Boucker located ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Abdel_Bouckar> <http://dbpedia.org/property/team> ?x . ?x <http://dbpedia.org/ontology/location> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lisbon"}}, "entities": [{"URI": "http://dbpedia.org/resource/Abdel_Bouckar", "surface form": "Abdel Boucker"}], "relations": [{"URI": "http://dbpedia.org/ontology/team", "surface form": "team"}, {"URI": "http://dbpedia.org/ontology/position", "surface form": "located"}]}, {"id": "636", "question": [{"language": "en", "string": "For which other teams do members of tanzanian national football team play?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/nationalteam> <http://dbpedia.org/resource/Tanzania_national_football_team> . ?x <http://dbpedia.org/ontology/team> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Stellenbosch_F.C."}}, "entities": [{"URI": "http://dbpedia.org/resource/Tanzania_national_football_team", "surface form": ""}], "relations": [{"URI": "http://dbpedia.org/ontology/team", "surface form": "teams"}, {"URI": "http://dbpedia.org/ontology/membership", "surface form": "members"}, {"URI": "http://dbpedia.org/ontology/team", "surface form": "play"}]}, {"id": "637", "question": [{"language": "en", "string": "Which Fox show is presented by Ryan Seacrest?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/presenter> <http://dbpedia.org/resource/Ryan_Seacrest> . ?uri <http://dbpedia.org/property/channel> <http://dbpedia.org/resource/Fox_Broadcasting_Company> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Knock_Knock_Live"}}, "entities": [{"URI": "http://dbpedia.org/resource/Ryan_Seacrest", "surface form": "Ryan Seacrest"}, {"URI": "http://dbpedia.org/resource/Fox_Broadcasting_Company", "surface form": "Fox"}], "relations": []}, {"id": "638", "question": [{"language": "en", "string": "How many TV show has distributor located in Burbank California ?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/locationCity> <http://dbpedia.org/resource/Burbank,_California> . ?uri <http://dbpedia.org/property/distributor> ?x . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "657"}}, "entities": [{"URI": "http://dbpedia.org/resource/Tv_test_pattern", "surface form": "TV"}, {"URI": "http://dbpedia.org/resource/Burbank,_California", "surface form": "Burbank California"}], "relations": [{"URI": "http://dbpedia.org/ontology/show", "surface form": "show"}, {"URI": "http://dbpedia.org/ontology/distributor", "surface form": "distributor"}, {"URI": "http://dbpedia.org/ontology/place", "surface form": "located"}]}, {"id": "639", "question": [{"language": "en", "string": "List the ceremonial county of East Tilbury ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/East_Tilbury> <http://dbpedia.org/ontology/ceremonialCounty> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Essex"}}, "entities": [{"URI": "http://dbpedia.org/resource/East_Tilbury", "surface form": "East Tilbury"}], "relations": [{"URI": "http://dbpedia.org/ontology/ceremonialCounty", "surface form": "ceremonial county"}]}, {"id": "640", "question": [{"language": "en", "string": "Which award that has been given to James F Obrien, had used Laemmle Theatres for some service?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Laemmle_Theatres> <http://dbpedia.org/ontology/service> ?uri. <http://dbpedia.org/resource/James_F._O'Brien> <http://dbpedia.org/ontology/award> ?uri} "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Academy_Awards"}}, "entities": [{"URI": "http://dbpedia.org/resource/Laemmle_Theatres", "surface form": "Laemmle Theatres"}, {"URI": "http://dbpedia.org/resource/James_F._O'Brien", "surface form": "James F Obrien"}], "relations": [{"URI": "http://dbpedia.org/ontology/award", "surface form": "award"}, {"URI": "http://dbpedia.org/ontology/service", "surface form": "service"}]}, {"id": "641", "question": [{"language": "en", "string": "What is the drafted team of the people expected to join toronto marlies?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/prospectTeam> <http://dbpedia.org/resource/Toronto_Marlies> . ?x <http://dbpedia.org/property/draftTeam> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Person>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Toronto_Maple_Leafs"}}, "entities": [{"URI": "http://dbpedia.org/resource/Toronto_Marlies", "surface form": "toronto marlies"}], "relations": [{"URI": "http://dbpedia.org/ontology/team", "surface form": "drafted team"}, {"URI": "http://dbpedia.org/ontology/established", "surface form": "expected"}]}, {"id": "642", "question": [{"language": "en", "string": "How many people have parterned with the person choroegraphed by Catarina Lindgren in the past?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/formerChoreographer> <http://dbpedia.org/resource/Catarina_Lindgren> . ?x <http://dbpedia.org/ontology/formerPartner> ?uri . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Person>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "11"}}, "entities": [{"URI": "http://dbpedia.org/resource/Bartered", "surface form": "Parterned"}, {"URI": "http://dbpedia.org/resource/Catarina_Lindgren", "surface form": "Catarina Lindgren"}], "relations": [{"URI": "http://dbpedia.org/ontology/person", "surface form": "person"}, {"URI": "http://dbpedia.org/property/choreographer", "surface form": "choroegraphed"}]}, {"id": "643", "question": [{"language": "en", "string": "Which famous commander led the Siege of forn meigs and was involved in the battle of fort stephenson?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Siege_of_Fort_Meigs> <http://dbpedia.org/ontology/commander> ?uri. <http://dbpedia.org/resource/Battle_of_Fort_Stephenson> <http://dbpedia.org/ontology/commander> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Henry_Procter_(British_Army_officer)"}}, "entities": [{"URI": "http://dbpedia.org/resource/Siege_of_Santiago", "surface form": "Siege"}, {"URI": "http://dbpedia.org/resource/Meigs", "surface form": "meigs"}, {"URI": "http://dbpedia.org/resource/Battle_of_Fort_Stephenson", "surface form": "fort stephenson"}], "relations": [{"URI": "http://dbpedia.org/ontology/commander", "surface form": "famous commander"}, {"URI": "http://dbpedia.org/ontology/license", "surface form": "led"}, {"URI": "http://dbpedia.org/ontology/gross", "surface form": "forn"}, {"URI": "http://dbpedia.org/ontology/result", "surface form": "involved"}, {"URI": "http://dbpedia.org/ontology/battle", "surface form": "battle"}]}, {"id": "644", "question": [{"language": "en", "string": "Which games publishers are located in California?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/location> <http://dbpedia.org/resource/California> . ?uri <http://dbpedia.org/ontology/publisher> ?x . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Airlock_(video_game)"}}, "entities": [{"URI": "http://dbpedia.org/resource/California", "surface form": "California"}], "relations": [{"URI": "http://dbpedia.org/ontology/athletics", "surface form": "games publishers"}, {"URI": "http://dbpedia.org/ontology/gross", "surface form": "located"}]}, {"id": "645", "question": [{"language": "en", "string": "Where is the stadium of Philadelphia Rage ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Philadelphia_Rage> <http://dbpedia.org/ontology/stadium> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Philadelphia"}}, "entities": [{"URI": "http://dbpedia.org/resource/Philadelphia_Rage", "surface form": "Philadelphia Rage"}], "relations": [{"URI": "http://dbpedia.org/ontology/stadium", "surface form": "stadium"}]}, {"id": "646", "question": [{"language": "en", "string": "Count all the things licensed as Software as a service."}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE {?uri <http://dbpedia.org/ontology/license> <http://dbpedia.org/resource/Software_as_a_service> . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "41"}}, "entities": [{"URI": "http://dbpedia.org/resource/Software", "surface form": "Software"}], "relations": [{"URI": "http://dbpedia.org/ontology/type", "surface form": "count"}, {"URI": "http://dbpedia.org/ontology/license", "surface form": "licensed"}, {"URI": "http://dbpedia.org/ontology/industry", "surface form": "service"}]}, {"id": "647", "question": [{"language": "en", "string": "How many broadcast area of the television stations exists whose broadcast area is Rodrigues ?"}], "query": {"sparql": " SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/broadcastArea> <http://dbpedia.org/resource/Rodrigues> . ?x <http://dbpedia.org/property/broadcastArea> ?uri }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "4"}}, "entities": [{"URI": "http://dbpedia.org/resource/Rodrigues", "surface form": "Rodrigues"}], "relations": [{"URI": "http://dbpedia.org/property/broadcastArea", "surface form": "broadcast area"}, {"URI": "http://dbpedia.org/property/broadcastArea", "surface form": "broadcast area"}]}, {"id": "648", "question": [{"language": "en", "string": "Count the drinks originated in England."}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE {?uri <http://dbpedia.org/ontology/origin> <http://dbpedia.org/resource/England> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Beverage>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "10"}}, "entities": [{"URI": "http://dbpedia.org/resource/England", "surface form": "England"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": "count"}, {"URI": "http://dbpedia.org/ontology/ground", "surface form": "drinks"}, {"URI": "http://dbpedia.org/ontology/founder", "surface form": "originated"}]}, {"id": "649", "question": [{"language": "en", "string": "What is the total number of other non-fiction subject of the books whose one of the subject is Racism?"}], "query": {"sparql": " SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/nonFictionSubject> <http://dbpedia.org/resource/Racism> . ?x <http://dbpedia.org/ontology/nonFictionSubject> ?uri }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "17"}}, "entities": [{"URI": "http://dbpedia.org/resource/Racism", "surface form": "Racism"}], "relations": [{"URI": "http://dbpedia.org/ontology/populationTotal", "surface form": "total"}, {"URI": "http://dbpedia.org/ontology/nonFictionSubject", "surface form": "non-fiction subject"}, {"URI": "http://dbpedia.org/ontology/volume", "surface form": "books"}, {"URI": "http://dbpedia.org/ontology/nonFictionSubject", "surface form": "subject"}]}, {"id": "650", "question": [{"language": "en", "string": "Name all the junctions of U.S. Route 59?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/U.S._Route_59> <http://dbpedia.org/property/junction> ?uri } "}, "answers": {"uri": {"type": "literal", "xml:lang": "en", "value": ""}}, "entities": [{"URI": "http://dbpedia.org/resource/U.S._Route_59", "surface form": "U.S. Route 59"}], "relations": [{"URI": "http://dbpedia.org/property/name", "surface form": "name"}, {"URI": "http://dbpedia.org/property/junction", "surface form": "junctions"}]}, {"id": "651", "question": [{"language": "en", "string": "What are some other services of the company whose service is Onedrive?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/service> <http://dbpedia.org/resource/OneDrive> . ?x <http://dbpedia.org/property/services> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Company>}"}, "answers": {"uri": {"type": "literal", "xml:lang": "en", "value": "Microsoft Office"}}, "entities": [{"URI": "http://dbpedia.org/resource/OneDrive", "surface form": "Onedrive"}], "relations": [{"URI": "http://dbpedia.org/ontology/service", "surface form": "services"}, {"URI": "http://dbpedia.org/ontology/company", "surface form": "company"}, {"URI": "http://dbpedia.org/ontology/service", "surface form": "service"}]}, {"id": "652", "question": [{"language": "en", "string": "Who were all the people in office when bob hawke was the PM?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/primeMinister> <http://dbpedia.org/resource/Bob_Hawke> } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Andrew_Peacock__Tenure__1"}}, "entities": [{"URI": "http://dbpedia.org/resource/Bob_Hawke", "surface form": "bob hawke"}, {"URI": "http://dbpedia.org/resource/PM", "surface form": "PM"}], "relations": [{"URI": "http://dbpedia.org/ontology/primeMinister", "surface form": "PM"}]}, {"id": "653", "question": [{"language": "en", "string": "What is Bob Adams (American football) known for?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Bob_Adams_(American_football)> <http://dbpedia.org/property/knownFor> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tight_end"}}, "entities": [{"URI": "http://dbpedia.org/resource/Bob_Adams_(American_football)", "surface form": "Bob Adams (American football)"}], "relations": [{"URI": "http://dbpedia.org/property/knownFor", "surface form": "known for"}]}, {"id": "654", "question": [{"language": "en", "string": "Who owns Chelsea F.C.?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/occupation> <http://dbpedia.org/resource/Chelsea_F.C.> . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mark_Walter"}}, "entities": [{"URI": "http://dbpedia.org/resource/FC", "surface form": "FC"}, {"URI": "http://dbpedia.org/resource/Chelsea", "surface form": "Chelsea"}], "relations": [{"URI": "http://dbpedia.org/ontology/languageFamily", "surface form": "owns"}]}, {"id": "655", "question": [{"language": "en", "string": "What is the common affiliation of the Monroe Carell Jr. Children's Hospital at Vanderbilt and alma mater of the Duncan U. Fletcher?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Monroe_Carell_Jr._Children's_Hospital_at_Vanderbilt> <http://dbpedia.org/property/affiliation> ?uri. <http://dbpedia.org/resource/Duncan_U._Fletcher> <http://dbpedia.org/ontology/almaMater> ?uri} "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vanderbilt_University"}}, "entities": [{"URI": "http://dbpedia.org/resource/Monroe_Carell_Jr._Children's_Hospital_at_Vanderbilt", "surface form": "Monroe Carell Jr. Children's Hospital at Vanderbilt"}, {"URI": "http://dbpedia.org/resource/Duncan_U._Fletcher", "surface form": "Duncan U. Fletcher"}], "relations": [{"URI": "http://dbpedia.org/property/affiliation", "surface form": "affiliation"}, {"URI": "http://dbpedia.org/ontology/almaMater", "surface form": "alma mater"}]}, {"id": "656", "question": [{"language": "en", "string": "UEM group have made bridges crossing over what?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/designer> <http://dbpedia.org/resource/UEM_Group> . ?x <http://dbpedia.org/property/crosses> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Perak_River"}}, "entities": [{"URI": "http://dbpedia.org/resource/UEM", "surface form": "uEM"}], "relations": [{"URI": "http://dbpedia.org/ontology/abstract", "surface form": "bridges"}, {"URI": "http://dbpedia.org/ontology/description", "surface form": "crossing"}]}, {"id": "657", "question": [{"language": "en", "string": "How many relatives are there of the people who died in Germany?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/placeOfDeath> <http://dbpedia.org/resource/Germany> . ?x <http://dbpedia.org/ontology/relation> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/Germany", "surface form": "Germany"}], "relations": [{"URI": "http://dbpedia.org/ontology/languageFamily", "surface form": "relatives"}, {"URI": "http://dbpedia.org/property/deathPlace", "surface form": "died"}]}, {"id": "658", "question": [{"language": "en", "string": "Where do bachelor of arts live?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/almaMater> <http://dbpedia.org/resource/Bachelor_of_Arts> . ?x <http://dbpedia.org/ontology/residence> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fort_Wright,_Kentucky"}}, "entities": [{"URI": "http://dbpedia.org/resource/Bachelor", "surface form": "bachelor"}], "relations": [{"URI": "http://dbpedia.org/ontology/board", "surface form": "arts live"}]}, {"id": "659", "question": [{"language": "en", "string": "How many mountain are there in Sierra Nevada range?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE {?uri <http://dbpedia.org/ontology/mountainRange> <http://dbpedia.org/resource/Sierra_Nevada_(U.S.)> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Mountain>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/Sierra_Nevada_(U.S.)", "surface form": "Sierra Nevada"}], "relations": [{"URI": "http://dbpedia.org/ontology/mountainRange", "surface form": "mountain range"}, {"URI": "http://dbpedia.org/ontology/Mountain", "surface form": "mountain"}]}, {"id": "660", "question": [{"language": "en", "string": "What is the total number of other characters of the plays whose characters is Robin (comics)?"}], "query": {"sparql": " SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/characters> <http://dbpedia.org/resource/Robin_(comics)> . ?x <http://dbpedia.org/property/characters> ?uri }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "12"}}, "entities": [{"URI": "http://dbpedia.org/resource/Robin_(comics)", "surface form": "Robin (comics)"}], "relations": [{"URI": "http://dbpedia.org/property/characters", "surface form": "characters"}, {"URI": "http://dbpedia.org/property/characters", "surface form": "characters"}]}, {"id": "661", "question": [{"language": "en", "string": "What are the awards won by the spouse of Liv Ullmann ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Liv_Ullmann> <http://dbpedia.org/ontology/partner> ?x . ?x <http://dbpedia.org/property/awards> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Goethe_Prize"}}, "entities": [{"URI": "http://dbpedia.org/resource/Liv_Ullmann", "surface form": "Liv Ullmann"}], "relations": [{"URI": "http://dbpedia.org/ontology/partner", "surface form": "spouse"}, {"URI": "http://dbpedia.org/property/awards", "surface form": "awards"}]}, {"id": "662", "question": [{"language": "en", "string": "What is the total number of other nearest countries to the lakes whose nearest countries is Uganda?"}], "query": {"sparql": " SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/nearestCity> <http://dbpedia.org/resource/Uganda> . ?x <http://dbpedia.org/ontology/nearestCity> ?uri }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "16"}}, "entities": [{"URI": "http://dbpedia.org/resource/Uganda", "surface form": "Uganda"}], "relations": [{"URI": "http://dbpedia.org/ontology/nearestCity", "surface form": "nearest"}, {"URI": "http://dbpedia.org/ontology/nearestCity", "surface form": "nearest"}]}, {"id": "663", "question": [{"language": "en", "string": "How many companies have developed cross platformed softwares?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/operatingSystem> <http://dbpedia.org/resource/Cross-platform> . ?x <http://dbpedia.org/ontology/developer> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "893"}}, "entities": [{"URI": "http://dbpedia.org/resource/Companies_listed_on_the_New_York_Stock_Exchange_(J)", "surface form": "companies"}, {"URI": "http://dbpedia.org/resource/Go_software", "surface form": "cross platformed softwares"}], "relations": [{"URI": "http://dbpedia.org/ontology/product", "surface form": "developed"}]}, {"id": "664", "question": [{"language": "en", "string": "List the shows whose network is run by BBC."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/owningCompany> <http://dbpedia.org/resource/BBC> . ?uri <http://dbpedia.org/ontology/network> ?x . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/All_About_Two"}}, "entities": [{"URI": "http://dbpedia.org/resource/BBC", "surface form": "BBC"}], "relations": [{"URI": "http://dbpedia.org/ontology/place", "surface form": "shows"}, {"URI": "http://dbpedia.org/ontology/network", "surface form": "network"}, {"URI": "http://dbpedia.org/property/work", "surface form": "run"}]}, {"id": "665", "question": [{"language": "en", "string": "How many titles were given to people who engaged in the Operation Dragoon?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/battles> <http://dbpedia.org/resource/Operation_Dragoon> . ?x <http://dbpedia.org/ontology/award> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "52"}}, "entities": [{"URI": "http://dbpedia.org/resource/Operation_Dragoon", "surface form": "Operation Dragoon"}], "relations": [{"URI": "http://dbpedia.org/property/title", "surface form": "titles"}, {"URI": "http://dbpedia.org/ontology/address", "surface form": "engaged"}]}, {"id": "666", "question": [{"language": "en", "string": "List the pole drivers in the grand prixes where Williams Grand Prix Engineering was a first team?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/firstTeam> <http://dbpedia.org/resource/Williams_Grand_Prix_Engineering> . ?x <http://dbpedia.org/ontology/poleDriver> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/GrandPrix>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nelson_Piquet"}}, "entities": [{"URI": "http://dbpedia.org/resource/Williams_Grand_Prix_Engineering", "surface form": "Williams Grand Prix Engineering"}], "relations": [{"URI": "http://dbpedia.org/property/poleDriver", "surface form": "pole drivers"}, {"URI": "http://dbpedia.org/ontology/grandsire", "surface form": "grand prixes"}, {"URI": "http://dbpedia.org/ontology/team", "surface form": "team"}]}, {"id": "667", "question": [{"language": "en", "string": "Who is the employer of Michael M. Sears ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Michael_M._Sears> <http://dbpedia.org/property/employer> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/McDonnell_Aircraft"}}, "entities": [{"URI": "http://dbpedia.org/resource/Michael_M._Sears", "surface form": "Michael M. Sears"}], "relations": [{"URI": "http://dbpedia.org/ontology/employer", "surface form": "employer"}]}, {"id": "668", "question": [{"language": "en", "string": "List things developed by Autoconf ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Autoconf> <http://dbpedia.org/ontology/developer> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/GNU"}}, "entities": [{"URI": "http://dbpedia.org/resource/Autoconf", "surface form": "Autoconf"}], "relations": [{"URI": "http://dbpedia.org/ontology/developer", "surface form": "developed"}]}, {"id": "669", "question": [{"language": "en", "string": "List all the artist of the TV shows which has McClain as one of the artist ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/artist> <http://dbpedia.org/resource/McClain_(band)> . ?x <http://dbpedia.org/property/artist> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bridgit_Mendler"}}, "entities": [{"URI": "http://dbpedia.org/resource/McClain_(band)", "surface form": "McClain"}], "relations": [{"URI": "http://dbpedia.org/ontology/artist", "surface form": "artist"}, {"URI": "http://dbpedia.org/ontology/artist", "surface form": "artist"}]}, {"id": "670", "question": [{"language": "en", "string": "Who all play for the Ivory Coast football team?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/nationalteam> <http://dbpedia.org/resource/Ivory_Coast_national_football_team> } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Almamy_Doumbia"}}, "entities": [{"URI": "http://dbpedia.org/resource/Ivory_Coast_national_football_team", "surface form": "Ivory Coast football team"}], "relations": [{"URI": "http://dbpedia.org/ontology/team", "surface form": "play"}]}, {"id": "671", "question": [{"language": "en", "string": "List all the layouts of the automobile whose one of the layout is four-wheel-drive layout ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/layout> <http://dbpedia.org/resource/Front-engine,_four-wheel-drive_layout> . ?x <http://dbpedia.org/ontology/layout> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Automobile>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Front-engine,_four-wheel-drive_layout"}}, "entities": [{"URI": "http://dbpedia.org/resource/Front-engine,_four-wheel-drive_layout", "surface form": "four-wheel-drive layout"}], "relations": [{"URI": "http://dbpedia.org/ontology/configuration", "surface form": "layouts"}, {"URI": "http://dbpedia.org/ontology/vehicle", "surface form": "automobile"}, {"URI": "http://dbpedia.org/ontology/layout", "surface form": "layout"}, {"URI": "http://dbpedia.org/ontology/purpose", "surface form": "four-wheel-drive layout"}]}, {"id": "672", "question": [{"language": "en", "string": "To how many places does the airlines fly, whose head office is located at the Gatwick Airport?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/headquarter> <http://dbpedia.org/resource/Gatwick_Airport> . ?x <http://dbpedia.org/property/destinations> ?uri . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Place>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "5"}}, "entities": [{"URI": "http://dbpedia.org/resource/Hi_Fly_(airline)", "surface form": "airlines fly,"}, {"URI": "http://dbpedia.org/resource/Gatwick_Airport", "surface form": "Gatwick Airport"}], "relations": [{"URI": "http://dbpedia.org/ontology/district", "surface form": "places"}, {"URI": "http://dbpedia.org/property/headquarters", "surface form": "head office"}, {"URI": "http://dbpedia.org/ontology/gross", "surface form": "located"}]}, {"id": "673", "question": [{"language": "en", "string": "Where is the arena of WPC Dynamo Moscow situated?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/WPC_Dynamo_Moscow> <http://dbpedia.org/property/arena> ?uri } "}, "answers": {"uri": {"type": "literal", "xml:lang": "en", "value": "Dynamo, Moscow"}}, "entities": [{"URI": "http://dbpedia.org/resource/WPC_Dynamo_Moscow", "surface form": "WPC Dynamo Moscow"}], "relations": [{"URI": "http://dbpedia.org/property/arena", "surface form": "arena"}, {"URI": "http://dbpedia.org/ontology/position", "surface form": "situated"}]}, {"id": "674", "question": [{"language": "en", "string": " How many scientist have won an award by the society led by Venkatraman Ramakrishnan?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/leaderName> <http://dbpedia.org/resource/Venkatraman_Ramakrishnan> . ?uri <http://dbpedia.org/property/prizes> ?x . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Scientist>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/How_Do_I_Deal", "surface form": "How"}, {"URI": "http://dbpedia.org/resource/Scientist", "surface form": "scientist"}, {"URI": "http://dbpedia.org/resource/Venkatraman_Ramakrishnan", "surface form": "Venkatraman Ramakrishnan"}], "relations": [{"URI": "http://dbpedia.org/ontology/award", "surface form": "won"}, {"URI": "http://dbpedia.org/ontology/award", "surface form": "award"}, {"URI": "http://dbpedia.org/ontology/institution", "surface form": "society"}, {"URI": "http://dbpedia.org/ontology/field", "surface form": "led"}]}, {"id": "675", "question": [{"language": "en", "string": "Who all did their high school in Denbigh high School?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/highSchool> <http://dbpedia.org/resource/Denbigh_High_School_(Newport_News,_Virginia)> } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Antoine_Bethea"}}, "entities": [{"URI": "http://dbpedia.org/resource/Denbigh_High_School_(Newport_News,_Virginia)", "surface form": "Denbigh high School"}], "relations": [{"URI": "http://dbpedia.org/property/highSchool", "surface form": "high school"}]}, {"id": "676", "question": [{"language": "en", "string": "What is the information appliance whose successor is PlayStation 4 and maker is Foxconn?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/successor> <http://dbpedia.org/resource/PlayStation_4> . ?uri <http://dbpedia.org/property/manufacturer> <http://dbpedia.org/resource/Foxconn> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/InformationAppliance>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/PlayStation_3"}}, "entities": [{"URI": "http://dbpedia.org/resource/PlayStation_4", "surface form": "PlayStation 4"}, {"URI": "http://dbpedia.org/resource/Foxconn", "surface form": "Foxconn"}], "relations": [{"URI": "http://dbpedia.org/ontology/instrument", "surface form": "appliance"}, {"URI": "http://dbpedia.org/ontology/successor", "surface form": "successor"}, {"URI": "http://dbpedia.org/ontology/manufacturer", "surface form": "maker"}]}, {"id": "677", "question": [{"language": "en", "string": "Which person has opponent Ike Clanton?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/opponent> <http://dbpedia.org/resource/Ike_Clanton> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Person>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Wyatt_Earp"}}, "entities": [{"URI": "http://dbpedia.org/resource/Ike_Clanton", "surface form": "Ike Clanton"}], "relations": [{"URI": "http://dbpedia.org/ontology/opponent", "surface form": "opponent"}, {"URI": "http://dbpedia.org/ontology/Person", "surface form": "person"}]}, {"id": "678", "question": [{"language": "en", "string": "name the mountain range of Le Gibloux ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Le_Gibloux> <http://dbpedia.org/ontology/mountainRange> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Swiss_Alps"}}, "entities": [{"URI": "http://dbpedia.org/resource/Le_Gibloux", "surface form": "Le Gibloux"}], "relations": [{"URI": "http://dbpedia.org/ontology/mountainRange", "surface form": "mountain range"}]}, {"id": "679", "question": [{"language": "en", "string": "Count me all the video game distributor whose parent company is Warner Bros ?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/parent> <http://dbpedia.org/resource/Warner_Bros.> . ?uri <http://dbpedia.org/property/distributor> ?x . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/VideoGame>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/Eastern_Distributor", "surface form": "video game distributor"}, {"URI": "http://dbpedia.org/resource/Warner_Bros.", "surface form": "Warner Bros"}], "relations": [{"URI": "http://dbpedia.org/property/parent", "surface form": "parent"}, {"URI": "http://dbpedia.org/property/distributor", "surface form": "distributor"}]}, {"id": "680", "question": [{"language": "en", "string": "Who all were involved in the wars fought by the commander Blue Jacket?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/commander> <http://dbpedia.org/resource/Blue_Jacket> . ?x <http://dbpedia.org/property/combatant> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/MilitaryConflict>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Miami_people"}}, "entities": [{"URI": "http://dbpedia.org/resource/The_Jacket", "surface form": "commander Blue Jacket"}], "relations": [{"URI": "http://dbpedia.org/ontology/address", "surface form": "involved"}, {"URI": "http://dbpedia.org/ontology/partner", "surface form": "wars"}, {"URI": "http://dbpedia.org/ontology/type", "surface form": "fought"}]}, {"id": "681", "question": [{"language": "en", "string": "Whose labels are Victor Entertainment and Celluloid Records?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/label> <http://dbpedia.org/resource/Victor_Entertainment> . ?uri <http://dbpedia.org/property/label> <http://dbpedia.org/resource/Celluloid_Records> . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fela_Kuti"}}, "entities": [{"URI": "http://dbpedia.org/resource/Victor_Entertainment", "surface form": "Victor Entertainment"}, {"URI": "http://dbpedia.org/resource/Celluloid_Records", "surface form": "Celluloid Records"}], "relations": [{"URI": "http://dbpedia.org/property/label", "surface form": "labels"}]}, {"id": "682", "question": [{"language": "en", "string": "Which astronauts went on the Gemini 8 mission?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/mission> <http://dbpedia.org/resource/Gemini_8> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Astronaut>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/David_Scott"}}, "entities": [{"URI": "http://dbpedia.org/resource/Gemini_8", "surface form": "Gemini 8 mission"}], "relations": [{"URI": "http://dbpedia.org/ontology/mission", "surface form": "mission"}]}, {"id": "683", "question": [{"language": "en", "string": " Erik Jendresen is the writer of which television show?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/writer> <http://dbpedia.org/resource/Erik_Jendresen> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Killing_Lincoln_(film)"}}, "entities": [{"URI": "http://dbpedia.org/resource/Erik_Jendresen", "surface form": "Erik Jendresen"}], "relations": [{"URI": "http://dbpedia.org/property/writer", "surface form": "writer"}, {"URI": "http://dbpedia.org/ontology/TelevisionShow", "surface form": "television show"}]}, {"id": "684", "question": [{"language": "en", "string": "How many people have written stuff broadcasted on the Tokyo Broadcasting System?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/network> <http://dbpedia.org/resource/Tokyo_Broadcasting_System> . ?x <http://dbpedia.org/property/writer> ?uri . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Person>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "23"}}, "entities": [{"URI": "http://dbpedia.org/resource/Tokyo_Broadcasting_System", "surface form": "Tokyo Broadcasting System"}], "relations": [{"URI": "http://dbpedia.org/ontology/writer", "surface form": "written"}, {"URI": "http://dbpedia.org/ontology/capital", "surface form": "stuff broadcasted"}]}, {"id": "685", "question": [{"language": "en", "string": "What cities are around the sea which flows into Marmara?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/inflow> <http://dbpedia.org/resource/Sea_of_Marmara> . ?x <http://dbpedia.org/property/cities> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Sea>}"}, "answers": {"uri": {"type": "literal", "xml:lang": "en", "value": "Alexandria, Barcelona, Algiers, Izmir, Tel Aviv-Yafo, Rome, Athens, Antalya, Beirut, Tripoli, Mersin, Marseille, Mu\u011fla, Naples, Tangier, Tunis, Split,"}}, "entities": [{"URI": "http://dbpedia.org/resource/Sea_of_Marmara", "surface form": "Marmara"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": "cities"}, {"URI": "http://dbpedia.org/ontology/elevation", "surface form": "sea"}, {"URI": "http://dbpedia.org/ontology/outflow", "surface form": "flows"}]}, {"id": "686", "question": [{"language": "en", "string": "Companies headquartered in Geneva own which TV Shows?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/headquarter> <http://dbpedia.org/resource/Geneva> . ?uri <http://dbpedia.org/property/company> ?x . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/EurovisionAgain"}}, "entities": [{"URI": "http://dbpedia.org/resource/Geneva", "surface form": "Geneva"}], "relations": [{"URI": "http://dbpedia.org/ontology/headquarter", "surface form": "headquartered"}]}, {"id": "687", "question": [{"language": "en", "string": "Who died due to Morphine ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/deathCause> <http://dbpedia.org/resource/Morphine> . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Samuel_G._Bugh"}}, "entities": [{"URI": "http://dbpedia.org/resource/Morphine", "surface form": "Morphine"}], "relations": [{"URI": "http://dbpedia.org/ontology/deathCause", "surface form": "died"}]}, {"id": "688", "question": [{"language": "en", "string": "What does the famous relative of Levon Ashotovich Grigorian do for a living?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/relatives> <http://dbpedia.org/resource/Levon_Ashotovich_Grigorian> . ?x <http://dbpedia.org/ontology/occupation> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chess"}}, "entities": [{"URI": "http://dbpedia.org/resource/Levon_Ashotovich_Grigorian", "surface form": "Levon Ashotovich Grigorian"}], "relations": [{"URI": "http://dbpedia.org/ontology/relative", "surface form": "famous relative"}, {"URI": "http://dbpedia.org/ontology/occupation", "surface form": "living"}]}, {"id": "689", "question": [{"language": "en", "string": "Who owns Ivanpah Solar Power Facility?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Ivanpah_Solar_Power_Facility> <http://dbpedia.org/ontology/owner> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Google"}}, "entities": [{"URI": "http://dbpedia.org/resource/Ivanpah_Solar_Power_Facility", "surface form": "Ivanpah Solar Power Facility"}], "relations": [{"URI": "http://dbpedia.org/ontology/owner", "surface form": "owns"}]}, {"id": "690", "question": [{"language": "en", "string": "What is the game whose genre is Mind sport?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/genre> <http://dbpedia.org/resource/Mind_sport> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Game>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Seega_(game)"}}, "entities": [{"URI": "http://dbpedia.org/resource/Mind_sport", "surface form": "Mind sport"}], "relations": [{"URI": "http://dbpedia.org/ontology/genre", "surface form": "genre"}, {"URI": "http://dbpedia.org/ontology/Game", "surface form": "game"}]}, {"id": "691", "question": [{"language": "en", "string": "List the awards given to the race horses bred by Willis Sharpe Kilmer."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/breeder> <http://dbpedia.org/resource/Willis_Sharpe_Kilmer> . ?x <http://dbpedia.org/ontology/honours> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/RaceHorse>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Blood-Horse_magazine_List_of_the_Top_100_U.S._Racehorses_of_the_20th_Century"}}, "entities": [{"URI": "http://dbpedia.org/resource/Willis_Sharpe_Kilmer", "surface form": "Willis Sharpe Kilmer"}], "relations": [{"URI": "http://dbpedia.org/ontology/endowment", "surface form": "awards"}, {"URI": "http://dbpedia.org/property/nationality", "surface form": "race horses"}, {"URI": "http://dbpedia.org/ontology/genre", "surface form": "bred"}]}, {"id": "692", "question": [{"language": "en", "string": "Which country's engineered have studied at Aero Klub in Wroclaw?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/institution> <http://dbpedia.org/resource/AeroKlub_Wroc\u0142aw> . ?x <http://dbpedia.org/property/nationality> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ukraine"}}, "entities": [{"URI": "http://dbpedia.org/resource/AeroKlub_Wroc\u0142aw", "surface form": ""}], "relations": [{"URI": "http://dbpedia.org/ontology/institution", "surface form": "Wroclaw"}, {"URI": "http://dbpedia.org/property/nationality", "surface form": "country's"}]}, {"id": "693", "question": [{"language": "en", "string": "What is the official name of Arkansas wine ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Arkansas_wine> <http://dbpedia.org/property/officialName> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Arkansas"}}, "entities": [{"URI": "http://dbpedia.org/resource/Arkansas_wine", "surface form": "Arkansas wine"}], "relations": [{"URI": "http://dbpedia.org/property/officialName", "surface form": "official name"}]}, {"id": "694", "question": [{"language": "en", "string": "Name the battle fought by the military persons who also fought in Algeria ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/battles> <http://dbpedia.org/resource/Algeria> . ?x <http://dbpedia.org/property/battles> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/MilitaryPerson>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Algeria"}}, "entities": [{"URI": "http://dbpedia.org/resource/Algeria", "surface form": "Algeria"}], "relations": [{"URI": "http://dbpedia.org/property/name", "surface form": "name"}, {"URI": "http://dbpedia.org/ontology/battle", "surface form": "battle"}, {"URI": "http://dbpedia.org/ontology/type", "surface form": "fought"}, {"URI": "http://dbpedia.org/ontology/garrison", "surface form": "military persons"}, {"URI": "http://dbpedia.org/ontology/type", "surface form": "fought"}]}, {"id": "695", "question": [{"language": "en", "string": "Bridge that starts at Seberang Perai crosses over what?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/routeStart> <http://dbpedia.org/resource/Seberang_Perai> . ?x <http://dbpedia.org/property/crosses> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Malaysia"}}, "entities": [{"URI": "http://dbpedia.org/resource/Seberang_Perai", "surface form": "Seberang Perai crosses"}], "relations": [{"URI": "http://dbpedia.org/ontology/abstract", "surface form": "bridge"}, {"URI": "http://dbpedia.org/ontology/routeStart", "surface form": "starts"}]}, {"id": "696", "question": [{"language": "en", "string": "what cities are located on the sides of mediterranean sea?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Mediterranean_Sea> <http://dbpedia.org/property/cities> ?uri } "}, "answers": {"uri": {"type": "literal", "xml:lang": "en", "value": "Alexandria, Barcelona, Algiers, Izmir, Tel Aviv-Yafo, Rome, Athens, Antalya, Beirut, Tripoli, Mersin, Marseille, Mu\u011fla, Naples, Tangier, Tunis, Split,"}}, "entities": [{"URI": "http://dbpedia.org/resource/Mediterranean_Sea", "surface form": "mediterranean sea"}], "relations": [{"URI": "http://dbpedia.org/property/cities", "surface form": "cities"}]}, {"id": "697", "question": [{"language": "en", "string": "What is the purpose of some Maharashtran organizations?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/headquarter> <http://dbpedia.org/resource/Maharashtra> . ?x <http://dbpedia.org/property/purpose> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Organisation>}"}, "answers": {"uri": {"type": "literal", "xml:lang": "en", "value": "Spirituality, Vedanta"}}, "entities": [{"URI": "http://dbpedia.org/resource/Complex_organizations", "surface form": "Maharashtran organizations"}], "relations": [{"URI": "http://dbpedia.org/ontology/purpose", "surface form": "purpose"}]}, {"id": "698", "question": [{"language": "en", "string": "In how many territories were the wars fought where Fusil Gras Mile 1874 were used?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { <http://dbpedia.org/resource/Fusil_Gras_mle_1874> <http://dbpedia.org/ontology/usedInWar> ?x . ?x <http://dbpedia.org/ontology/territory> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/MilitaryConflict>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/Territories_of_the_Democratic_Republic_of_the_Congo", "surface form": "territories"}, {"URI": "http://dbpedia.org/resource/Fusil_Gras_mle_1874", "surface form": "Fusil Gras Mile 1874"}], "relations": [{"URI": "http://dbpedia.org/property/wars", "surface form": "wars"}, {"URI": "http://dbpedia.org/ontology/type", "surface form": "fought"}]}, {"id": "699", "question": [{"language": "en", "string": "Mota Engil built bridges over which rivers?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/builder> <http://dbpedia.org/resource/Mota-Engil> . ?x <http://dbpedia.org/ontology/crosses> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Bridge>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Zambezi"}}, "entities": [{"URI": "http://dbpedia.org/resource/Mota-Engil", "surface form": "Mota Engil"}], "relations": [{"URI": "http://dbpedia.org/ontology/numberBuilt", "surface form": "built"}, {"URI": "http://dbpedia.org/ontology/abstract", "surface form": "bridges"}, {"URI": "http://dbpedia.org/ontology/river", "surface form": "rivers"}]}, {"id": "700", "question": [{"language": "en", "string": "How many other field are there of the scientists whose one of the field is Mathematics ?"}], "query": {"sparql": " SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/field> <http://dbpedia.org/resource/Mathematics> . ?x <http://dbpedia.org/ontology/field> ?uri }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "13"}}, "entities": [{"URI": "http://dbpedia.org/resource/Scientist", "surface form": "scientists"}, {"URI": "http://dbpedia.org/resource/Mathematics", "surface form": "Mathematics"}], "relations": [{"URI": "http://dbpedia.org/ontology/field", "surface form": "field"}, {"URI": "http://dbpedia.org/ontology/field", "surface form": "field"}]}, {"id": "701", "question": [{"language": "en", "string": "How many people currently play for the NYC FC?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE {?uri <http://dbpedia.org/property/currentclub> <http://dbpedia.org/resource/New_York_City_FC> . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "26"}}, "entities": [{"URI": "http://dbpedia.org/resource/New_York_City_FC", "surface form": "the NYC FC"}], "relations": [{"URI": "http://dbpedia.org/ontology/team", "surface form": "play"}]}, {"id": "702", "question": [{"language": "en", "string": "In how many other states do people live, whose languages are spoken in Nebraska?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { <http://dbpedia.org/resource/Nebraska> <http://dbpedia.org/ontology/language> ?x . ?x <http://dbpedia.org/property/region> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "11"}}, "entities": [{"URI": "http://dbpedia.org/resource/Nebraska", "surface form": "Nebraska"}], "relations": [{"URI": "http://dbpedia.org/ontology/populationTotal", "surface form": "live,"}, {"URI": "http://dbpedia.org/ontology/language", "surface form": "languages"}, {"URI": "http://dbpedia.org/ontology/spokenIn", "surface form": "spoken"}]}, {"id": "703", "question": [{"language": "en", "string": "Name the alma mater of Michael hahn ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Michael_Hahn> <http://dbpedia.org/ontology/almaMater> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tulane_University"}}, "entities": [{"URI": "http://dbpedia.org/resource/Michael", "surface form": "Michael"}], "relations": [{"URI": "http://dbpedia.org/property/name", "surface form": "name"}, {"URI": "http://dbpedia.org/ontology/school", "surface form": "alma mater"}, {"URI": "http://dbpedia.org/property/tahn", "surface form": "hahn"}]}, {"id": "704", "question": [{"language": "en", "string": "List the governers of Jimmie Lou Fisher?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Jimmie_Lou_Fisher> <http://dbpedia.org/property/governor> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Frank_D._White"}}, "entities": [{"URI": "http://dbpedia.org/resource/Jimmie_Lou_Fisher", "surface form": "Jimmie Lou Fisher"}], "relations": [{"URI": "http://dbpedia.org/property/governor", "surface form": "governers"}]}, {"id": "705", "question": [{"language": "en", "string": "How many people have played for a club whose coach is Fred Hoiberg?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/coach> <http://dbpedia.org/resource/Fred_Hoiberg> . ?uri <http://dbpedia.org/property/team> ?x . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/Fred_Hoiberg", "surface form": "Fred Hoiberg"}], "relations": [{"URI": "http://dbpedia.org/ontology/coach", "surface form": "played"}, {"URI": "http://dbpedia.org/ontology/club", "surface form": "club"}, {"URI": "http://dbpedia.org/ontology/coach", "surface form": "coach"}]}, {"id": "706", "question": [{"language": "en", "string": "Where is Carmel Winery?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Carmel_Winery> <http://dbpedia.org/property/locationCountry> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Israel"}}, "entities": [{"URI": "http://dbpedia.org/resource/Carmel_Winery", "surface form": "Carmel Winery"}], "relations": []}, {"id": "707", "question": [{"language": "en", "string": "How many different organizations own the railway lines which are a part of Norfolk Southern Railway?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/system> <http://dbpedia.org/resource/Norfolk_Southern_Railway> . ?x <http://dbpedia.org/property/owner> ?uri . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Organisation>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "10"}}, "entities": [{"URI": "http://dbpedia.org/resource/Norfolk_Southern_Railway", "surface form": "Norfolk Southern Railway"}], "relations": [{"URI": "http://dbpedia.org/ontology/company", "surface form": "organizations"}, {"URI": "http://dbpedia.org/ontology/servingRailwayLine", "surface form": "railway lines"}]}, {"id": "708", "question": [{"language": "en", "string": "Which shows had their painters born in England?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/birthPlace> <http://dbpedia.org/resource/England> . ?uri <http://dbpedia.org/ontology/creator> ?x . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dark_Blue_(TV_series)"}}, "entities": [{"URI": "http://dbpedia.org/resource/England", "surface form": "England"}], "relations": [{"URI": "http://dbpedia.org/ontology/place", "surface form": "shows"}, {"URI": "http://dbpedia.org/ontology/author", "surface form": "painters"}, {"URI": "http://dbpedia.org/ontology/birthPlace", "surface form": "born"}]}, {"id": "709", "question": [{"language": "en", "string": "Who are the politicians whose death place is Ontario?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/deathPlace> <http://dbpedia.org/resource/Ontario> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Politician>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alistair_Fraser_(parliamentary_official)"}}, "entities": [{"URI": "http://dbpedia.org/resource/Politicians_of_The_Wire", "surface form": "politicians"}, {"URI": "http://dbpedia.org/resource/Ontario", "surface form": "Ontario"}], "relations": [{"URI": "http://dbpedia.org/ontology/deathPlace", "surface form": "death place"}, {"URI": "http://dbpedia.org/ontology/Politician", "surface form": "politician"}]}, {"id": "710", "question": [{"language": "en", "string": "Which statesman is married to Dolley Madison?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/spouse> <http://dbpedia.org/resource/Dolley_Madison> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/OfficeHolder>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/James_Madison"}}, "entities": [{"URI": "http://dbpedia.org/resource/Statesman", "surface form": "statesman"}, {"URI": "http://dbpedia.org/resource/Dolley_Madison", "surface form": "Dolley Madison"}], "relations": [{"URI": "http://dbpedia.org/ontology/spouse", "surface form": "married"}]}, {"id": "711", "question": [{"language": "en", "string": "How many theme musics have been composed by Julian Gingell?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE {?uri <http://dbpedia.org/property/themeMusicComposer> <http://dbpedia.org/resource/Julian_Gingell> . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "7"}}, "entities": [{"URI": "http://dbpedia.org/resource/Julian_Gingell", "surface form": "Julian Gingell"}], "relations": [{"URI": "http://dbpedia.org/property/themeMusicComposer", "surface form": "composed"}]}, {"id": "712", "question": [{"language": "en", "string": "What is the stylistic origin of Wizard rock ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Wizard_rock> <http://dbpedia.org/ontology/stylisticOrigin> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Geek_rock"}}, "entities": [{"URI": "http://dbpedia.org/resource/Wizard_rock", "surface form": "Wizard rock"}], "relations": [{"URI": "http://dbpedia.org/ontology/stylisticOrigin", "surface form": "stylistic origin"}]}, {"id": "713", "question": [{"language": "en", "string": "List the fields of the scientists with Sanskrit as one of the interest ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/fields> <http://dbpedia.org/resource/Sanskrit> . ?x <http://dbpedia.org/property/fields> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Scientist>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sanskrit"}}, "entities": [{"URI": "http://dbpedia.org/resource/Scientist", "surface form": "scientists"}, {"URI": "http://dbpedia.org/resource/Sanskrit", "surface form": "Sanskrit"}], "relations": [{"URI": "http://dbpedia.org/ontology/field", "surface form": "fields"}]}, {"id": "714", "question": [{"language": "en", "string": "What are the movies whose director's daughter is Luke Scott?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/child> <http://dbpedia.org/resource/Luke_Scott_(director)> . ?uri <http://dbpedia.org/property/director> ?x . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/All_the_Money_in_the_World"}}, "entities": [{"URI": "http://dbpedia.org/resource/Luke_Scott_(director)", "surface form": "Luke Scott"}], "relations": [{"URI": "http://dbpedia.org/ontology/film", "surface form": "movies"}, {"URI": "http://dbpedia.org/ontology/director", "surface form": "director"}, {"URI": "http://dbpedia.org/ontology/child", "surface form": " daughter"}]}, {"id": "715", "question": [{"language": "en", "string": "List the other members of the band of which Juelz Santana is a part?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/currentMembers> <http://dbpedia.org/resource/Juelz_Santana> . ?x <http://dbpedia.org/ontology/bandMember> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Band>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Juelz_Santana"}}, "entities": [{"URI": "http://dbpedia.org/resource/Juelz_Santana", "surface form": "Juelz Santana"}], "relations": [{"URI": "http://dbpedia.org/ontology/part", "surface form": "members"}, {"URI": "http://dbpedia.org/ontology/band", "surface form": "band"}]}, {"id": "716", "question": [{"language": "en", "string": "Give me a count of everything made by the company which offers electronical manufacturing too."}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/service> <http://dbpedia.org/resource/Electronics_manufacturing_services> . ?uri <http://dbpedia.org/ontology/manufacturer> ?x . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "133"}}, "entities": [], "relations": [{"URI": "http://dbpedia.org/ontology/time", "surface form": "count"}, {"URI": "http://dbpedia.org/ontology/company", "surface form": "company"}, {"URI": "http://dbpedia.org/ontology/quote", "surface form": "offers"}, {"URI": "http://dbpedia.org/ontology/production", "surface form": "electronical manufacturing"}]}, {"id": "717", "question": [{"language": "en", "string": "How many games have been composed by Hirokazu Tanaka?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE {?uri <http://dbpedia.org/property/composer> <http://dbpedia.org/resource/Hirokazu_Tanaka> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/VideoGame>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "28"}}, "entities": [{"URI": "http://dbpedia.org/resource/Hirokazu_Tanaka", "surface form": "Hirokazu Tanaka"}], "relations": [{"URI": "http://dbpedia.org/property/composer", "surface form": "composed"}, {"URI": "http://dbpedia.org/ontology/VideoGame", "surface form": "games"}]}, {"id": "718", "question": [{"language": "en", "string": "What awards did the cast members of Gods of Egypt win?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Gods_of_Egypt_(film)> <http://dbpedia.org/ontology/starring> ?x . ?x <http://dbpedia.org/property/awards> ?uri . }"}, "answers": {"uri": {"type": "literal", "xml:lang": "en", "value": "Various awards, including:\n*1 Academy Award \n*1 BAFTA Award \n*1 Emmy Award (Primetime) \n*2 Golden Globe Awards\n*4 Screen Actors Guild Awards\n*1 Tony Award"}}, "entities": [{"URI": "http://dbpedia.org/resource/Gods_of_Egypt_(film)", "surface form": "Gods of Egypt"}], "relations": [{"URI": "http://dbpedia.org/ontology/starring", "surface form": "cast members"}, {"URI": "http://dbpedia.org/property/awards", "surface form": "awards"}]}, {"id": "719", "question": [{"language": "en", "string": "In which city is the hub airport of Club One Air?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Club_One_Air> <http://dbpedia.org/ontology/hubAirport> ?x . ?x <http://dbpedia.org/property/cityServed> ?uri . }"}, "answers": {"uri": {"type": "literal", "xml:lang": "en", "value": "Mumbai since 1928"}}, "entities": [{"URI": "http://dbpedia.org/resource/Club_One_Air", "surface form": "Club One Air"}], "relations": [{"URI": "http://dbpedia.org/ontology/hubAirport", "surface form": "hub airport"}, {"URI": "http://dbpedia.org/property/cityServed", "surface form": "city"}]}, {"id": "720", "question": [{"language": "en", "string": "Where did the relatives of Gustavo Rojas Pinilla study?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/relation> <http://dbpedia.org/resource/Gustavo_Rojas_Pinilla> . ?x <http://dbpedia.org/property/almaMater> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Our_Lady_of_the_Rosary_University"}}, "entities": [{"URI": "http://dbpedia.org/resource/Gustavo_Rojas_Pinilla", "surface form": "Gustavo Rojas Pinilla study"}], "relations": [{"URI": "http://dbpedia.org/ontology/relation", "surface form": "relatives"}]}, {"id": "721", "question": [{"language": "en", "string": "For how many things are americans famous for?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/placeOfBirth> <http://dbpedia.org/resource/United_States> . ?x <http://dbpedia.org/ontology/knownFor> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [], "relations": [{"URI": "http://dbpedia.org/ontology/established", "surface form": "americans famous"}]}, {"id": "722", "question": [{"language": "en", "string": "Who is the successor of McDonnell Douglas ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/McDonnell_Douglas> <http://dbpedia.org/property/successor> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/MD_Helicopters"}}, "entities": [{"URI": "http://dbpedia.org/resource/McDonnell_Douglas", "surface form": "McDonnell Douglas"}], "relations": [{"URI": "http://dbpedia.org/ontology/successor", "surface form": "successor"}]}, {"id": "723", "question": [{"language": "en", "string": "What is the publisher of Lucifer's Hammer ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Lucifer's_Hammer> <http://dbpedia.org/ontology/publisher> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Del_Rey_Books"}}, "entities": [{"URI": "http://dbpedia.org/resource/Lucifer's_Hammer", "surface form": "Lucifer's Hammer"}], "relations": [{"URI": "http://dbpedia.org/ontology/publisher", "surface form": "publisher"}]}, {"id": "724", "question": [{"language": "en", "string": "List the origin of the weapons which were used in the American Revolutionary War."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/usedInWar> <http://dbpedia.org/resource/American_Revolutionary_War> . ?x <http://dbpedia.org/property/origin> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Weapon>}"}, "answers": {"uri": {"type": "literal", "xml:lang": "en", "value": "England"}}, "entities": [{"URI": "http://dbpedia.org/resource/Organization_of_American_States", "surface form": "American Revolutionary War"}, {"URI": "http://dbpedia.org/resource/American_Revolutionary_War", "surface form": "American Revolutionary War"}], "relations": [{"URI": "http://dbpedia.org/ontology/origin", "surface form": "origin"}, {"URI": "http://dbpedia.org/ontology/numberOfSeasons", "surface form": "weapons"}, {"URI": "http://dbpedia.org/ontology/country", "surface form": ""}]}, {"id": "725", "question": [{"language": "en", "string": "Purnima Banerjee and Rishang Keishing are politicians of what party ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Rishang_Keishing> <http://dbpedia.org/property/party> ?uri. <http://dbpedia.org/resource/Purnima_Banerjee> <http://dbpedia.org/ontology/party> ?uri} "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Indian_National_Congress"}}, "entities": [{"URI": "http://dbpedia.org/resource/Purnima_Banerjee", "surface form": "Purnima banerjee"}, {"URI": "http://dbpedia.org/resource/Rishang_Keishing", "surface form": "Rishang Keishing"}, {"URI": "http://dbpedia.org/resource/Politicians_of_The_Wire", "surface form": "politicians"}], "relations": [{"URI": "http://dbpedia.org/ontology/party", "surface form": "party"}]}, {"id": "726", "question": [{"language": "en", "string": "Which show's theme music composer's label is MapleMusic Recordings?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/recordLabel> <http://dbpedia.org/resource/MapleMusic_Recordings> . ?uri <http://dbpedia.org/property/themeMusicComposer> ?x . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cheyenne_Cinnamon_and_the_Fantabulous_Unicorn_of_Sugar_Town_Candy_Fudge"}}, "entities": [{"URI": "http://dbpedia.org/resource/Theme_Music_from_%22The_James_Dean_Story%22", "surface form": " theme music composer"}, {"URI": "http://dbpedia.org/resource/MapleMusic_Recordings", "surface form": "MapleMusic Recordings"}], "relations": [{"URI": "http://dbpedia.org/ontology/show", "surface form": "show"}, {"URI": "http://dbpedia.org/property/label", "surface form": " label"}]}, {"id": "727", "question": [{"language": "en", "string": "List the former team of the american football players born in Pennsylvania ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/birthPlace> <http://dbpedia.org/resource/Pennsylvania> . ?x <http://dbpedia.org/ontology/formerTeam> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/AmericanFootballPlayer>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hammond_Pros"}}, "entities": [{"URI": "http://dbpedia.org/resource/American_football", "surface form": "american football players"}, {"URI": "http://dbpedia.org/resource/Pennsylvania", "surface form": "Pennsylvania"}], "relations": [{"URI": "http://dbpedia.org/ontology/formerTeam", "surface form": "former team"}, {"URI": "http://dbpedia.org/ontology/birthPlace", "surface form": "born"}]}, {"id": "728", "question": [{"language": "en", "string": "How many things belong to a division of plant kingdom?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/kingdom> <http://dbpedia.org/resource/Plant> . ?uri <http://dbpedia.org/ontology/division> ?x . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [], "relations": [{"URI": "http://dbpedia.org/ontology/date", "surface form": "belong"}, {"URI": "http://dbpedia.org/ontology/division", "surface form": "division"}, {"URI": "http://dbpedia.org/ontology/position", "surface form": "plant kingdom"}]}, {"id": "729", "question": [{"language": "en", "string": "What are the countries for which History of Trier principal to?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/capital> <http://dbpedia.org/resource/History_of_Trier> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Country>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gallia_Belgica"}}, "entities": [{"URI": "http://dbpedia.org/resource/Countries_of_the_United_Kingdom", "surface form": "countries"}, {"URI": "http://dbpedia.org/resource/History_of_Trier", "surface form": "History of Trier principal"}], "relations": []}, {"id": "730", "question": [{"language": "en", "string": "Where was Antonio Giannini born?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Antonio_Giannini> <http://dbpedia.org/ontology/birthPlace> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Venezuela"}}, "entities": [{"URI": "http://dbpedia.org/resource/Antonio_Giannini", "surface form": "Antonio Giannini"}], "relations": [{"URI": "http://dbpedia.org/ontology/birthPlace", "surface form": "born"}]}, {"id": "731", "question": [{"language": "en", "string": "Give me all tv shows which are based in boston and massachusetts?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/location> <http://dbpedia.org/resource/Boston> . ?uri <http://dbpedia.org/ontology/location> <http://dbpedia.org/resource/Massachusetts> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Evening_at_Pops"}}, "entities": [{"URI": "http://dbpedia.org/resource/Boston", "surface form": "boston"}, {"URI": "http://dbpedia.org/resource/Massachusetts", "surface form": "massachusetts"}], "relations": [{"URI": "http://dbpedia.org/ontology/location", "surface form": "based in"}, {"URI": "http://dbpedia.org/ontology/location", "surface form": "based in"}]}, {"id": "732", "question": [{"language": "en", "string": "What are some non fiction subjects dealt with in fantasy novels?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/literaryGenre> <http://dbpedia.org/resource/Fantasy> . ?x <http://dbpedia.org/ontology/nonFictionSubject> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Book>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Piracy"}}, "entities": [{"URI": "http://dbpedia.org/resource/Fantasy", "surface form": "fantasy novels"}], "relations": [{"URI": "http://dbpedia.org/ontology/nonFictionSubject", "surface form": "fiction subjects"}, {"URI": "http://dbpedia.org/ontology/field", "surface form": "dealt"}]}, {"id": "733", "question": [{"language": "en", "string": "Name everyone working for a company owned by Roman Abramovich."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/owningCompany> <http://dbpedia.org/resource/Roman_Abramovich> . ?uri <http://dbpedia.org/ontology/occupation> ?x . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Aleksandr_Frolov_(businessman)"}}, "entities": [{"URI": "http://dbpedia.org/resource/Roman_Abramovich", "surface form": "Roman Abramovich"}], "relations": [{"URI": "http://dbpedia.org/property/name", "surface form": "name"}, {"URI": "http://dbpedia.org/ontology/capital", "surface form": "working"}, {"URI": "http://dbpedia.org/ontology/company", "surface form": "company"}, {"URI": "http://dbpedia.org/ontology/owner", "surface form": "owned"}]}, {"id": "734", "question": [{"language": "en", "string": " Who astronaut from NASA was on the mission of Apollo 11?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/mission> <http://dbpedia.org/resource/Apollo_11> . ?uri <http://dbpedia.org/property/type> <http://dbpedia.org/resource/NASA> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Astronaut>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Michael_Collins_(astronaut)"}}, "entities": [{"URI": "http://dbpedia.org/resource/NASA", "surface form": "NASA"}, {"URI": "http://dbpedia.org/resource/Commercial_astronaut", "surface form": "Who astronaut from"}, {"URI": "http://dbpedia.org/resource/Apollo_11", "surface form": "Apollo 11"}], "relations": [{"URI": "http://dbpedia.org/ontology/mission", "surface form": "mission"}]}, {"id": "735", "question": [{"language": "en", "string": "Which politicians died in cities built by the Roman emperor Charles 5?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/builder> <http://dbpedia.org/resource/Charles_V,_Holy_Roman_Emperor> . ?uri <http://dbpedia.org/ontology/deathPlace> ?x . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/OfficeHolder>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Toussaint_Louverture"}}, "entities": [{"URI": "http://dbpedia.org/resource/Charles_V,_Holy_Roman_Emperor", "surface form": "emperor charles roman"}], "relations": [{"URI": "http://dbpedia.org/ontology/deathDate", "surface form": "died"}, {"URI": "http://dbpedia.org/ontology/country", "surface form": "cities"}, {"URI": "http://dbpedia.org/ontology/numberBuilt", "surface form": "built"}]}, {"id": "736", "question": [{"language": "en", "string": "In how many different places can I find companies which were founded in toronto?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/foundationPlace> <http://dbpedia.org/resource/Toronto> . ?x <http://dbpedia.org/property/locations> ?uri . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Place>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/I", "surface form": "I"}, {"URI": "http://dbpedia.org/resource/Companies_listed_on_the_New_York_Stock_Exchange_(J)", "surface form": "companies"}, {"URI": "http://dbpedia.org/resource/Toronto", "surface form": "toronto"}], "relations": [{"URI": "http://dbpedia.org/property/height", "surface form": "places"}, {"URI": "http://dbpedia.org/ontology/foundingYear", "surface form": "founded"}]}, {"id": "737", "question": [{"language": "en", "string": "What are some relatives of the spouse of Uncle henry from Oz?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/spouse> <http://dbpedia.org/resource/Uncle_Henry_(Oz)> . ?uri <http://dbpedia.org/ontology/relative> ?x . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dorothy_Gale"}}, "entities": [{"URI": "http://dbpedia.org/resource/Uncle_Henry_(Oz)", "surface form": "Uncle henry from Oz"}], "relations": [{"URI": "http://dbpedia.org/ontology/relative", "surface form": "relatives"}, {"URI": "http://dbpedia.org/ontology/spouse", "surface form": "spouse"}]}, {"id": "738", "question": [{"language": "en", "string": "List the people who were the first one to climb a mountain in California?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/locatedInArea> <http://dbpedia.org/resource/California> . ?x <http://dbpedia.org/ontology/firstAscentPerson> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Mountain>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Norman_Clyde"}}, "entities": [{"URI": "http://dbpedia.org/resource/California", "surface form": "California"}], "relations": [{"URI": "http://dbpedia.org/ontology/place", "surface form": "climb"}, {"URI": "http://dbpedia.org/ontology/elevation", "surface form": "mountain"}]}, {"id": "739", "question": [{"language": "en", "string": "Give a list of all the labels that have jazz fusion artists signed up with them?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/genre> <http://dbpedia.org/resource/Jazz_fusion> . ?x <http://dbpedia.org/ontology/recordLabel> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/MusicalArtist>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Blue_Note_Records"}}, "entities": [{"URI": "http://dbpedia.org/resource/Jazz_fusion", "surface form": "jazz fusion"}], "relations": [{"URI": "http://dbpedia.org/property/label", "surface form": "labels"}, {"URI": "http://dbpedia.org/ontology/movement", "surface form": "signed"}]}, {"id": "740", "question": [{"language": "en", "string": "Which college has been attended by both Mr. Hubert Wiggs and Mr. Alvin Bell?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Hubert_Wiggs> <http://dbpedia.org/ontology/college> ?uri. <http://dbpedia.org/resource/Alvin_Bell> <http://dbpedia.org/ontology/college> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vanderbilt_University"}}, "entities": [{"URI": "http://dbpedia.org/resource/Hubert_Wiggs", "surface form": "Mr Hubert Wiggs"}, {"URI": "http://dbpedia.org/resource/Alvin_Bell", "surface form": "Mr Alvin Bell"}], "relations": [{"URI": "http://dbpedia.org/ontology/college", "surface form": "college"}, {"URI": "http://dbpedia.org/ontology/fat", "surface form": "attended"}]}, {"id": "741", "question": [{"language": "en", "string": "What is the mascot of Blytheville High School ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Blytheville_High_School> <http://dbpedia.org/property/mascot> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chickasaw"}}, "entities": [{"URI": "http://dbpedia.org/resource/Blytheville_High_School", "surface form": "Blytheville High School"}], "relations": [{"URI": "http://dbpedia.org/ontology/mascot", "surface form": "mascot"}]}, {"id": "742", "question": [{"language": "en", "string": "In which television shows has Eliza Schneider given her voice?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/voices> <http://dbpedia.org/resource/Eliza_Schneider> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Squirrel_Boy"}}, "entities": [{"URI": "http://dbpedia.org/resource/Eliza_Schneider", "surface form": "Eliza Schneider"}], "relations": [{"URI": "http://dbpedia.org/property/voices", "surface form": "voice"}, {"URI": "http://dbpedia.org/ontology/TelevisionShow", "surface form": "television show"}]}, {"id": "743", "question": [{"language": "en", "string": "What are some islands in the bahamas?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/archipelago> <http://dbpedia.org/resource/The_Bahamas> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Island>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Andros,_Bahamas"}}, "entities": [{"URI": "http://dbpedia.org/resource/The_Bahamas", "surface form": "the bahamas"}], "relations": [{"URI": "http://dbpedia.org/property/majorIslands", "surface form": "islands"}]}, {"id": "744", "question": [{"language": "en", "string": "In which state does the ambassador who is in related with J Bennett Johnston live?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/J._Bennett_Johnston> <http://dbpedia.org/ontology/relation> ?x . ?x <http://dbpedia.org/property/state> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Indiana"}}, "entities": [{"URI": "http://dbpedia.org/resource/J._Bennett_Johnston", "surface form": "J Bennett Johnston"}], "relations": [{"URI": "http://dbpedia.org/property/representative", "surface form": "ambassador"}, {"URI": "http://dbpedia.org/ontology/related", "surface form": "related"}]}, {"id": "745", "question": [{"language": "en", "string": "Where were the sportsmen born, who started their careers with Homestead Grays?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/debutteam> <http://dbpedia.org/resource/Homestead_Grays> . ?x <http://dbpedia.org/property/birthDate> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Athlete>}"}, "answers": {"uri": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#date", "value": "1922-03-07"}}, "entities": [{"URI": "http://dbpedia.org/resource/Homestead_Grays", "surface form": "Homestead Grays"}], "relations": [{"URI": "http://dbpedia.org/ontology/birthPlace", "surface form": "sportsmen born,"}, {"URI": "http://dbpedia.org/ontology/source", "surface form": "started"}, {"URI": "http://dbpedia.org/ontology/occupation", "surface form": "careers"}]}, {"id": "746", "question": [{"language": "en", "string": "Who are the cast members of The Simpsons Ride?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/The_Simpsons_Ride> <http://dbpedia.org/property/starring> ?uri } "}, "answers": {"uri": {"type": "literal", "xml:lang": "en", "value": ""}}, "entities": [{"URI": "http://dbpedia.org/resource/The_Simpsons_Ride", "surface form": "The Simpsons Ride"}], "relations": [{"URI": "http://dbpedia.org/property/starring", "surface form": "cast members"}]}, {"id": "747", "question": [{"language": "en", "string": "Name the organization which developed iPhone OS and the XNU?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/IPhone_OS_1> <http://dbpedia.org/property/developer> ?uri. <http://dbpedia.org/resource/XNU> <http://dbpedia.org/ontology/developer> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Apple_Inc."}}, "entities": [{"URI": "http://dbpedia.org/resource/OS", "surface form": "OS"}, {"URI": "http://dbpedia.org/resource/IPhone", "surface form": "iPhone"}, {"URI": "http://dbpedia.org/resource/XNU", "surface form": "XNU"}], "relations": [{"URI": "http://dbpedia.org/property/name", "surface form": "name"}, {"URI": "http://dbpedia.org/ontology/alliance", "surface form": "organization"}, {"URI": "http://dbpedia.org/property/developer", "surface form": "developed"}]}, {"id": "748", "question": [{"language": "en", "string": "How many awards have the french people received?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/stateOfOrigin> <http://dbpedia.org/resource/French_people> . ?x <http://dbpedia.org/property/awards> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "22"}}, "entities": [], "relations": [{"URI": "http://dbpedia.org/ontology/award", "surface form": "awards"}, {"URI": "http://dbpedia.org/ontology/channel", "surface form": "french"}, {"URI": "http://dbpedia.org/ontology/board", "surface form": "received"}]}, {"id": "749", "question": [{"language": "en", "string": "How many bacterias have taxonomy as Bacillales and domain as Bacteria? "}], "query": {"sparql": " SELECT DISTINCT COUNT(?uri) WHERE {?uri <http://dbpedia.org/ontology/order> <http://dbpedia.org/resource/Bacillales> . ?uri <http://dbpedia.org/property/domain> <http://dbpedia.org/resource/Bacteria> } "}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "499"}}, "entities": [{"URI": "http://dbpedia.org/resource/Bacteriastrum_delicatulum", "surface form": "bacterias"}, {"URI": "http://dbpedia.org/resource/Bacillales", "surface form": "Bacillales"}, {"URI": "http://dbpedia.org/resource/Bacteria", "surface form": "Bacteria"}], "relations": [{"URI": "http://dbpedia.org/ontology/order", "surface form": "taxonomy"}, {"URI": "http://dbpedia.org/ontology/kingdom", "surface form": "domain"}]}, {"id": "750", "question": [{"language": "en", "string": "Which state's largest city is Omaha?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/largestCity> <http://dbpedia.org/resource/Omaha,_Nebraska> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/AdministrativeRegion>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nebraska"}}, "entities": [{"URI": "http://dbpedia.org/resource/Omaha,_Nebraska", "surface form": "Omaha"}], "relations": [{"URI": "http://dbpedia.org/ontology/largestCity", "surface form": "largest city"}]}, {"id": "751", "question": [{"language": "en", "string": "Who is the animator of Tommy Tucker's Tooth ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Tommy_Tucker's_Tooth> <http://dbpedia.org/property/animator> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Walt_Disney"}}, "entities": [{"URI": "http://dbpedia.org/resource/Tommy_Tucker's_Tooth", "surface form": "Tommy Tucker's Tooth"}], "relations": [{"URI": "http://dbpedia.org/ontology/animator", "surface form": "animator"}]}, {"id": "752", "question": [{"language": "en", "string": "Who is the film director of Alice's Wonderland ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Alice's_Wonderland> <http://dbpedia.org/ontology/director> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Walt_Disney"}}, "entities": [{"URI": "http://dbpedia.org/resource/Alice's_Wonderland", "surface form": "Alice's Wonderland"}], "relations": [{"URI": "http://dbpedia.org/property/director", "surface form": "film director"}]}, {"id": "753", "question": [{"language": "en", "string": "On how many subjects has Random house publishers published books?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/publisher> <http://dbpedia.org/resource/Random_House> . ?x <http://dbpedia.org/property/subject> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "131"}}, "entities": [{"URI": "http://dbpedia.org/resource/Random_House", "surface form": "Random house publishers"}], "relations": [{"URI": "http://dbpedia.org/property/publisher", "surface form": "publisher"}, {"URI": "http://dbpedia.org/property/subject", "surface form": "subject"}]}, {"id": "754", "question": [{"language": "en", "string": "List the associated musical artist of the current members of Al Bano and Romina Power?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Al_Bano_and_Romina_Power> <http://dbpedia.org/property/currentMembers> ?x . ?x <http://dbpedia.org/ontology/associatedMusicalArtist> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Al_Bano_and_Romina_Power"}}, "entities": [{"URI": "http://dbpedia.org/resource/Ayala_(musical_artist)", "surface form": "associated musical artist"}, {"URI": "http://dbpedia.org/resource/Al_Bano_and_Romina_Power", "surface form": "Al Bano"}, {"URI": "http://dbpedia.org/resource/Romina_Power", "surface form": "Romina Power"}], "relations": [{"URI": "http://dbpedia.org/property/currentMembers", "surface form": "current members"}, {"URI": "http://dbpedia.org/ontology/associatedMusicalArtist", "surface form": "associated musical artist"}]}, {"id": "755", "question": [{"language": "en", "string": "Which settlement's neighboring municipalities are Cologny and Pregny-Chambsy?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/neighboringMunicipalities> <http://dbpedia.org/resource/Cologny> . ?uri <http://dbpedia.org/ontology/neighboringMunicipality> <http://dbpedia.org/resource/Pregny-Chamb\u00e9sy> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Settlement>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bellevue,_Switzerland"}}, "entities": [{"URI": "http://dbpedia.org/resource/Neighboring_Sounds", "surface form": " neighboring municipalities"}, {"URI": "http://dbpedia.org/resource/Province_of_Bologna", "surface form": "Cologny and Pregny-Chambsy"}], "relations": [{"URI": "http://dbpedia.org/ontology/province", "surface form": "settlement"}]}, {"id": "756", "question": [{"language": "en", "string": "Which military unit's garrison is Pentagon and command structure is United States Department of Defense?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/garrison> <http://dbpedia.org/resource/The_Pentagon> . ?uri <http://dbpedia.org/ontology/commandStructure> <http://dbpedia.org/resource/United_States_Department_of_Defense> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/MilitaryUnit>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Joint_Integrated_Air_and_Missile_Defense_Organization"}}, "entities": [{"URI": "http://dbpedia.org/resource/Aldershot_Garrison", "surface form": " garrison"}, {"URI": "http://dbpedia.org/resource/Pentagon", "surface form": "Pentagon"}, {"URI": "http://dbpedia.org/resource/United_States_Department_of_Defense", "surface form": "United States Department of Defense"}], "relations": [{"URI": "http://dbpedia.org/ontology/garrison", "surface form": "military unit"}, {"URI": "http://dbpedia.org/ontology/commandStructure", "surface form": "command structure"}]}, {"id": "757", "question": [{"language": "en", "string": "List the primary subjects of A Christian Turn'd Turk?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/A_Christian_Turn'd_Turk> <http://dbpedia.org/property/subject> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Piracy"}}, "entities": [{"URI": "http://dbpedia.org/resource/A_Christian_Turn'd_Turk", "surface form": "A Christian Turn'd Turk"}], "relations": [{"URI": "http://dbpedia.org/property/subject", "surface form": "subject"}]}, {"id": "758", "question": [{"language": "en", "string": "Over which rivers, does a cable stayed bridge exists?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/design> <http://dbpedia.org/resource/Cable-stayed_bridge> . ?x <http://dbpedia.org/property/crosses> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Praia_Grande_(Macau)"}}, "entities": [], "relations": [{"URI": "http://dbpedia.org/ontology/river", "surface form": "rivers,"}, {"URI": "http://dbpedia.org/ontology/voice", "surface form": "cable"}, {"URI": "http://dbpedia.org/ontology/era", "surface form": "stayed"}, {"URI": "http://dbpedia.org/ontology/bridgeCarries", "surface form": "bridge exists"}]}, {"id": "759", "question": [{"language": "en", "string": "Name some Texas based companies ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/locationCity> <http://dbpedia.org/resource/Texas> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Company>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ally_Energy"}}, "entities": [{"URI": "http://dbpedia.org/resource/Texas", "surface form": "Texas"}, {"URI": "http://dbpedia.org/resource/Companies_listed_on_the_New_York_Stock_Exchange_(J)", "surface form": "companies"}], "relations": [{"URI": "http://dbpedia.org/property/name", "surface form": "name"}, {"URI": "http://dbpedia.org/property/based", "surface form": "based"}]}, {"id": "760", "question": [{"language": "en", "string": "Who were some governmental heads in Nazi Germany?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/jurisdiction> <http://dbpedia.org/resource/Nazi_Germany> . ?x <http://dbpedia.org/ontology/leader> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Heinrich_Himmler"}}, "entities": [{"URI": "http://dbpedia.org/resource/Nazi_Germany", "surface form": "Nazi Germany"}], "relations": [{"URI": "http://dbpedia.org/ontology/state", "surface form": "governmental heads"}]}, {"id": "761", "question": [{"language": "en", "string": "Name the tiemzone of Banlung ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Banlung> <http://dbpedia.org/ontology/timeZone> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Time_in_Cambodia"}}, "entities": [{"URI": "http://dbpedia.org/resource/Trezzone", "surface form": "tiemzone"}, {"URI": "http://dbpedia.org/resource/Banlung", "surface form": "Banlung"}], "relations": [{"URI": "http://dbpedia.org/ontology/timeZone", "surface form": "timezone"}]}, {"id": "762", "question": [{"language": "en", "string": "Name all the doctoral student of the scientist who also supervised Mary Ainsworth ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/doctoralStudents> <http://dbpedia.org/resource/Mary_Ainsworth> . ?x <http://dbpedia.org/property/doctoralStudents> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Scientist>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mary_Ainsworth"}}, "entities": [{"URI": "http://dbpedia.org/resource/Scientist_(musician)", "surface form": "scientist"}, {"URI": "http://dbpedia.org/resource/Mary_Ainsworth", "surface form": "Mary Ainsworth"}], "relations": [{"URI": "http://dbpedia.org/property/name", "surface form": "name"}, {"URI": "http://dbpedia.org/ontology/doctoralAdvisor", "surface form": "doctoral student"}, {"URI": "http://dbpedia.org/ontology/doctoralAdvisor", "surface form": "supervised"}]}, {"id": "763", "question": [{"language": "en", "string": "Which football teams is Shahid Khan proprietor to?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/owner> <http://dbpedia.org/resource/Shahid_Khan> } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/All_Elite_Wrestling"}}, "entities": [{"URI": "http://dbpedia.org/resource/Shahid_Khan", "surface form": "Shahid Khan proprietor"}], "relations": [{"URI": "http://dbpedia.org/ontology/owner", "surface form": "proprietor"}]}, {"id": "764", "question": [{"language": "en", "string": "Who all have rented the stadium whose architect is Populous?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/architect> <http://dbpedia.org/resource/Populous_(company)> . ?x <http://dbpedia.org/ontology/tenant> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Stadium>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Quebec_Remparts"}}, "entities": [{"URI": "http://dbpedia.org/resource/Populous_(company)", "surface form": "Populous"}], "relations": [{"URI": "http://dbpedia.org/ontology/tenant", "surface form": "rented"}, {"URI": "http://dbpedia.org/ontology/stadium", "surface form": "stadium"}, {"URI": "http://dbpedia.org/ontology/architect", "surface form": "architect"}]}, {"id": "765", "question": [{"language": "en", "string": "Which US city can be said to be a part of american mediterranean sea and the biscayne bay?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/American_Mediterranean_Sea> <http://dbpedia.org/property/cities> ?uri. <http://dbpedia.org/resource/Biscayne_Bay> <http://dbpedia.org/property/cities> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Miami"}}, "entities": [{"URI": "http://dbpedia.org/resource/American_Mediterranean_Sea", "surface form": "american mediterranean sea"}, {"URI": "http://dbpedia.org/resource/Biscayne_Bay", "surface form": "biscayne bay"}], "relations": [{"URI": "http://dbpedia.org/property/cities", "surface form": "city"}, {"URI": "http://dbpedia.org/property/cities", "surface form": "city"}]}, {"id": "766", "question": [{"language": "en", "string": "How many dishes are made with an ingredient belonging to the flowering plant species?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/division> <http://dbpedia.org/resource/Flowering_plant> . ?uri <http://dbpedia.org/ontology/ingredient> ?x . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Food>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "85"}}, "entities": [{"URI": "http://dbpedia.org/resource/Flowering_plant", "surface form": "flowering plant"}], "relations": [{"URI": "http://dbpedia.org/ontology/state", "surface form": "dishes"}, {"URI": "http://dbpedia.org/ontology/ingredient", "surface form": "ingredient"}, {"URI": "http://dbpedia.org/ontology/affiliation", "surface form": "belonging"}, {"URI": "http://dbpedia.org/ontology/day", "surface form": "flowering"}, {"URI": "http://dbpedia.org/ontology/position", "surface form": "plant species"}]}, {"id": "767", "question": [{"language": "en", "string": "What is the allegiance of Albert Kwesi Ocran ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Albert_Kwesi_Ocran> <http://dbpedia.org/property/allegiance> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ghana"}}, "entities": [{"URI": "http://dbpedia.org/resource/Albert_Kwesi_Ocran", "surface form": "Albert Kwesi Ocran"}], "relations": [{"URI": "http://dbpedia.org/ontology/allegiance", "surface form": "allegiance"}]}, {"id": "768", "question": [{"language": "en", "string": "How many people have headed organizations headquartered at Niederkirchnerstrae?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/headquarter> <http://dbpedia.org/resource/Niederkirchnerstra\u00dfe> . ?x <http://dbpedia.org/ontology/leader> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "20"}}, "entities": [{"URI": "http://dbpedia.org/resource/Complex_organizations", "surface form": "organizations headquartered"}, {"URI": "http://dbpedia.org/resource/Niederkirchnerstra\u00dfe", "surface form": "Niederkirchnerstrae"}], "relations": [{"URI": "http://dbpedia.org/ontology/headquarter", "surface form": "headquartered"}, {"URI": "http://dbpedia.org/ontology/leader", "surface form": "headed"}]}, {"id": "769", "question": [{"language": "en", "string": "What are some seas inside europe ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/location> <http://dbpedia.org/resource/Europe> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Sea>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sea_of_Marmara"}}, "entities": [], "relations": [{"URI": "http://dbpedia.org/ontology/vein", "surface form": "seas"}, {"URI": "http://dbpedia.org/ontology/winsInEurope", "surface form": "europe"}]}, {"id": "770", "question": [{"language": "en", "string": "Who was the bronze medalist of Swimming at the 2008 Summer Olympics Men's 400 metre individual medley ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Swimming_at_the_2008_Summer_Olympics_\u2013_Men's_400_metre_individual_medley> <http://dbpedia.org/ontology/bronzeMedalist> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ryan_Lochte"}}, "entities": [{"URI": "http://dbpedia.org/resource/Swimming_at_the_2008_Summer_Olympics", "surface form": "Swimming at the 2008 Summer Olympics Men"}, {"URI": "http://dbpedia.org/resource/2010_Pan_Pacific_Swimming_Championships_\u2013_Women's_400_metre_individual_medley", "surface form": " 400 metre individual medley"}], "relations": []}, {"id": "771", "question": [{"language": "en", "string": "How many states does the Pioneer corporation operate in?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { <http://dbpedia.org/resource/Pioneer_Corporation> <http://dbpedia.org/property/country> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "1"}}, "entities": [{"URI": "http://dbpedia.org/resource/Pioneer_Corporation", "surface form": "Pioneer corporation"}], "relations": [{"URI": "http://dbpedia.org/property/country", "surface form": "state"}]}, {"id": "772", "question": [{"language": "en", "string": "Name the debut team of Butch Metzger ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Butch_Metzger> <http://dbpedia.org/ontology/debutTeam> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/San_Francisco_Giants"}}, "entities": [{"URI": "http://dbpedia.org/resource/Butch_Metzger", "surface form": "Butch Metzger"}], "relations": [{"URI": "http://dbpedia.org/property/name", "surface form": "name"}, {"URI": "http://dbpedia.org/ontology/debutTeam", "surface form": "debut team"}]}, {"id": "773", "question": [{"language": "en", "string": "Whose doctoral student is etienne bieler\\xc9tienne_Bi\\xe9ler"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/doctoralStudent> <http://dbpedia.org/resource/\u00c9tienne_Bi\u00e9ler> } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/James_Chadwick"}}, "entities": [{"URI": "http://dbpedia.org/resource/\u00c9tienne_(film)", "surface form": "Etienne bielerxc9tienne_bixe9ler"}], "relations": [{"URI": "http://dbpedia.org/ontology/doctoralStudent", "surface form": "doctoral student"}]}, {"id": "774", "question": [{"language": "en", "string": "What countries used Solidus as currency?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/currency> <http://dbpedia.org/resource/Solidus_(coin)> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Country>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kingdom_of_Vaspurakan"}}, "entities": [{"URI": "http://dbpedia.org/resource/Countries_of_the_United_Kingdom", "surface form": "countries"}, {"URI": "http://dbpedia.org/resource/Solidus_(coin)", "surface form": "Solidus"}], "relations": [{"URI": "http://dbpedia.org/ontology/currency", "surface form": "currency"}, {"URI": "http://dbpedia.org/ontology/Country", "surface form": "countries"}]}, {"id": "775", "question": [{"language": "en", "string": "Which parent company of Edsel was the first team of the 1967 Mexican Grand Prix ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Edsel> <http://dbpedia.org/property/parent> ?uri. <http://dbpedia.org/resource/1967_Mexican_Grand_Prix> <http://dbpedia.org/property/firstTeam> ?uri} "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ford_Motor_Company"}}, "entities": [{"URI": "http://dbpedia.org/resource/Edsel", "surface form": "Edsel"}, {"URI": "http://dbpedia.org/resource/1967_Mexican_Grand_Prix", "surface form": "1967 Mexican Grand Prix"}], "relations": [{"URI": "http://dbpedia.org/property/parent", "surface form": "parent"}, {"URI": "http://dbpedia.org/property/firstTeam", "surface form": "first team"}]}, {"id": "776", "question": [{"language": "en", "string": "Name some cars similar to the ones which are assembled at the Jefferson North Assembly?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/assembly> <http://dbpedia.org/resource/Jefferson_North_Assembly> . ?x <http://dbpedia.org/property/related> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Automobile>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chrysler_E-Class"}}, "entities": [{"URI": "http://dbpedia.org/resource/Jefferson_North_Assembly", "surface form": "Jefferson North Assembly"}], "relations": [{"URI": "http://dbpedia.org/ontology/name", "surface form": "name"}, {"URI": "http://dbpedia.org/ontology/management", "surface form": "cars"}, {"URI": "http://dbpedia.org/property/assembly", "surface form": "assembled"}]}, {"id": "777", "question": [{"language": "en", "string": "What team did Joe Porter and Eddie Anderson play for?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Eddie_Anderson_(safety)> <http://dbpedia.org/ontology/team> ?uri. <http://dbpedia.org/resource/Joe_Porter_(American_football)> <http://dbpedia.org/ontology/formerTeam> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Oakland_Raiders"}}, "entities": [{"URI": "http://dbpedia.org/resource/Eddie_Anderson_(safety)", "surface form": "Eddie Anderson"}, {"URI": "http://dbpedia.org/resource/Joe_Porter_(American_football)", "surface form": "Joe Porter"}], "relations": [{"URI": "http://dbpedia.org/ontology/team", "surface form": "team"}, {"URI": "http://dbpedia.org/ontology/formerTeam", "surface form": "team"}]}, {"id": "778", "question": [{"language": "en", "string": "Which engine's successor's predecessor is BMW M10?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/predecessor> <http://dbpedia.org/resource/BMW_M10> . ?uri <http://dbpedia.org/ontology/successor> ?x . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Engine>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/BMW_M10"}}, "entities": [{"URI": "http://dbpedia.org/resource/BMW_M10", "surface form": "BMW M10"}], "relations": [{"URI": "http://dbpedia.org/property/engine", "surface form": "engine"}, {"URI": "http://dbpedia.org/ontology/successor", "surface form": " successor"}, {"URI": "http://dbpedia.org/ontology/predecessor", "surface form": " predecessor"}]}, {"id": "779", "question": [{"language": "en", "string": "List the movies directed by Stanley Kubrick?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/director> <http://dbpedia.org/resource/Stanley_Kubrick> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Day_of_the_Fight"}}, "entities": [{"URI": "http://dbpedia.org/resource/Stanley_Kubrick", "surface form": "Stanley Kubrick"}], "relations": [{"URI": "http://dbpedia.org/ontology/director", "surface form": "directed by"}, {"URI": "http://dbpedia.org/ontology/Film", "surface form": "movie"}]}, {"id": "780", "question": [{"language": "en", "string": "What team were the people drafted to, which are in the National Hockey League?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/league> <http://dbpedia.org/resource/National_Hockey_League> . ?x <http://dbpedia.org/property/draftTeam> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Person>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Boston_Bruins"}}, "entities": [{"URI": "http://dbpedia.org/resource/National_Hockey_League", "surface form": "National Hockey League"}], "relations": [{"URI": "http://dbpedia.org/ontology/team", "surface form": "team"}, {"URI": "http://dbpedia.org/ontology/draft", "surface form": "drafted"}, {"URI": "http://dbpedia.org/ontology/field", "surface form": "to,"}]}, {"id": "781", "question": [{"language": "en", "string": "Who developed the software for the operating system of Macintosh Quadra 660AV ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Macintosh_Quadra_660AV> <http://dbpedia.org/ontology/operatingSystem> ?x . ?x <http://dbpedia.org/ontology/developer> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Software>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Apple_Inc."}}, "entities": [{"URI": "http://dbpedia.org/resource/Software_Publishing_Corporation", "surface form": "software"}, {"URI": "http://dbpedia.org/resource/Macintosh_Quadra_660AV", "surface form": "660AV"}, {"URI": "http://dbpedia.org/resource/Macintosh_Quadra", "surface form": "Macintosh Quadra"}], "relations": [{"URI": "http://dbpedia.org/ontology/developer", "surface form": "developed"}, {"URI": "http://dbpedia.org/ontology/operatingSystem", "surface form": "operating"}]}, {"id": "782", "question": [{"language": "en", "string": "Who are the employer of Don R. Berlin?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Don_R._Berlin> <http://dbpedia.org/ontology/employer> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/General_Motors"}}, "entities": [{"URI": "http://dbpedia.org/resource/Don_R._Berlin", "surface form": " Don R. Berlin"}], "relations": [{"URI": "http://dbpedia.org/ontology/employer", "surface form": "employer"}]}, {"id": "783", "question": [{"language": "en", "string": "What woman acted in the mating habits of earthbound humans and is often associated with Mams taylor?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/The_Mating_Habits_of_the_Earthbound_Human> <http://dbpedia.org/property/starring> ?uri. <http://dbpedia.org/resource/Mams_Taylor> <http://dbpedia.org/ontology/associatedMusicalArtist> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Carmen_Electra"}}, "entities": [{"URI": "http://dbpedia.org/resource/The_Mating_Habits_of_the_Earthbound_Human", "surface form": "mating habits"}, {"URI": "http://dbpedia.org/resource/Real_Humans", "surface form": "earthbound humans"}, {"URI": "http://dbpedia.org/resource/Mams_Taylor", "surface form": "Mams taylor"}], "relations": [{"URI": "http://dbpedia.org/property/starring", "surface form": "acted"}, {"URI": "http://dbpedia.org/ontology/associatedMusicalArtist", "surface form": "associated"}]}, {"id": "784", "question": [{"language": "en", "string": "How many other Guests are there of the television episodes whose Guests is Brian d'Arcy James ?"}], "query": {"sparql": " SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/guests> <http://dbpedia.org/resource/Brian_d'Arcy_James> . ?x <http://dbpedia.org/property/guests> ?uri }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/Brian_d'Arcy_James", "surface form": "Brian d'Arcy James"}], "relations": [{"URI": "http://dbpedia.org/property/guests", "surface form": "Guests"}, {"URI": "http://dbpedia.org/property/guests", "surface form": "Guests"}]}, {"id": "785", "question": [{"language": "en", "string": "Who is the writer of He's a Pirate ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/He's_a_Pirate> <http://dbpedia.org/property/writer> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hans_Zimmer"}}, "entities": [{"URI": "http://dbpedia.org/resource/He's_a_Pirate", "surface form": "He's a Pirate"}], "relations": [{"URI": "http://dbpedia.org/ontology/writer", "surface form": "writer"}]}, {"id": "786", "question": [{"language": "en", "string": "Which movies have their music composed by someone that signed up with RCA Records?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/recordLabel> <http://dbpedia.org/resource/RCA_Records> . ?uri <http://dbpedia.org/ontology/musicComposer> ?x . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Weekend_at_Bernie's"}}, "entities": [{"URI": "http://dbpedia.org/resource/RCA_Records", "surface form": "RCA Records"}], "relations": [{"URI": "http://dbpedia.org/ontology/film", "surface form": "movies"}, {"URI": "http://dbpedia.org/ontology/musicFusionGenre", "surface form": "music"}, {"URI": "http://dbpedia.org/ontology/musicComposer", "surface form": "composed"}, {"URI": "http://dbpedia.org/ontology/precursor", "surface form": "signed"}]}, {"id": "787", "question": [{"language": "en", "string": "What is the ideology of Palang Dharma Party ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Palang_Dharma_Party> <http://dbpedia.org/ontology/ideology> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Political_corruption"}}, "entities": [{"URI": "http://dbpedia.org/resource/Palang_Dharma_Party", "surface form": "Palang Dharma Party"}], "relations": [{"URI": "http://dbpedia.org/ontology/ideology", "surface form": "ideology"}]}, {"id": "788", "question": [{"language": "en", "string": "Which philosophy journal has compiler as Stephen Law ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/editor> <http://dbpedia.org/resource/Stephen_Law> . ?uri <http://dbpedia.org/property/discipline> <http://dbpedia.org/resource/Philosophy> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/AcademicJournal>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Think_(journal)"}}, "entities": [{"URI": "http://dbpedia.org/resource/Stephen_Law", "surface form": "Stephen Law"}, {"URI": "http://dbpedia.org/resource/Philosophy", "surface form": "philosophy"}], "relations": [{"URI": "http://dbpedia.org/ontology/magazine", "surface form": "philosophy journal"}, {"URI": "http://dbpedia.org/ontology/compiler", "surface form": "compiler"}]}, {"id": "789", "question": [{"language": "en", "string": "Which military conflict took place in Israel and had commander as Jaber Al-Ahmad Al-Sabah?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/place> <http://dbpedia.org/resource/Israel> . ?uri <http://dbpedia.org/ontology/commander> <http://dbpedia.org/resource/Jaber_Al-Ahmad_Al-Sabah> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/MilitaryConflict>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gulf_War"}}, "entities": [{"URI": "http://dbpedia.org/resource/Israel", "surface form": "Israel"}, {"URI": "http://dbpedia.org/resource/Jaber_Al-Ahmad_Al-Sabah", "surface form": "Jaber Al-Ahmad Al-Sabah"}], "relations": [{"URI": "http://dbpedia.org/ontology/battle", "surface form": "military conflict"}, {"URI": "http://dbpedia.org/ontology/place", "surface form": "place"}, {"URI": "http://dbpedia.org/ontology/leader", "surface form": "commander"}]}, {"id": "790", "question": [{"language": "en", "string": "Where is the fictional character from, whose last appearance was in the Avengers, 1998?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/last> <http://dbpedia.org/resource/The_Avengers_(1998_film)> . ?x <http://dbpedia.org/property/nationality> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/FictionalCharacter>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/England"}}, "entities": [{"URI": "http://dbpedia.org/resource/Orange_(Fictional_character)", "surface form": "fictional character from,"}, {"URI": "http://dbpedia.org/resource/The_Avengers_(1998_film)", "surface form": "Avengers, 1998"}], "relations": [{"URI": "http://dbpedia.org/ontology/lastAppearance", "surface form": "appearance"}]}, {"id": "791", "question": [{"language": "en", "string": "Which idelogy of the Palang Dharma Party is also the faith of Miao people ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Palang_Dharma_Party> <http://dbpedia.org/ontology/ideology> ?uri. <http://dbpedia.org/resource/Miao_people> <http://dbpedia.org/ontology/religion> ?uri} "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Buddhism"}}, "entities": [{"URI": "http://dbpedia.org/resource/Ideology", "surface form": "idelogy"}, {"URI": "http://dbpedia.org/resource/Palang_Dharma_Party", "surface form": "Palang Dharma Party"}, {"URI": "http://dbpedia.org/resource/Miao", "surface form": "Miao"}], "relations": [{"URI": "http://dbpedia.org/ontology/denomination", "surface form": "faith"}]}, {"id": "792", "question": [{"language": "en", "string": "List the movies produced by Michael Deeley ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/producer> <http://dbpedia.org/resource/Michael_Deeley> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Case_of_the_Mukkinese_Battle-Horn"}}, "entities": [{"URI": "http://dbpedia.org/resource/Michael_Deeley", "surface form": "Michael Deeley"}], "relations": [{"URI": "http://dbpedia.org/ontology/producer", "surface form": "produced"}, {"URI": "http://dbpedia.org/ontology/Film", "surface form": "movie"}]}, {"id": "793", "question": [{"language": "en", "string": "Where did Louis chevrolet die ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Louis_Chevrolet> <http://dbpedia.org/property/deathPlace> ?uri } "}, "answers": {"uri": {"type": "literal", "xml:lang": "en", "value": "Detroit, U.S."}}, "entities": [{"URI": "http://dbpedia.org/resource/Louis_Chevrolet", "surface form": "Louis chevrolet"}], "relations": [{"URI": "http://dbpedia.org/property/deathPlace", "surface form": "die"}]}, {"id": "794", "question": [{"language": "en", "string": "What is the affiliation of Lumbini Bauddha University ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Lumbini_Bauddha_University> <http://dbpedia.org/property/affiliation> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Buddhist"}}, "entities": [{"URI": "http://dbpedia.org/resource/Lumbini_Bauddha_University", "surface form": "Lumbini Bauddha University"}], "relations": [{"URI": "http://dbpedia.org/ontology/affiliation", "surface form": "affiliation"}]}, {"id": "795", "question": [{"language": "en", "string": "What is the name of the characters created by Frank Miller?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/creators> <http://dbpedia.org/resource/Frank_Miller_(comics)> . ?x <http://dbpedia.org/property/characterName> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/FictionalCharacter>}"}, "answers": {"uri": {"type": "literal", "xml:lang": "en", "value": "Yukio"}}, "entities": [{"URI": "http://dbpedia.org/resource/Frank_Miller_(comics)", "surface form": "Frank Miller"}], "relations": [{"URI": "http://dbpedia.org/property/name", "surface form": "name"}, {"URI": "http://dbpedia.org/property/type", "surface form": "characters"}, {"URI": "http://dbpedia.org/ontology/creator", "surface form": "created"}]}, {"id": "796", "question": [{"language": "en", "string": "Count the total number of software whose programming language is C++ and operating system is Microsoft Windows?"}], "query": {"sparql": " SELECT DISTINCT COUNT(?uri) WHERE {?uri <http://dbpedia.org/property/programmingLanguage> <http://dbpedia.org/resource/C++> . ?uri <http://dbpedia.org/ontology/operatingSystem> <http://dbpedia.org/resource/Microsoft_Windows> } "}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "470"}}, "entities": [{"URI": "http://dbpedia.org/resource/Rietveld_(software)", "surface form": "software"}, {"URI": "http://dbpedia.org/resource/C++", "surface form": "C++"}, {"URI": "http://dbpedia.org/resource/Microsoft_Windows", "surface form": "Microsoft Windows"}], "relations": [{"URI": "http://dbpedia.org/ontology/type", "surface form": "count"}, {"URI": "http://dbpedia.org/ontology/populationTotal", "surface form": "total"}, {"URI": "http://dbpedia.org/ontology/language", "surface form": "programming language"}, {"URI": "http://dbpedia.org/ontology/operatingSystem", "surface form": "operating"}]}, {"id": "797", "question": [{"language": "en", "string": "What is the total number of politicians whose predecessor's deputy is Jenny Macklin?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/deputy> <http://dbpedia.org/resource/Jenny_Macklin> . ?uri <http://dbpedia.org/property/predecessor> ?x . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/OfficeHolder>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "20"}}, "entities": [{"URI": "http://dbpedia.org/resource/Politicians_of_The_Wire", "surface form": "politicians"}, {"URI": "http://dbpedia.org/resource/Jenny_Macklin", "surface form": "Jenny Macklin"}], "relations": [{"URI": "http://dbpedia.org/ontology/populationTotal", "surface form": "total"}, {"URI": "http://dbpedia.org/ontology/predecessor", "surface form": "predecessor"}, {"URI": "http://dbpedia.org/ontology/deputy", "surface form": " deputy"}]}, {"id": "798", "question": [{"language": "en", "string": "How many managers have managed Middlesbrough FC?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE {?uri <http://dbpedia.org/ontology/managerClub> <http://dbpedia.org/resource/Middlesbrough_F.C.> . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "44"}}, "entities": [{"URI": "http://dbpedia.org/resource/FC", "surface form": "FC"}, {"URI": "http://dbpedia.org/resource/Middlesbrough", "surface form": "Middlesbrough"}], "relations": [{"URI": "http://dbpedia.org/ontology/managerClub", "surface form": "managed"}]}, {"id": "799", "question": [{"language": "en", "string": "Give me a count of bridges located in California ?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE {?uri <http://dbpedia.org/ontology/locatedInArea> <http://dbpedia.org/resource/California> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Bridge>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "15"}}, "entities": [{"URI": "http://dbpedia.org/resource/California", "surface form": "California"}], "relations": [{"URI": "http://dbpedia.org/ontology/locatedInArea", "surface form": "in"}, {"URI": "http://dbpedia.org/ontology/Bridge", "surface form": "bridge"}]}, {"id": "800", "question": [{"language": "en", "string": "What are the sports played by the universities who also plays taekwondo ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/athletics> <http://dbpedia.org/resource/Taekwondo> . ?x <http://dbpedia.org/property/athletics> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Taekwondo"}}, "entities": [{"URI": "http://dbpedia.org/resource/Universities_Ireland", "surface form": "universities"}, {"URI": "http://dbpedia.org/resource/Taekwondo", "surface form": "taekwondo"}], "relations": [{"URI": "http://dbpedia.org/ontology/sport", "surface form": "sports"}, {"URI": "http://dbpedia.org/ontology/portrayer", "surface form": "played"}, {"URI": "http://dbpedia.org/ontology/plays", "surface form": "plays"}]}, {"id": "801", "question": [{"language": "en", "string": "Who all are buried in Arlington national cementary?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/placeofburial> <http://dbpedia.org/resource/Arlington_National_Cemetery> } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Allen_B._Reed"}}, "entities": [{"URI": "http://dbpedia.org/resource/Arlington_National_Cemetery", "surface form": "Arlington national cementary"}], "relations": [{"URI": "http://dbpedia.org/property/placeofburial", "surface form": "buried"}]}, {"id": "802", "question": [{"language": "en", "string": "How many different genres led to other genres where drums are important?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/instruments> <http://dbpedia.org/resource/Drum_kit> . ?x <http://dbpedia.org/ontology/stylisticOrigin> ?uri . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/MusicGenre>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "238"}}, "entities": [{"URI": "http://dbpedia.org/resource/Drums_Around_the_World", "surface form": "drums"}], "relations": [{"URI": "http://dbpedia.org/ontology/genre", "surface form": "genres"}, {"URI": "http://dbpedia.org/ontology/field", "surface form": "led"}, {"URI": "http://dbpedia.org/ontology/genre", "surface form": "genres"}]}, {"id": "803", "question": [{"language": "en", "string": "List all the bands which have members of the band Guy in them?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Guy_(band)> <http://dbpedia.org/ontology/bandMember> ?x . ?x <http://dbpedia.org/ontology/associatedBand> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Guy_(band)"}}, "entities": [{"URI": "http://dbpedia.org/resource/Guy_(band)", "surface form": "Guy"}], "relations": [{"URI": "http://dbpedia.org/ontology/bandMember", "surface form": "members"}, {"URI": "http://dbpedia.org/ontology/associatedBand", "surface form": "band"}]}, {"id": "804", "question": [{"language": "en", "string": "List the opponents of the relatives of Thomas Helwys?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/relation> <http://dbpedia.org/resource/Thomas_Helwys> . ?x <http://dbpedia.org/ontology/opponent> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Person>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Francis_Bacon"}}, "entities": [{"URI": "http://dbpedia.org/resource/Thomas_Helwys", "surface form": "Thomas Helwys"}], "relations": [{"URI": "http://dbpedia.org/ontology/opponent", "surface form": "opponents"}, {"URI": "http://dbpedia.org/ontology/relation", "surface form": "relatives"}]}, {"id": "805", "question": [{"language": "en", "string": "Who are the predecessors of John Randolph of Roanoke?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/predecessor> <http://dbpedia.org/resource/John_Randolph_of_Roanoke> . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/George_William_Crump"}}, "entities": [{"URI": "http://dbpedia.org/resource/John_Randolph_of_Roanoke", "surface form": "John Randolph of Roanoke"}], "relations": [{"URI": "http://dbpedia.org/property/predecessor", "surface form": "predecessors"}]}, {"id": "806", "question": [{"language": "en", "string": "What team did J P Paris was former team of Bert McCaffrey play for?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/J._P._Paris\u00e9> <http://dbpedia.org/property/playedFor> ?uri. <http://dbpedia.org/resource/Bert_McCaffrey> <http://dbpedia.org/ontology/formerTeam> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Toronto_Maple_Leafs"}}, "entities": [{"URI": "http://dbpedia.org/resource/J._P._Paris\u00e9", "surface form": "paris"}, {"URI": "http://dbpedia.org/resource/Bert_McCaffrey", "surface form": "Bert McCaffrey"}], "relations": [{"URI": "http://dbpedia.org/property/playedFor", "surface form": "team"}, {"URI": "http://dbpedia.org/ontology/formerTeam", "surface form": "former team"}]}, {"id": "807", "question": [{"language": "en", "string": "What is the river that falls into North Sea and Thames Estuary?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/riverMouth> <http://dbpedia.org/resource/North_Sea> . ?uri <http://dbpedia.org/ontology/riverMouth> <http://dbpedia.org/resource/Thames_Estuary> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/River>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/River_Thames"}}, "entities": [{"URI": "http://dbpedia.org/resource/North_Sea", "surface form": "North Sea"}, {"URI": "http://dbpedia.org/resource/Thames_Estuary", "surface form": "Thames Estuary"}], "relations": [{"URI": "http://dbpedia.org/ontology/river", "surface form": "river"}, {"URI": "http://dbpedia.org/ontology/nerve", "surface form": "falls"}]}, {"id": "808", "question": [{"language": "en", "string": "How many companies were founded in Dallas?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE {?uri <http://dbpedia.org/property/foundation> <http://dbpedia.org/resource/Dallas> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Company>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "5"}}, "entities": [{"URI": "http://dbpedia.org/resource/Companies_listed_on_the_New_York_Stock_Exchange_(J)", "surface form": "companies"}, {"URI": "http://dbpedia.org/resource/Dallas", "surface form": "Dallas"}], "relations": [{"URI": "http://dbpedia.org/property/foundation", "surface form": "founded"}]}, {"id": "809", "question": [{"language": "en", "string": "Which range of mountains are there in canton of Fribourg?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/locatedInArea> <http://dbpedia.org/resource/Canton_of_Fribourg> . ?x <http://dbpedia.org/ontology/mountainRange> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fribourg_Alps"}}, "entities": [{"URI": "http://dbpedia.org/resource/Canton_of_Fribourg", "surface form": "canton of Fribourg"}], "relations": [{"URI": "http://dbpedia.org/ontology/locatedInArea", "surface form": "in"}, {"URI": "http://dbpedia.org/ontology/mountainRange", "surface form": "mountains"}]}, {"id": "810", "question": [{"language": "en", "string": "Which species' members are there in the animal kingdom?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/kingdom> <http://dbpedia.org/resource/Animal> . ?x <http://dbpedia.org/ontology/species> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Aeneator_marshalli"}}, "entities": [{"URI": "http://dbpedia.org/resource/Animal", "surface form": "animal"}], "relations": [{"URI": "http://dbpedia.org/ontology/kingdom", "surface form": "kingdom"}, {"URI": "http://dbpedia.org/ontology/species", "surface form": "species"}]}, {"id": "811", "question": [{"language": "en", "string": "Which HBO's television series was produced by Erik Bork?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/distributor> <http://dbpedia.org/resource/HBO> . ?uri <http://dbpedia.org/ontology/producer> <http://dbpedia.org/resource/Erik_Bork> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Band_of_Brothers_(miniseries)"}}, "entities": [{"URI": "http://dbpedia.org/resource/HBO", "surface form": "HBO"}, {"URI": "http://dbpedia.org/resource/Television_documentary", "surface form": " television series"}, {"URI": "http://dbpedia.org/resource/Erik_Bork", "surface form": "Erik Bork"}], "relations": [{"URI": "http://dbpedia.org/ontology/author", "surface form": "produced"}]}, {"id": "812", "question": [{"language": "en", "string": "Which stadium is owned by the team whose manager is Dimitris Terezopoulos?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/manager> <http://dbpedia.org/resource/Dimitris_Terezopoulos> . ?x <http://dbpedia.org/property/stadium> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Veria_Stadium"}}, "entities": [{"URI": "http://dbpedia.org/resource/Dimitris_Diamantopoulos", "surface form": "Dimitris Terezopoulos"}], "relations": [{"URI": "http://dbpedia.org/ontology/stadium", "surface form": "stadium"}, {"URI": "http://dbpedia.org/property/owner", "surface form": "owned"}, {"URI": "http://dbpedia.org/ontology/team", "surface form": "team"}, {"URI": "http://dbpedia.org/ontology/manager", "surface form": "manager"}]}, {"id": "813", "question": [{"language": "en", "string": "From how many countries did the aeroplanes designed by Alexander Lippisch originate?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/designer> <http://dbpedia.org/resource/Alexander_Lippisch> . ?x <http://dbpedia.org/property/nationalOrigin> ?uri . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Country>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "12"}}, "entities": [{"URI": "http://dbpedia.org/resource/Countries_of_the_United_Kingdom", "surface form": "countries"}, {"URI": "http://dbpedia.org/resource/Aeroplanes_DAR", "surface form": "aeroplanes"}, {"URI": "http://dbpedia.org/resource/Alexander_Lippisch", "surface form": "Alexander Lippisch"}], "relations": [{"URI": "http://dbpedia.org/ontology/designer", "surface form": "designed"}, {"URI": "http://dbpedia.org/ontology/author", "surface form": "originate"}]}, {"id": "814", "question": [{"language": "en", "string": "Name presidents of the schools which have queen noor of Jordan as one of them ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/president> <http://dbpedia.org/resource/Queen_Noor_of_Jordan> . ?x <http://dbpedia.org/property/president> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/School>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nelson_Mandela"}}, "entities": [{"URI": "http://dbpedia.org/resource/Queen_Noor_of_Jordan", "surface form": "queen noor of Jordan"}], "relations": [{"URI": "http://dbpedia.org/ontology/leaderName", "surface form": "name presidents"}, {"URI": "http://dbpedia.org/ontology/ground", "surface form": "schools"}, {"URI": "http://dbpedia.org/ontology/leader", "surface form": "queen"}, {"URI": "http://dbpedia.org/ontology/chain", "surface form": "noor"}]}, {"id": "815", "question": [{"language": "en", "string": "How many bands are signed up with Kobalt Label Services?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE {?uri <http://dbpedia.org/ontology/recordLabel> <http://dbpedia.org/resource/Kobalt_Label_Services> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Band>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "18"}}, "entities": [{"URI": "http://dbpedia.org/resource/Kobalt_Label_Services", "surface form": "Kobalt Label Services"}], "relations": [{"URI": "http://dbpedia.org/ontology/recordLabel", "surface form": "Label"}, {"URI": "http://dbpedia.org/ontology/Band", "surface form": "band"}]}, {"id": "816", "question": [{"language": "en", "string": "What are the television shows which are in NTSC and 5.1 surround sound?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/format> <http://dbpedia.org/resource/NTSC> . ?uri <http://dbpedia.org/ontology/format> <http://dbpedia.org/resource/5.1_surround_sound> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dancing_with_the_Stars_(American_TV_series)"}}, "entities": [{"URI": "http://dbpedia.org/resource/NTSC", "surface form": "NTSC"}, {"URI": "http://dbpedia.org/resource/Surround_sound", "surface form": "51 surround sound"}], "relations": [{"URI": "http://dbpedia.org/ontology/televisionSeries", "surface form": "television shows"}]}, {"id": "817", "question": [{"language": "en", "string": "What are some games availible on nintendo's virtual console?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/computingPlatform> <http://dbpedia.org/resource/Virtual_Console> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/VideoGame>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Victory_Run"}}, "entities": [{"URI": "http://dbpedia.org/resource/Virtual_Console", "surface form": " virtual console"}], "relations": [{"URI": "http://dbpedia.org/ontology/athletics", "surface form": "games availible"}, {"URI": "http://dbpedia.org/ontology/purpose", "surface form": "nintendo"}]}, {"id": "818", "question": [{"language": "en", "string": "Where did the film director of Kala Pani die?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Kala_Pani_(1958_film)> <http://dbpedia.org/ontology/director> ?x . ?x <http://dbpedia.org/ontology/deathPlace> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mumbai"}}, "entities": [{"URI": "http://dbpedia.org/resource/Kala_Pani_(1958_film)", "surface form": "Kala Pani"}], "relations": [{"URI": "http://dbpedia.org/ontology/director", "surface form": "film director"}, {"URI": "http://dbpedia.org/ontology/deathDate", "surface form": "die"}]}, {"id": "819", "question": [{"language": "en", "string": "What show had NTSC format and theme music composed by Ron Grainer?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/format> <http://dbpedia.org/resource/NTSC> . ?uri <http://dbpedia.org/property/themeMusicComposer> <http://dbpedia.org/resource/Ron_Grainer> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Doctor_Who"}}, "entities": [{"URI": "http://dbpedia.org/resource/NTSC", "surface form": "NTSC"}, {"URI": "http://dbpedia.org/resource/Ron_Grainer", "surface form": "Ron Grainer"}], "relations": [{"URI": "http://dbpedia.org/ontology/show", "surface form": "show"}, {"URI": "http://dbpedia.org/ontology/format", "surface form": "format"}, {"URI": "http://dbpedia.org/ontology/openingTheme", "surface form": "theme music"}, {"URI": "http://dbpedia.org/ontology/composer", "surface form": "composed"}]}, {"id": "820", "question": [{"language": "en", "string": "Who has fought in the conflicts around the Mississippi river?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/place> <http://dbpedia.org/resource/Mississippi_River> . ?x <http://dbpedia.org/property/combatant> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/MilitaryConflict>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Choctaw"}}, "entities": [{"URI": "http://dbpedia.org/resource/Mississippi_River", "surface form": "Mississippi river"}], "relations": [{"URI": "http://dbpedia.org/ontology/source", "surface form": "fought"}, {"URI": "http://dbpedia.org/ontology/battle", "surface form": "conflicts"}]}, {"id": "821", "question": [{"language": "en", "string": "What are the death place of the models whose hair color was Red?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/hairColor> <http://dbpedia.org/resource/Red_hair> . ?x <http://dbpedia.org/property/deathPlace> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Model>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/France"}}, "entities": [{"URI": "http://dbpedia.org/resource/Red_hair", "surface form": "hair red"}], "relations": [{"URI": "http://dbpedia.org/property/deathPlace", "surface form": "death place"}, {"URI": "http://dbpedia.org/ontology/genre", "surface form": "models"}, {"URI": "http://dbpedia.org/property/hairColor", "surface form": "hair color"}]}, {"id": "822", "question": [{"language": "en", "string": "To which region does the Miluk language belong?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Miluk_language> <http://dbpedia.org/property/region> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Oregon"}}, "entities": [{"URI": "http://dbpedia.org/resource/Miluk_language", "surface form": "Miluk language"}], "relations": [{"URI": "http://dbpedia.org/ontology/region", "surface form": "region"}, {"URI": "http://dbpedia.org/ontology/date", "surface form": "belong"}]}, {"id": "823", "question": [{"language": "en", "string": "What is the Ceremonial County of Port of Tilbury ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Port_of_Tilbury> <http://dbpedia.org/ontology/ceremonialCounty> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Essex"}}, "entities": [{"URI": "http://dbpedia.org/resource/Port_of_Tilbury", "surface form": "Ceremonial County of Port of Tilbury"}], "relations": [{"URI": "http://dbpedia.org/ontology/ceremonialCounty", "surface form": "Ceremonial County"}]}, {"id": "824", "question": [{"language": "en", "string": "Who created the world series of Poker?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/World_Series_of_Poker> <http://dbpedia.org/property/founded> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/United_States"}}, "entities": [{"URI": "http://dbpedia.org/resource/Poker", "surface form": "Poker"}], "relations": [{"URI": "http://dbpedia.org/ontology/author", "surface form": "created"}, {"URI": "http://dbpedia.org/ontology/series", "surface form": "series"}]}, {"id": "825", "question": [{"language": "en", "string": "Which fictional character's relatives were made by Ted Osborne?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/creator> <http://dbpedia.org/resource/Ted_Osborne> . ?uri <http://dbpedia.org/property/relatives> ?x . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/FictionalCharacter>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Scrooge_McDuck"}}, "entities": [{"URI": "http://dbpedia.org/resource/Ted_Osborne", "surface form": "Ted Osborne"}], "relations": [{"URI": "http://dbpedia.org/ontology/number", "surface form": "fictional character"}, {"URI": "http://dbpedia.org/ontology/relation", "surface form": " relatives"}]}, {"id": "826", "question": [{"language": "en", "string": "Who are the stars of the movies which are distributed by Artisan Entertainment ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/distributor> <http://dbpedia.org/resource/Artisan_Entertainment> . ?x <http://dbpedia.org/ontology/starring> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alan_Rickman"}}, "entities": [{"URI": "http://dbpedia.org/resource/Artisan_Entertainment", "surface form": "Artisan Entertainment"}], "relations": [{"URI": "http://dbpedia.org/ontology/fate", "surface form": "stars"}, {"URI": "http://dbpedia.org/ontology/film", "surface form": "movies"}, {"URI": "http://dbpedia.org/ontology/distributor", "surface form": "distributed"}]}, {"id": "827", "question": [{"language": "en", "string": "Count the different religions followed by Second Lieutenants in military."}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/militaryRank> <http://dbpedia.org/resource/Second_lieutenant> . ?x <http://dbpedia.org/ontology/religion> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/Per_Second,_Per_Second,_Per_Second..._Every_Second", "surface form": "Second Lieutenants"}], "relations": [{"URI": "http://dbpedia.org/ontology/type", "surface form": "count"}, {"URI": "http://dbpedia.org/ontology/religion", "surface form": "religions"}, {"URI": "http://dbpedia.org/ontology/militaryUnitSize", "surface form": "military"}]}, {"id": "828", "question": [{"language": "en", "string": "Name the river mouth of Moordener Kill ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Moordener_Kill> <http://dbpedia.org/ontology/riverMouth> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hudson_River"}}, "entities": [{"URI": "http://dbpedia.org/resource/Moordener_Kill", "surface form": "Moordener Kill"}], "relations": [{"URI": "http://dbpedia.org/property/name", "surface form": "name"}, {"URI": "http://dbpedia.org/ontology/riverMouth", "surface form": "river mouth"}]}, {"id": "829", "question": [{"language": "en", "string": "List the producer of the TV shows whose company is HBO."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/company> <http://dbpedia.org/resource/HBO> . ?x <http://dbpedia.org/ontology/producer> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/John_Hoffman_(producer)"}}, "entities": [{"URI": "http://dbpedia.org/resource/Tv_test_pattern", "surface form": "TV"}, {"URI": "http://dbpedia.org/resource/HBO", "surface form": "HBO"}], "relations": [{"URI": "http://dbpedia.org/ontology/producer", "surface form": "producer"}, {"URI": "http://dbpedia.org/ontology/place", "surface form": "shows"}, {"URI": "http://dbpedia.org/ontology/company", "surface form": "company"}]}, {"id": "830", "question": [{"language": "en", "string": "What is the television show whose company is Playtone and written by Erik Jendresen?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/company> <http://dbpedia.org/resource/Playtone> . ?uri <http://dbpedia.org/property/writer> <http://dbpedia.org/resource/Erik_Jendresen> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Band_of_Brothers_(miniseries)"}}, "entities": [{"URI": "http://dbpedia.org/resource/Playtone", "surface form": "Playtone"}, {"URI": "http://dbpedia.org/resource/Erik_Jendresen", "surface form": "Erik Jendresen"}], "relations": [{"URI": "http://dbpedia.org/ontology/transmission", "surface form": "television show"}, {"URI": "http://dbpedia.org/ontology/company", "surface form": "company"}, {"URI": "http://dbpedia.org/ontology/writer", "surface form": "written"}]}, {"id": "831", "question": [{"language": "en", "string": "Which TV show's writer is Erik Jendresen and distributor is HBO?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/writer> <http://dbpedia.org/resource/Erik_Jendresen> . ?uri <http://dbpedia.org/property/distributor> <http://dbpedia.org/resource/HBO> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Band_of_Brothers_(miniseries)"}}, "entities": [{"URI": "http://dbpedia.org/resource/Tv_test_pattern", "surface form": "TV"}, {"URI": "http://dbpedia.org/resource/Erik_Jendresen", "surface form": "Erik Jendresen"}, {"URI": "http://dbpedia.org/resource/HBO", "surface form": "HBO"}], "relations": [{"URI": "http://dbpedia.org/ontology/show", "surface form": "show"}, {"URI": "http://dbpedia.org/ontology/writer", "surface form": " writer"}, {"URI": "http://dbpedia.org/ontology/distributor", "surface form": "distributor"}]}, {"id": "832", "question": [{"language": "en", "string": "What railway lines go through the stations maintained by Western Australian Public Transport Authority?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/owningOrganisation> <http://dbpedia.org/resource/Public_Transport_Authority_(Western_Australia)> . ?x <http://dbpedia.org/ontology/servingRailwayLine> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Station>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/South_Western_Railway,_Western_Australia"}}, "entities": [{"URI": "http://dbpedia.org/resource/Public_Transport_Authority_(Western_Australia)", "surface form": "Western Australian Public Transport Authority"}], "relations": [{"URI": "http://dbpedia.org/ontology/lyrics", "surface form": "railway lines"}, {"URI": "http://dbpedia.org/ontology/numberOfStations", "surface form": "stations"}, {"URI": "http://dbpedia.org/ontology/maintainedBy", "surface form": "maintained"}]}, {"id": "833", "question": [{"language": "en", "string": "How many publisher have been founded by american citizens?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/stateOfOrigin> <http://dbpedia.org/resource/United_States> . ?uri <http://dbpedia.org/ontology/founder> ?x . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Publisher>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "1"}}, "entities": [], "relations": [{"URI": "http://dbpedia.org/ontology/publisher", "surface form": "publisher"}, {"URI": "http://dbpedia.org/ontology/foundationPlace", "surface form": "founded"}, {"URI": "http://dbpedia.org/ontology/country", "surface form": "american citizens"}]}, {"id": "834", "question": [{"language": "en", "string": "How many other region served are there of the companies which serves Pacific Ocean ?"}], "query": {"sparql": " SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/regionServed> <http://dbpedia.org/resource/Pacific_Ocean> . ?x <http://dbpedia.org/ontology/regionServed> ?uri }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "12"}}, "entities": [{"URI": "http://dbpedia.org/resource/Companies_listed_on_the_New_York_Stock_Exchange_(J)", "surface form": "companies"}, {"URI": "http://dbpedia.org/resource/Pacific_Ocean", "surface form": "Pacific Ocean"}], "relations": [{"URI": "http://dbpedia.org/ontology/region", "surface form": "region"}, {"URI": "http://dbpedia.org/ontology/regionServed", "surface form": "served"}, {"URI": "http://dbpedia.org/ontology/order", "surface form": "serves"}]}, {"id": "835", "question": [{"language": "en", "string": "Name the sitcoms whose network's owning company is Chris-Craft Industries?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/owningCompany> <http://dbpedia.org/resource/Chris-Craft_Industries> . ?uri <http://dbpedia.org/ontology/network> ?x . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pointman"}}, "entities": [{"URI": "http://dbpedia.org/resource/Chris-Craft_Industries", "surface form": "Chris-Craft Industries"}], "relations": [{"URI": "http://dbpedia.org/property/name", "surface form": "name"}, {"URI": "http://dbpedia.org/ontology/series", "surface form": "sitcoms"}, {"URI": "http://dbpedia.org/ontology/network", "surface form": "network"}, {"URI": "http://dbpedia.org/ontology/owningCompany", "surface form": "owning"}, {"URI": "http://dbpedia.org/ontology/company", "surface form": "company"}]}, {"id": "836", "question": [{"language": "en", "string": "How many countries surround the sea into which the Upper Neratva flow?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { <http://dbpedia.org/resource/Upper_Neretva> <http://dbpedia.org/ontology/riverMouth> ?x . ?x <http://dbpedia.org/ontology/country> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Sea>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "13"}}, "entities": [{"URI": "http://dbpedia.org/resource/Countries_of_the_United_Kingdom", "surface form": "countries"}, {"URI": "http://dbpedia.org/resource/Iveagh_Upper,_Upper_Half", "surface form": "Upper Neratva"}], "relations": [{"URI": "http://dbpedia.org/ontology/background", "surface form": "surround"}, {"URI": "http://dbpedia.org/ontology/elevation", "surface form": "sea"}, {"URI": "http://dbpedia.org/property/time", "surface form": "flow"}]}, {"id": "837", "question": [{"language": "en", "string": "How many rivers end in the Indian Ocean?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE {?uri <http://dbpedia.org/ontology/riverMouth> <http://dbpedia.org/resource/Indian_Ocean> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/River>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "78"}}, "entities": [{"URI": "http://dbpedia.org/resource/India", "surface form": "Indian Ocean"}, {"URI": "http://dbpedia.org/resource/Indian_Ocean", "surface form": "Indian Ocean"}], "relations": [{"URI": "http://dbpedia.org/ontology/riverMouth", "surface form": "rivers"}, {"URI": "http://dbpedia.org/ontology/River", "surface form": "river"}]}, {"id": "838", "question": [{"language": "en", "string": "Who is owner of the soccer club which owns the Cobham Training Centre?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Cobham_Training_Centre> <http://dbpedia.org/property/owner> ?x . ?x <http://dbpedia.org/property/owner> ?uri . }"}, "answers": {"uri": {"type": "literal", "xml:lang": "en", "value": "BlueCo 22 Limited"}}, "entities": [{"URI": "http://dbpedia.org/resource/Cobham_Training_Centre", "surface form": "Cobham Training Centre"}], "relations": [{"URI": "http://dbpedia.org/ontology/owner", "surface form": "owner"}, {"URI": "http://dbpedia.org/ontology/college", "surface form": "soccer club"}, {"URI": "http://dbpedia.org/property/towns", "surface form": "owns"}]}, {"id": "839", "question": [{"language": "en", "string": "List some things that Swedish people have become famous for?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/stateOfOrigin> <http://dbpedia.org/resource/Sweden> . ?x <http://dbpedia.org/ontology/knownFor> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vasa_(ship)"}}, "entities": [{"URI": "http://dbpedia.org/resource/Sweden", "surface form": "Swedish"}, {"URI": "http://dbpedia.org/resource/Swedish", "surface form": "Swedish"}], "relations": [{"URI": "http://dbpedia.org/ontology/established", "surface form": "famous"}, {"URI": "http://dbpedia.org/ontology/country", "surface form": ""}, {"URI": "http://dbpedia.org/ontology/country", "surface form": ""}]}, {"id": "840", "question": [{"language": "en", "string": "Cleopatra V of Egypt is father to which royalty?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/mother> <http://dbpedia.org/resource/Cleopatra_V_of_Egypt> } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Berenice_IV"}}, "entities": [{"URI": "http://dbpedia.org/resource/V", "surface form": "V"}, {"URI": "http://dbpedia.org/resource/Cleopatra_IV_of_Egypt", "surface form": "cleopatra of Egypt"}], "relations": [{"URI": "http://dbpedia.org/property/father", "surface form": "father"}, {"URI": "http://dbpedia.org/ontology/allegiance", "surface form": "royalty"}]}, {"id": "841", "question": [{"language": "en", "string": "Give me some TV stations whose network's main language is American English?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/language> <http://dbpedia.org/resource/American_English> . ?uri <http://dbpedia.org/property/network> ?x . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionStation>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/AT&T_SportsNet_Pittsburgh"}}, "entities": [{"URI": "http://dbpedia.org/resource/Tv_test_pattern", "surface form": "TV"}, {"URI": "http://dbpedia.org/resource/Tu_Tu_Main_Main", "surface form": " main language"}, {"URI": "http://dbpedia.org/resource/Organization_of_American_States", "surface form": "American English"}, {"URI": "http://dbpedia.org/resource/American_English", "surface form": "American English"}], "relations": [{"URI": "http://dbpedia.org/ontology/order", "surface form": "stations"}, {"URI": "http://dbpedia.org/ontology/network", "surface form": "network"}, {"URI": "http://dbpedia.org/ontology/country", "surface form": ""}]}, {"id": "842", "question": [{"language": "en", "string": "How many artists' works are in Muse d'Orsay?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/museum> <http://dbpedia.org/resource/Mus\u00e9e_d'Orsay> . ?x <http://dbpedia.org/property/artist> ?uri . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Artist>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "68"}}, "entities": [{"URI": "http://dbpedia.org/resource/Muse_discography", "surface form": "Muse d"}], "relations": [{"URI": "http://dbpedia.org/ontology/artist", "surface form": "artists"}, {"URI": "http://dbpedia.org/ontology/language", "surface form": " works"}]}, {"id": "843", "question": [{"language": "en", "string": "Whose wife is a presenter at WWE?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/presenter> <http://dbpedia.org/resource/WWE> . ?uri <http://dbpedia.org/ontology/spouse> ?x . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Johnny_Gargano"}}, "entities": [{"URI": "http://dbpedia.org/resource/WWE", "surface form": "WWE"}], "relations": [{"URI": "http://dbpedia.org/property/spouse", "surface form": "wife"}, {"URI": "http://dbpedia.org/ontology/presenter", "surface form": "presenter"}]}, {"id": "844", "question": [{"language": "en", "string": "Give me a count of everything owned by the network whose sister name is The CW?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/sisterNames> <http://dbpedia.org/resource/The_CW> . ?uri <http://dbpedia.org/property/network> ?x . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/The_CW", "surface form": "The CW"}], "relations": [{"URI": "http://dbpedia.org/property/sisterNames", "surface form": "sister name"}, {"URI": "http://dbpedia.org/property/network", "surface form": "network"}]}, {"id": "845", "question": [{"language": "en", "string": "What sporting goods companies are located in Herzogenaurach?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/location> <http://dbpedia.org/resource/Herzogenaurach> } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Five_Ten_Footwear"}}, "entities": [{"URI": "http://dbpedia.org/resource/Companies_listed_on_the_New_York_Stock_Exchange_(J)", "surface form": "companies"}, {"URI": "http://dbpedia.org/resource/Herzogenaurach", "surface form": "Herzogenaurach"}], "relations": [{"URI": "http://dbpedia.org/ontology/location", "surface form": "located"}]}, {"id": "846", "question": [{"language": "en", "string": "Name the commander of Battle of the Thames ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Battle_of_the_Thames> <http://dbpedia.org/ontology/commander> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tecumseh"}}, "entities": [{"URI": "http://dbpedia.org/resource/Battle_of_the_Thames", "surface form": "Battle of the Thames"}], "relations": [{"URI": "http://dbpedia.org/ontology/commander", "surface form": "commander"}]}, {"id": "847", "question": [{"language": "en", "string": "Name the sports played by Fr. Agnel Multipurpose School and Junior College?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Fr._Agnel_Multipurpose_School_and_Junior_College> <http://dbpedia.org/ontology/sport> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Association_football"}}, "entities": [{"URI": "http://dbpedia.org/resource/Fr._Agnel_Multipurpose_School_and_Junior_College", "surface form": "Fr Agnel Multipurpose School"}, {"URI": "http://dbpedia.org/resource/Junior_college", "surface form": "Junior College"}], "relations": [{"URI": "http://dbpedia.org/property/name", "surface form": "name"}, {"URI": "http://dbpedia.org/ontology/sport", "surface form": "sports"}, {"URI": "http://dbpedia.org/ontology/coach", "surface form": "played"}]}, {"id": "848", "question": [{"language": "en", "string": "What is the alma mater of Julian Leow Beng Kim?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Julian_Leow_Beng_Kim> <http://dbpedia.org/property/almaMater> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sydney"}}, "entities": [{"URI": "http://dbpedia.org/resource/Julian_Leow_Beng_Kim", "surface form": "Julian Leow Beng Kim"}], "relations": [{"URI": "http://dbpedia.org/ontology/almaMater", "surface form": "alma mater"}]}, {"id": "849", "question": [{"language": "en", "string": "How many awards have been given to the participants of the Lawrence Realization Stakes?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/race> <http://dbpedia.org/resource/Lawrence_Realization_Stakes> . ?x <http://dbpedia.org/ontology/honours> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "43"}}, "entities": [{"URI": "http://dbpedia.org/resource/Lawrence_Realization_Stakes", "surface form": "Lawrence Realization Stakes"}], "relations": [{"URI": "http://dbpedia.org/ontology/award", "surface form": "awards"}, {"URI": "http://dbpedia.org/ontology/participant", "surface form": "participants"}]}, {"id": "850", "question": [{"language": "en", "string": "List the work edited by Mark Stevens and directed by Joel Schumacher?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/editing> <http://dbpedia.org/resource/Mark_Stevens_(film_editor)> . ?uri <http://dbpedia.org/ontology/director> <http://dbpedia.org/resource/Joel_Schumacher> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Work>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Number_23"}}, "entities": [{"URI": "http://dbpedia.org/resource/Mark_Stevens", "surface form": "Mark Stevens"}, {"URI": "http://dbpedia.org/resource/Joel_Schumacher", "surface form": "Joel Schumacher"}], "relations": [{"URI": "http://dbpedia.org/ontology/title", "surface form": "work"}, {"URI": "http://dbpedia.org/ontology/editor", "surface form": "edited"}, {"URI": "http://dbpedia.org/ontology/president", "surface form": "directed"}]}, {"id": "851", "question": [{"language": "en", "string": "Which president of William Eustus also married to Dolley Madison ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Dolley_Madison> <http://dbpedia.org/ontology/spouse> ?uri. <http://dbpedia.org/resource/William_Eustis> <http://dbpedia.org/property/president> ?uri} "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/James_Madison"}}, "entities": [{"URI": "http://dbpedia.org/resource/Dolley_Madison", "surface form": "Dolley Madison"}, {"URI": "http://dbpedia.org/resource/William_Eustis", "surface form": "william"}], "relations": [{"URI": "http://dbpedia.org/ontology/president", "surface form": "president"}, {"URI": "http://dbpedia.org/ontology/spouse", "surface form": "married"}]}, {"id": "852", "question": [{"language": "en", "string": "Count the different types of Flatbread ?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE {?uri <http://dbpedia.org/ontology/type> <http://dbpedia.org/resource/Flatbread> . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "68"}}, "entities": [{"URI": "http://dbpedia.org/resource/Flatbread", "surface form": "Flatbread"}], "relations": [{"URI": "http://dbpedia.org/ontology/type", "surface form": "count"}, {"URI": "http://dbpedia.org/property/type", "surface form": "types"}]}, {"id": "853", "question": [{"language": "en", "string": "Count the birthplaces of recepients of the National Museum of Racing and Hall of Fame."}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/honours> <http://dbpedia.org/resource/National_Museum_of_Racing_and_Hall_of_Fame> . ?x <http://dbpedia.org/ontology/birthPlace> ?uri . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Place>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "164"}}, "entities": [{"URI": "http://dbpedia.org/resource/National_Museum_of_Racing_and_Hall_of_Fame", "surface form": "National Museum of Racing"}, {"URI": "http://dbpedia.org/resource/Hall_of_fame", "surface form": "Hall of Fame"}], "relations": [{"URI": "http://dbpedia.org/ontology/type", "surface form": "count"}, {"URI": "http://dbpedia.org/ontology/country", "surface form": "birthplaces"}]}, {"id": "854", "question": [{"language": "en", "string": "Name the serving line of Daund Junction railway station?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Daund_Junction_railway_station> <http://dbpedia.org/ontology/servingRailwayLine> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bhusawal\u2013Kalyan_section"}}, "entities": [{"URI": "http://dbpedia.org/resource/Daund_Junction_railway_station", "surface form": "Daund Junction railway station"}], "relations": [{"URI": "http://dbpedia.org/property/name", "surface form": "name"}, {"URI": "http://dbpedia.org/ontology/servingRailwayLine", "surface form": "serving"}]}, {"id": "855", "question": [{"language": "en", "string": "How many companies serve the Australian region?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE {?uri <http://dbpedia.org/ontology/regionServed> <http://dbpedia.org/resource/Australia> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Company>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "365"}}, "entities": [{"URI": "http://dbpedia.org/resource/Companies_listed_on_the_New_York_Stock_Exchange_(J)", "surface form": "companies"}, {"URI": "http://dbpedia.org/resource/Australia", "surface form": "Australian region"}, {"URI": "http://dbpedia.org/resource/Region", "surface form": "Australian region"}], "relations": [{"URI": "http://dbpedia.org/ontology/regionServed", "surface form": "region serve"}, {"URI": "http://dbpedia.org/ontology/Company", "surface form": "companies"}]}, {"id": "856", "question": [{"language": "en", "string": "How many teams was Garry Unger in, previously?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { <http://dbpedia.org/resource/Garry_Unger> <http://dbpedia.org/ontology/formerTeam> ?uri . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/SportsTeam>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "8"}}, "entities": [{"URI": "http://dbpedia.org/resource/Garry_Unger", "surface form": "Garry Unger"}], "relations": [{"URI": "http://dbpedia.org/ontology/formerTeam", "surface form": "teams"}, {"URI": "http://dbpedia.org/ontology/SportsTeam", "surface form": "team"}]}, {"id": "857", "question": [{"language": "en", "string": "How many writers worked on the album Main Course?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/album> <http://dbpedia.org/resource/Main_Course> . ?x <http://dbpedia.org/property/writer> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "29"}}, "entities": [{"URI": "http://dbpedia.org/resource/Main_Course", "surface form": "Main Course"}], "relations": [{"URI": "http://dbpedia.org/property/album", "surface form": "album"}, {"URI": "http://dbpedia.org/property/writer", "surface form": "writers"}]}, {"id": "858", "question": [{"language": "en", "string": "List the popular works of the author of Luther: The Calling ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Luther:_The_Calling> <http://dbpedia.org/property/author> ?x . ?x <http://dbpedia.org/ontology/notableWork> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hard_Sun"}}, "entities": [{"URI": "http://dbpedia.org/resource/Luther:_The_Calling", "surface form": " Luther: The Calling"}], "relations": [{"URI": "http://dbpedia.org/ontology/established", "surface form": "popular works"}, {"URI": "http://dbpedia.org/ontology/author", "surface form": "author"}]}, {"id": "859", "question": [{"language": "en", "string": "Which were the philosophers whose primary interest was Natural philosophy?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/mainInterests> <http://dbpedia.org/resource/Natural_philosophy> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Philosopher>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Anaxagoras"}}, "entities": [{"URI": "http://dbpedia.org/resource/Philosophers_Ridge", "surface form": "Philosophers"}, {"URI": "http://dbpedia.org/resource/Natural_philosophy", "surface form": "Natural philosophy"}], "relations": [{"URI": "http://dbpedia.org/property/mainInterests", "surface form": "interest"}, {"URI": "http://dbpedia.org/ontology/Philosopher", "surface form": "philosopher"}]}, {"id": "860", "question": [{"language": "en", "string": "What is the place of death of the royalties one of whose parents was Adam Ludwik Czartoryski?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/parent> <http://dbpedia.org/resource/Adam_Ludwik_Czartoryski> . ?x <http://dbpedia.org/property/deathPlace> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Royalty>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/French_Third_Republic"}}, "entities": [{"URI": "http://dbpedia.org/resource/Royalties", "surface form": "Royalties"}, {"URI": "http://dbpedia.org/resource/Adam_Ludwik_Czartoryski", "surface form": "Adam Ludwik Czartoryski"}], "relations": [{"URI": "http://dbpedia.org/ontology/place", "surface form": "place"}, {"URI": "http://dbpedia.org/ontology/deathPlace", "surface form": "death"}, {"URI": "http://dbpedia.org/ontology/parent", "surface form": "parents"}]}, {"id": "861", "question": [{"language": "en", "string": "where did the office holder died who is successor to Elmer Burkett ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/successor> <http://dbpedia.org/resource/Elmer_Burkett> . ?x <http://dbpedia.org/property/deathPlace> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/OfficeHolder>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hastings,_Nebraska"}}, "entities": [{"URI": "http://dbpedia.org/resource/Elmer_Burkett", "surface form": "Elmer Burkett"}], "relations": [{"URI": "http://dbpedia.org/ontology/incumbent", "surface form": "office holder"}, {"URI": "http://dbpedia.org/ontology/deathDate", "surface form": "died"}, {"URI": "http://dbpedia.org/ontology/successor", "surface form": "successor"}]}, {"id": "862", "question": [{"language": "en", "string": "What is the total number of other restingplace of the politicians whose one of the restingplace is East Norwalk Historical Cemetery?"}], "query": {"sparql": " SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/restingplace> <http://dbpedia.org/resource/East_Norwalk_Historical_Cemetery> . ?x <http://dbpedia.org/property/restingplace> ?uri }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "63"}}, "entities": [{"URI": "http://dbpedia.org/resource/Politicians_of_The_Wire", "surface form": "politicians"}, {"URI": "http://dbpedia.org/resource/East_Norwalk_Historical_Cemetery", "surface form": "East Norwalk Historical Cemetery"}], "relations": [{"URI": "http://dbpedia.org/ontology/populationTotal", "surface form": "total"}, {"URI": "http://dbpedia.org/ontology/restingPlace", "surface form": "restingplace"}, {"URI": "http://dbpedia.org/ontology/restingPlace", "surface form": "restingplace"}]}, {"id": "863", "question": [{"language": "en", "string": "Who were the pole drivers in GP when Damon hill was a first driver?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/firstDriver> <http://dbpedia.org/resource/Damon_Hill> . ?x <http://dbpedia.org/ontology/poleDriver> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/GrandPrix>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Michael_Schumacher"}}, "entities": [{"URI": "http://dbpedia.org/resource/GP", "surface form": "GP"}, {"URI": "http://dbpedia.org/resource/Damon_Hill", "surface form": "when Damon hill"}], "relations": [{"URI": "http://dbpedia.org/property/drivers", "surface form": "pole drivers"}, {"URI": "http://dbpedia.org/ontology/poleDriver", "surface form": "driver"}]}, {"id": "864", "question": [{"language": "en", "string": "How many albums were released under the Victor Entertainment label?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE {?uri <http://dbpedia.org/property/label> <http://dbpedia.org/resource/Victor_Entertainment> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Album>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "176"}}, "entities": [{"URI": "http://dbpedia.org/resource/Victor_Entertainment", "surface form": "Victor Entertainment label"}], "relations": [{"URI": "http://dbpedia.org/property/label", "surface form": "label"}, {"URI": "http://dbpedia.org/ontology/Album", "surface form": "album"}]}, {"id": "865", "question": [{"language": "en", "string": "What is the associated band of the musical artist who is the producer of The Trumpet Kings Meet Joe Turner ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/The_Trumpet_Kings_Meet_Joe_Turner> <http://dbpedia.org/property/producer> ?x . ?x <http://dbpedia.org/ontology/associatedBand> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/MusicalArtist>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jazz_at_the_Philharmonic"}}, "entities": [{"URI": "http://dbpedia.org/resource/The_Trumpet_Kings_Meet_Joe_Turner", "surface form": "The Trumpet Kings Meet Joe Turner"}], "relations": [{"URI": "http://dbpedia.org/ontology/associatedBand", "surface form": "associated"}, {"URI": "http://dbpedia.org/ontology/band", "surface form": "band"}, {"URI": "http://dbpedia.org/ontology/artist", "surface form": "musical artist"}, {"URI": "http://dbpedia.org/ontology/producer", "surface form": "producer"}]}, {"id": "866", "question": [{"language": "en", "string": "In how many places can I find tombs of people who fought in the Norwalk Trainband?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/militaryUnit> <http://dbpedia.org/resource/Norwalk_Trainband> . ?x <http://dbpedia.org/property/restingplace> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/Norwalk_Trainband", "surface form": "Norwalk Trainband"}], "relations": [{"URI": "http://dbpedia.org/property/height", "surface form": "places"}, {"URI": "http://dbpedia.org/ontology/type", "surface form": "fought"}]}, {"id": "867", "question": [{"language": "en", "string": "What is the location of Dad's Root Beer on Google maps?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Dad's_Root_Beer> <http://dbpedia.org/property/locationCity> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jasper,_Indiana"}}, "entities": [{"URI": "http://dbpedia.org/resource/Dad's_Root_Beer", "surface form": "Dad's Root Beer"}], "relations": [{"URI": "http://dbpedia.org/property/locationCity", "surface form": "location"}]}, {"id": "868", "question": [{"language": "en", "string": "How many saints have been venerated in Judaism?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE {?uri <http://dbpedia.org/ontology/veneratedIn> <http://dbpedia.org/resource/Judaism> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Saint>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "32"}}, "entities": [{"URI": "http://dbpedia.org/resource/Judaism", "surface form": "Judaism"}], "relations": [{"URI": "http://dbpedia.org/ontology/veneratedIn", "surface form": "venerated in"}, {"URI": "http://dbpedia.org/ontology/Saint", "surface form": "saint"}]}, {"id": "869", "question": [{"language": "en", "string": "How many people are famous for the Gibson Les Paul?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE {?uri <http://dbpedia.org/property/notableInstruments> <http://dbpedia.org/resource/Gibson_Les_Paul> . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/Gibson_Les_Paul", "surface form": "Gibson Les Paul"}], "relations": [{"URI": "http://dbpedia.org/ontology/established", "surface form": "famous"}]}, {"id": "870", "question": [{"language": "en", "string": "What municipalities are adjacent to Chne-Bougeries?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/neighboringMunicipalities> <http://dbpedia.org/resource/Ch\u00eane-Bougeries> . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vand\u0153uvres"}}, "entities": [{"URI": "http://dbpedia.org/resource/Municipalities_and_communities_of_Greece", "surface form": "municipalities"}, {"URI": "http://dbpedia.org/resource/CHNE-TV", "surface form": "Chne-Bougeries"}], "relations": [{"URI": "http://dbpedia.org/ontology/border", "surface form": "adjacent"}]}, {"id": "871", "question": [{"language": "en", "string": "List all the wine regions of the grapes whose one of the wine region is Mississippi ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/wineRegion> <http://dbpedia.org/resource/Mississippi> . ?x <http://dbpedia.org/ontology/wineRegion> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Grape>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mississippi"}}, "entities": [{"URI": "http://dbpedia.org/resource/Mississippi", "surface form": "Mississippi"}], "relations": [{"URI": "http://dbpedia.org/ontology/wineRegion", "surface form": "wine regions"}, {"URI": "http://dbpedia.org/property/grass", "surface form": "grapes"}, {"URI": "http://dbpedia.org/ontology/state", "surface form": "wine region"}]}, {"id": "872", "question": [{"language": "en", "string": "For which clubs do the players of Azam F.C. play for?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Azam_F.C.> <http://dbpedia.org/property/name> ?x . ?x <http://dbpedia.org/ontology/team> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/SoccerPlayer>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Azam_F.C."}}, "entities": [{"URI": "http://dbpedia.org/resource/Azam_F.C.", "surface form": "Azam F.C."}], "relations": [{"URI": "http://dbpedia.org/property/clubs", "surface form": "clubs"}, {"URI": "http://dbpedia.org/ontology/participant", "surface form": "players"}]}, {"id": "873", "question": [{"language": "en", "string": "What are the mammals whose phylum is Chordate?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/phylum> <http://dbpedia.org/resource/Chordate> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Mammal>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Allacerops"}}, "entities": [{"URI": "http://dbpedia.org/resource/Mammals_of_the_Indiana_Dunes", "surface form": "mammals"}, {"URI": "http://dbpedia.org/resource/Chordate", "surface form": "Chordate"}], "relations": [{"URI": "http://dbpedia.org/ontology/phylum", "surface form": "phylum"}]}, {"id": "874", "question": [{"language": "en", "string": "Give me an estimate of the number of manufacturers whose products are managed by MTR?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/operator> <http://dbpedia.org/resource/MTR> . ?x <http://dbpedia.org/ontology/manufacturer> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "10"}}, "entities": [{"URI": "http://dbpedia.org/resource/MTR", "surface form": "MTR"}], "relations": [{"URI": "http://dbpedia.org/ontology/quote", "surface form": "estimate"}, {"URI": "http://dbpedia.org/property/manufacturer", "surface form": "manufacturers"}, {"URI": "http://dbpedia.org/ontology/product", "surface form": "products"}, {"URI": "http://dbpedia.org/ontology/leader", "surface form": "managed"}]}, {"id": "875", "question": [{"language": "en", "string": "How many artists play as Rickenbacker?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE {?uri <http://dbpedia.org/ontology/instrument> <http://dbpedia.org/resource/Rickenbacker> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Artist>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/Rickenbacker", "surface form": "Rickenbacker"}], "relations": [{"URI": "http://dbpedia.org/ontology/instrument", "surface form": "play"}]}, {"id": "876", "question": [{"language": "en", "string": "Who are the associated musical artist of Carolyn Dennis?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Carolyn_Dennis> <http://dbpedia.org/ontology/associatedMusicalArtist> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Carpenters"}}, "entities": [{"URI": "http://dbpedia.org/resource/Ayala_(musical_artist)", "surface form": "associated musical artist"}, {"URI": "http://dbpedia.org/resource/Carolyn_Dennis", "surface form": "Carolyn Dennis"}], "relations": [{"URI": "http://dbpedia.org/ontology/associatedMusicalArtist", "surface form": "associated musical artist"}]}, {"id": "877", "question": [{"language": "en", "string": "Which citys mayor is anne hidalgo?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/mayor> <http://dbpedia.org/resource/Anne_Hidalgo> . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Paris"}}, "entities": [{"URI": "http://dbpedia.org/resource/Anne_Hidalgo", "surface form": "Anne hidalgo"}], "relations": [{"URI": "http://dbpedia.org/property/city", "surface form": "citys"}, {"URI": "http://dbpedia.org/ontology/mayor", "surface form": "mayor"}]}, {"id": "878", "question": [{"language": "en", "string": "How many ingedients are required to make the Ragout Fin?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { <http://dbpedia.org/resource/Ragout_fin> <http://dbpedia.org/ontology/ingredient> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "11"}}, "entities": [{"URI": "http://dbpedia.org/resource/Ragout_fin", "surface form": "Ragout Fin"}], "relations": [{"URI": "http://dbpedia.org/ontology/ingredient", "surface form": "ingedients"}, {"URI": "http://dbpedia.org/property/retired", "surface form": "required"}]}, {"id": "879", "question": [{"language": "en", "string": "Tell me the number of writers whose works have been recorded in Criteria Studios?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/recordedIn> <http://dbpedia.org/resource/Criteria_Studios> . ?x <http://dbpedia.org/property/writer> ?uri . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Artist>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/Criteria_Studios", "surface form": "Criteria Studios"}], "relations": [{"URI": "http://dbpedia.org/ontology/writer", "surface form": "writers"}, {"URI": "http://dbpedia.org/ontology/language", "surface form": "works"}, {"URI": "http://dbpedia.org/ontology/background", "surface form": "recorded"}]}, {"id": "880", "question": [{"language": "en", "string": "Under which archipelago does Canary Islands fall?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/archipelago> <http://dbpedia.org/resource/Canary_Islands> } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fuerteventura"}}, "entities": [{"URI": "http://dbpedia.org/resource/Canary_Islands", "surface form": "Canary Islands"}], "relations": [{"URI": "http://dbpedia.org/ontology/archipelago", "surface form": "archipelago"}, {"URI": "http://dbpedia.org/ontology/movement", "surface form": "fall"}]}, {"id": "881", "question": [{"language": "en", "string": "name the home stadium of FC Spartak Moscow season 2011-12"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/2011\u201312_FC_Spartak_Moscow_season> <http://dbpedia.org/ontology/homeStadium> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Luzhniki_Stadium"}}, "entities": [{"URI": "http://dbpedia.org/resource/FC", "surface form": "FC"}, {"URI": "http://dbpedia.org/resource/2011\u201312_FC_Spartak_Moscow_season", "surface form": "Spartak Moscow season 2011-12"}], "relations": [{"URI": "http://dbpedia.org/ontology/homeStadium", "surface form": "home stadium"}]}, {"id": "882", "question": [{"language": "en", "string": "How many owners are there of lines starting at the South Station?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/routeStart> <http://dbpedia.org/resource/South_Station> . ?x <http://dbpedia.org/property/owner> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "15"}}, "entities": [{"URI": "http://dbpedia.org/resource/South_Station", "surface form": "South Station"}], "relations": [{"URI": "http://dbpedia.org/ontology/routeStart", "surface form": "starting"}, {"URI": "http://dbpedia.org/property/owner", "surface form": "owners"}]}, {"id": "883", "question": [{"language": "en", "string": "Count all those who've played for the youth club which owns the Rosario, Santa Fe stadium."}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/ground> <http://dbpedia.org/resource/Rosario,_Santa_Fe> . ?uri <http://dbpedia.org/property/youthclubs> ?x . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "150"}}, "entities": [{"URI": "http://dbpedia.org/resource/Santa_F\u00e9,_Paran\u00e1", "surface form": "Rosario, Santa Fe stadium"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": "count"}, {"URI": "http://dbpedia.org/ontology/portrayer", "surface form": "played"}, {"URI": "http://dbpedia.org/ontology/time", "surface form": "youth club"}, {"URI": "http://dbpedia.org/ontology/languageFamily", "surface form": "owns"}]}, {"id": "884", "question": [{"language": "en", "string": "What are the television shows whose company is Playtone?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/company> <http://dbpedia.org/resource/Playtone> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_2000s_(miniseries)"}}, "entities": [{"URI": "http://dbpedia.org/resource/Playtone", "surface form": "Playtone"}], "relations": [{"URI": "http://dbpedia.org/ontology/company", "surface form": "company"}, {"URI": "http://dbpedia.org/ontology/TelevisionShow", "surface form": "television show"}]}, {"id": "885", "question": [{"language": "en", "string": "How many people currently play for Stoke City F.C.?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE {?uri <http://dbpedia.org/property/currentclub> <http://dbpedia.org/resource/Stoke_City_F.C.> . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "37"}}, "entities": [{"URI": "http://dbpedia.org/resource/FC", "surface form": "FC"}, {"URI": "http://dbpedia.org/resource/Stoke_City_L.F.C.", "surface form": "Stoke City"}], "relations": [{"URI": "http://dbpedia.org/ontology/team", "surface form": "play"}]}, {"id": "886", "question": [{"language": "en", "string": "Among the countries using Aureus as currency which had Nicomedia as an important place ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/capital> <http://dbpedia.org/resource/Nicomedia> . ?uri <http://dbpedia.org/ontology/currency> <http://dbpedia.org/resource/Aureus> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Country>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Roman_Empire"}}, "entities": [{"URI": "http://dbpedia.org/resource/Countries_of_the_United_Kingdom", "surface form": "countries"}, {"URI": "http://dbpedia.org/resource/Aureus", "surface form": "Aureus"}, {"URI": "http://dbpedia.org/resource/Nicomedia", "surface form": "Nicomedia"}], "relations": [{"URI": "http://dbpedia.org/ontology/currency", "surface form": "currency"}, {"URI": "http://dbpedia.org/ontology/place", "surface form": "place"}]}, {"id": "887", "question": [{"language": "en", "string": "What are the outflow of the lakes which also has one of the outflow as Congo River ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/outflow> <http://dbpedia.org/resource/Congo_River> . ?x <http://dbpedia.org/ontology/outflow> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Congo_River"}}, "entities": [{"URI": "http://dbpedia.org/resource/Congo_River", "surface form": "Congo River"}], "relations": [{"URI": "http://dbpedia.org/ontology/outflow", "surface form": "outflow"}, {"URI": "http://dbpedia.org/ontology/lake", "surface form": "lakes"}, {"URI": "http://dbpedia.org/ontology/outflow", "surface form": "outflow"}]}, {"id": "888", "question": [{"language": "en", "string": "Whose tomb is in cities under Dane County of Wisconsin?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/territory> <http://dbpedia.org/resource/Dane_County,_Wisconsin> . ?uri <http://dbpedia.org/ontology/restingPlace> ?x . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chris_Farley"}}, "entities": [{"URI": "http://dbpedia.org/resource/Dane_County,_Wisconsin", "surface form": "Dane County of Wisconsin"}], "relations": [{"URI": "http://dbpedia.org/ontology/race", "surface form": "tomb"}, {"URI": "http://dbpedia.org/ontology/country", "surface form": "cities"}, {"URI": "http://dbpedia.org/ontology/country", "surface form": ""}]}, {"id": "889", "question": [{"language": "en", "string": "How many cars succeeded the cars which were similar to Cadillac Fleetwood?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { <http://dbpedia.org/resource/Cadillac_Fleetwood> <http://dbpedia.org/property/related> ?x . ?x <http://dbpedia.org/ontology/predecessor> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Automobile>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "12"}}, "entities": [{"URI": "http://dbpedia.org/resource/Cadillac_Fleetwood", "surface form": "Cadillac Fleetwood"}], "relations": [{"URI": "http://dbpedia.org/ontology/management", "surface form": "cars"}, {"URI": "http://dbpedia.org/ontology/successor", "surface form": "succeeded"}, {"URI": "http://dbpedia.org/ontology/management", "surface form": "cars"}]}, {"id": "890", "question": [{"language": "en", "string": "In how many languages did Marika Gombitova sing?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/artist> <http://dbpedia.org/resource/Marika_Gombitov\u00e1> . ?x <http://dbpedia.org/property/language> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "9"}}, "entities": [{"URI": "http://dbpedia.org/resource/Marika_Gombitov\u00e1", "surface form": "Marika Gombitova"}], "relations": [{"URI": "http://dbpedia.org/ontology/language", "surface form": "languages"}, {"URI": "http://dbpedia.org/ontology/flag", "surface form": "sing"}]}, {"id": "891", "question": [{"language": "en", "string": "How many railway lines go through the station maintained by Public transport authority of western australia?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/owningOrganisation> <http://dbpedia.org/resource/Public_Transport_Authority_(Western_Australia)> . ?x <http://dbpedia.org/ontology/servingRailwayLine> ?uri . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/RailwayLine>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "16"}}, "entities": [{"URI": "http://dbpedia.org/resource/Public_Transport_Authority_(Western_Australia)", "surface form": "Public transport authority of western australia"}], "relations": [{"URI": "http://dbpedia.org/ontology/lyrics", "surface form": "railway lines"}, {"URI": "http://dbpedia.org/ontology/place", "surface form": "station"}, {"URI": "http://dbpedia.org/ontology/maintainedBy", "surface form": "maintained"}]}, {"id": "892", "question": [{"language": "en", "string": "Count the different number of academic areas covered by publications of SAGE?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/publisher> <http://dbpedia.org/resource/SAGE_Publications> . ?x <http://dbpedia.org/ontology/academicDiscipline> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "394"}}, "entities": [{"URI": "http://dbpedia.org/resource/Sage_Business_Solutions", "surface form": "SAGE"}], "relations": [{"URI": "http://dbpedia.org/ontology/type", "surface form": "count"}, {"URI": "http://dbpedia.org/ontology/abstract", "surface form": "academic"}, {"URI": "http://dbpedia.org/ontology/frozen", "surface form": "covered"}, {"URI": "http://dbpedia.org/property/publications", "surface form": "publications"}]}, {"id": "893", "question": [{"language": "en", "string": "How many services does the company who made Onedrive provide?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/service> <http://dbpedia.org/resource/OneDrive> . ?x <http://dbpedia.org/property/services> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "22"}}, "entities": [{"URI": "http://dbpedia.org/resource/OneDrive", "surface form": "Onedrive"}], "relations": [{"URI": "http://dbpedia.org/ontology/service", "surface form": "service"}, {"URI": "http://dbpedia.org/property/services", "surface form": "services"}]}, {"id": "894", "question": [{"language": "en", "string": "Count the different religions practiced by people who are in the Malaysian and Chinese association."}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/party> <http://dbpedia.org/resource/Malaysian_Chinese_Association> . ?x <http://dbpedia.org/ontology/religion> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/Malaysia", "surface form": "Malaysian"}, {"URI": "http://dbpedia.org/resource/Malaysian_Gods", "surface form": "Malaysian"}, {"URI": "http://dbpedia.org/resource/China", "surface form": "Chinese association"}, {"URI": "http://dbpedia.org/resource/Chinese_Badminton_Association", "surface form": "Chinese association"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": "count"}, {"URI": "http://dbpedia.org/ontology/languageFamily", "surface form": "religions"}, {"URI": "http://dbpedia.org/ontology/company", "surface form": "practiced"}, {"URI": "http://dbpedia.org/ontology/country", "surface form": ""}]}, {"id": "895", "question": [{"language": "en", "string": "List all those whose relatives' nationality is United States."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/nationality> <http://dbpedia.org/resource/United_States> . ?uri <http://dbpedia.org/ontology/relative> ?x . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bruce_DuMont"}}, "entities": [{"URI": "http://dbpedia.org/resource/United_States", "surface form": "United States"}], "relations": [{"URI": "http://dbpedia.org/ontology/relation", "surface form": "relatives"}, {"URI": "http://dbpedia.org/ontology/nationality", "surface form": " nationality"}]}, {"id": "896", "question": [{"language": "en", "string": "What is the genre of Battle Chess?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Battle_Chess> <http://dbpedia.org/property/genre> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chess"}}, "entities": [{"URI": "http://dbpedia.org/resource/Battle_Chess", "surface form": "Battle Chess"}], "relations": [{"URI": "http://dbpedia.org/ontology/genre", "surface form": "genre"}]}, {"id": "897", "question": [{"language": "en", "string": "President of Ghana is the leader title of which country?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/leaderTitle> <http://dbpedia.org/resource/President_of_Ghana> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Country>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ghana"}}, "entities": [{"URI": "http://dbpedia.org/resource/President_of_Ghana", "surface form": "President of Ghana"}], "relations": [{"URI": "http://dbpedia.org/property/leaderTitle", "surface form": "leader title"}, {"URI": "http://dbpedia.org/ontology/Country", "surface form": "country"}]}, {"id": "898", "question": [{"language": "en", "string": "What is the style of architecture of Pontiac Building ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Pontiac_Building> <http://dbpedia.org/ontology/architecturalStyle> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chicago_school_(architecture)"}}, "entities": [{"URI": "http://dbpedia.org/resource/Pontiac_Building", "surface form": "Pontiac Building"}], "relations": [{"URI": "http://dbpedia.org/ontology/type", "surface form": "style"}, {"URI": "http://dbpedia.org/ontology/architecturalStyle", "surface form": "architecture"}]}, {"id": "899", "question": [{"language": "en", "string": "Which basketball players have played in the league of National Basketball Association?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/league> <http://dbpedia.org/resource/National_Basketball_Association> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/BasketballPlayer>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alize_Johnson"}}, "entities": [{"URI": "http://dbpedia.org/resource/Players", "surface form": "basketball players"}, {"URI": "http://dbpedia.org/resource/National_Basketball_Association", "surface form": "National Basketball Association"}], "relations": [{"URI": "http://dbpedia.org/ontology/league", "surface form": "league"}, {"URI": "http://dbpedia.org/ontology/BasketballPlayer", "surface form": "basketball player"}]}, {"id": "900", "question": [{"language": "en", "string": "Eric roth wrote how many screenplays?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE {?uri <http://dbpedia.org/property/screenplay> <http://dbpedia.org/resource/Eric_Roth> . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "8"}}, "entities": [{"URI": "http://dbpedia.org/resource/Eric_Roth", "surface form": "eric roth"}, {"URI": "http://dbpedia.org/resource/Screenplay", "surface form": "screenplays"}], "relations": [{"URI": "http://dbpedia.org/property/screenplay", "surface form": "screenplay"}]}, {"id": "901", "question": [{"language": "en", "string": "Who were the opponents of the people buried in the tower of London?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/restingPlace> <http://dbpedia.org/resource/Tower_of_London> . ?x <http://dbpedia.org/ontology/opponent> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Person>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/William_Knollys,_1st_Earl_of_Banbury"}}, "entities": [{"URI": "http://dbpedia.org/resource/London", "surface form": "London"}], "relations": [{"URI": "http://dbpedia.org/ontology/rival", "surface form": "opponents"}, {"URI": "http://dbpedia.org/ontology/flag", "surface form": "buried"}, {"URI": "http://dbpedia.org/property/column", "surface form": "tower"}]}, {"id": "902", "question": [{"language": "en", "string": "Where is the tombstone of the successor of Edward Wolcott?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Edward_O._Wolcott> <http://dbpedia.org/property/successor> ?x . ?x <http://dbpedia.org/ontology/restingPlace> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Denver"}}, "entities": [{"URI": "http://dbpedia.org/resource/Tombstone_(typography)", "surface form": "tombstone"}, {"URI": "http://dbpedia.org/resource/Edward_O._Wolcott", "surface form": "Edward Wolcott"}], "relations": [{"URI": "http://dbpedia.org/property/successor", "surface form": "successor"}, {"URI": "http://dbpedia.org/ontology/restingPlace", "surface form": "tomb"}]}, {"id": "903", "question": [{"language": "en", "string": "In how many places did the Schutzstaffels die?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/militaryRank> <http://dbpedia.org/resource/Schutzstaffel> . ?x <http://dbpedia.org/property/placeOfDeath> ?uri . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Place>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/Schutzstaffel", "surface form": "Schutzstaffels"}], "relations": [{"URI": "http://dbpedia.org/ontology/place", "surface form": "places"}, {"URI": "http://dbpedia.org/ontology/deathDate", "surface form": "die"}]}, {"id": "904", "question": [{"language": "en", "string": "How many members are there of the organization headquartered at Amstelveen?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/headquarters> <http://dbpedia.org/resource/Amstelveen> . ?x <http://dbpedia.org/property/membership> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "37"}}, "entities": [{"URI": "http://dbpedia.org/resource/Amstelveen", "surface form": "Amstelveen"}], "relations": [{"URI": "http://dbpedia.org/property/headquarters", "surface form": "headquarter"}, {"URI": "http://dbpedia.org/property/membership", "surface form": "members"}]}, {"id": "905", "question": [{"language": "en", "string": "What are the nearest city to the historic places whose one of the nearest city is Wisconsin?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/nearestCity> <http://dbpedia.org/resource/Wisconsin> . ?x <http://dbpedia.org/property/nearestCity> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/HistoricPlace>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cedarburg_(town),_Wisconsin"}}, "entities": [{"URI": "http://dbpedia.org/resource/Heritage_New_Zealand", "surface form": "historic places"}, {"URI": "http://dbpedia.org/resource/Wisconsin", "surface form": "Wisconsin"}], "relations": [{"URI": "http://dbpedia.org/ontology/nearestCity", "surface form": "nearest city"}, {"URI": "http://dbpedia.org/ontology/nearestCity", "surface form": "nearest city"}]}, {"id": "906", "question": [{"language": "en", "string": "Who is the producer of Captain EO ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Captain_EO> <http://dbpedia.org/property/producer> ?uri } "}, "answers": {"uri": {"type": "literal", "xml:lang": "en", "value": "George Lucas"}}, "entities": [{"URI": "http://dbpedia.org/resource/Captain_EO", "surface form": "Captain EO"}], "relations": [{"URI": "http://dbpedia.org/ontology/producer", "surface form": "producer"}]}, {"id": "907", "question": [{"language": "en", "string": "Where did the conflict take place in which Henri Putz fought?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Henri_Putz> <http://dbpedia.org/ontology/battle> ?x . ?x <http://dbpedia.org/ontology/territory> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Annam_(French_protectorate)"}}, "entities": [{"URI": "http://dbpedia.org/resource/Henri_Putz", "surface form": "Henri Putz"}], "relations": [{"URI": "http://dbpedia.org/ontology/battle", "surface form": "conflict"}, {"URI": "http://dbpedia.org/ontology/place", "surface form": "place"}, {"URI": "http://dbpedia.org/ontology/type", "surface form": "fought"}]}, {"id": "908", "question": [{"language": "en", "string": "Where did the aristocrats die whose mother was Maria Ludwika Krasiska?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/mother> <http://dbpedia.org/resource/Maria_Ludwika_Krasi\u0144ska> . ?x <http://dbpedia.org/property/deathPlace> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Royalty>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/French_Third_Republic"}}, "entities": [{"URI": "http://dbpedia.org/resource/Aristocrats_(TV_series)", "surface form": "aristocrats"}, {"URI": "http://dbpedia.org/resource/Maria_Ludwika_Krasi\u0144ska", "surface form": "Maria Ludwika Krasiska"}], "relations": [{"URI": "http://dbpedia.org/ontology/deathDate", "surface form": "die"}, {"URI": "http://dbpedia.org/ontology/parent", "surface form": "mother"}]}, {"id": "909", "question": [{"language": "en", "string": "Who are the major stockholders of the bank which is the company of Bloomberg Markets ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Bloomberg_Markets> <http://dbpedia.org/property/company> ?x . ?x <http://dbpedia.org/property/owner> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Bank>}"}, "answers": {"uri": {"type": "literal", "xml:lang": "en", "value": "Bank of America"}}, "entities": [{"URI": "http://dbpedia.org/resource/Bloomberg_Markets", "surface form": "Bloomberg Markets"}], "relations": [{"URI": "http://dbpedia.org/property/first", "surface form": "major stockholders"}, {"URI": "http://dbpedia.org/ontology/series", "surface form": "bank"}, {"URI": "http://dbpedia.org/ontology/company", "surface form": "company"}]}, {"id": "910", "question": [{"language": "en", "string": "List all crafts of the people whose one of the profession is Kingdom of Naples ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/occupation> <http://dbpedia.org/resource/Kingdom_of_Naples> . ?x <http://dbpedia.org/ontology/occupation> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Person>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Albanian_revolt_of_1432\u20131436"}}, "entities": [{"URI": "http://dbpedia.org/resource/Kingdom_of_Naples", "surface form": "Kingdom of Naples profession"}], "relations": [{"URI": "http://dbpedia.org/ontology/occupation", "surface form": "crafts"}]}, {"id": "911", "question": [{"language": "en", "string": "What are some developers which use Emacs Lisp in their projects?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/programmingLanguage> <http://dbpedia.org/resource/Emacs_Lisp> . ?x <http://dbpedia.org/ontology/developer> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/GNU_Project"}}, "entities": [{"URI": "http://dbpedia.org/resource/Emacs_Lisp", "surface form": "Emacs Lisp"}], "relations": [{"URI": "http://dbpedia.org/ontology/developer", "surface form": "developers"}, {"URI": "http://dbpedia.org/property/work", "surface form": "projects"}]}, {"id": "912", "question": [{"language": "en", "string": "Current players of Colorado Avalanche have previously played for how many different teams?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/team> <http://dbpedia.org/resource/Colorado_Avalanche> . ?x <http://dbpedia.org/ontology/formerTeam> ?uri . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/SportsTeam>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "52"}}, "entities": [{"URI": "http://dbpedia.org/resource/Colorado_Avalanche", "surface form": "Colorado Avalanche"}], "relations": [{"URI": "http://dbpedia.org/ontology/incumbent", "surface form": "current players"}, {"URI": "http://dbpedia.org/ontology/portrayer", "surface form": "played"}, {"URI": "http://dbpedia.org/property/team", "surface form": "teams"}]}, {"id": "913", "question": [{"language": "en", "string": "List the books whose authors are in Alcal de Henares."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/birthPlace> <http://dbpedia.org/resource/Alcal\u00e1_de_Henares> . ?uri <http://dbpedia.org/ontology/author> ?x . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Book>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/La_Galatea"}}, "entities": [{"URI": "http://dbpedia.org/resource/Alcal\u00e1_de_Henares_Cathedral", "surface form": "Alcal de Henares"}], "relations": [{"URI": "http://dbpedia.org/ontology/volume", "surface form": "books"}, {"URI": "http://dbpedia.org/ontology/parent", "surface form": "authors"}]}, {"id": "914", "question": [{"language": "en", "string": "Who is the stockholder of Paphos International Airport ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Paphos_International_Airport> <http://dbpedia.org/property/owner> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Republic_of_Cyprus"}}, "entities": [{"URI": "http://dbpedia.org/resource/Paphos_International_Airport", "surface form": "Stockholder of Paphos International Airport"}], "relations": [{"URI": "http://dbpedia.org/property/owner", "surface form": "stockholder"}]}, {"id": "915", "question": [{"language": "en", "string": "Give me the total number of architect of the buildings whose one of the architect was Louis D. Astorino?"}], "query": {"sparql": " SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/architect> <http://dbpedia.org/resource/Louis_D._Astorino> . ?x <http://dbpedia.org/property/architect> ?uri }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "11"}}, "entities": [{"URI": "http://dbpedia.org/resource/Louis_D._Astorino", "surface form": "Louis D. Astorino"}], "relations": [{"URI": "http://dbpedia.org/ontology/populationTotal", "surface form": "total"}, {"URI": "http://dbpedia.org/ontology/architect", "surface form": "architect"}, {"URI": "http://dbpedia.org/ontology/architect", "surface form": "buildings"}, {"URI": "http://dbpedia.org/ontology/architect", "surface form": "architect"}]}, {"id": "916", "question": [{"language": "en", "string": "In which races does Coneygree compete?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Coneygree> <http://dbpedia.org/property/race> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Denman_Chase"}}, "entities": [{"URI": "http://dbpedia.org/resource/Coneygree", "surface form": "Coneygree"}], "relations": [{"URI": "http://dbpedia.org/ontology/races", "surface form": "races"}, {"URI": "http://dbpedia.org/ontology/race", "surface form": "compete"}]}, {"id": "917", "question": [{"language": "en", "string": "What awards have been given to some screenwriters?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/occupation> <http://dbpedia.org/resource/Screenwriter> . ?x <http://dbpedia.org/ontology/award> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/British_Academy_of_Film_and_Television_Arts"}}, "entities": [{"URI": "http://dbpedia.org/resource/Screenwriter", "surface form": "screenwriters"}], "relations": [{"URI": "http://dbpedia.org/ontology/award", "surface form": "awards"}]}, {"id": "918", "question": [{"language": "en", "string": "List the saints venerated in Islam having major shrine as Tomb of Joshua ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/majorShrine> <http://dbpedia.org/resource/Tomb_of_Joshua> . ?uri <http://dbpedia.org/ontology/veneratedIn> <http://dbpedia.org/resource/Islam> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Saint>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Joshua"}}, "entities": [{"URI": "http://dbpedia.org/resource/Islam", "surface form": "Islam"}, {"URI": "http://dbpedia.org/resource/Tomb_of_Joshua", "surface form": "Tomb of Joshua"}], "relations": [{"URI": "http://dbpedia.org/ontology/saint", "surface form": "saints"}, {"URI": "http://dbpedia.org/ontology/veneratedIn", "surface form": "venerated"}, {"URI": "http://dbpedia.org/ontology/majorShrine", "surface form": "major shrine"}]}, {"id": "919", "question": [{"language": "en", "string": "List the total number of executive producer of TV show which have one of the executiive producer as Steven Moffat ?"}], "query": {"sparql": " SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/executiveProducer> <http://dbpedia.org/resource/Steven_Moffat> . ?x <http://dbpedia.org/property/executiveProducer> ?uri }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "300"}}, "entities": [{"URI": "http://dbpedia.org/resource/Lockheed_T-33", "surface form": "TV"}, {"URI": "http://dbpedia.org/resource/Steven_Moffat", "surface form": "Steven Moffat"}], "relations": [{"URI": "http://dbpedia.org/ontology/populationTotal", "surface form": "total"}, {"URI": "http://dbpedia.org/ontology/manufacturer", "surface form": "executive producer"}, {"URI": "http://dbpedia.org/ontology/show", "surface form": "show"}, {"URI": "http://dbpedia.org/ontology/manufacturer", "surface form": "executiive producer"}]}, {"id": "920", "question": [{"language": "en", "string": "How many religions have the relatives of waxiangs followed?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { <http://dbpedia.org/resource/Waxiang_people> <http://dbpedia.org/property/related> ?x . ?x <http://dbpedia.org/ontology/religion> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "13"}}, "entities": [{"URI": "http://dbpedia.org/resource/Waxiang_Chinese", "surface form": "Waxiangs"}], "relations": [{"URI": "http://dbpedia.org/ontology/religion", "surface form": "religion"}, {"URI": "http://dbpedia.org/property/related", "surface form": "followed"}]}, {"id": "921", "question": [{"language": "en", "string": "For which team does Ramiro Pea play ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Ramiro_Pe\u00f1a> <http://dbpedia.org/ontology/team> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sultanes_de_Monterrey"}}, "entities": [{"URI": "http://dbpedia.org/resource/Ramiro_Pe\u00f1a", "surface form": "Ramiro Pea"}], "relations": [{"URI": "http://dbpedia.org/ontology/team", "surface form": "team"}, {"URI": "http://dbpedia.org/ontology/team", "surface form": "play"}]}, {"id": "922", "question": [{"language": "en", "string": "What are the books written by the the person who made the Novelas ejemplares?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/notableWork> <http://dbpedia.org/resource/Novelas_ejemplares> . ?uri <http://dbpedia.org/ontology/author> ?x . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Book>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/La_Galatea"}}, "entities": [{"URI": "http://dbpedia.org/resource/Novelas_ejemplares", "surface form": "Novelas ejemplares"}], "relations": [{"URI": "http://dbpedia.org/ontology/volume", "surface form": "books"}, {"URI": "http://dbpedia.org/ontology/animal", "surface form": "written"}, {"URI": "http://dbpedia.org/ontology/person", "surface form": "person"}]}, {"id": "923", "question": [{"language": "en", "string": "Count the total number of battles fought by the military people which fought in Levant ?"}], "query": {"sparql": " SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/battles> <http://dbpedia.org/resource/Levant> . ?x <http://dbpedia.org/property/battles> ?uri }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/Levant", "surface form": "Levant"}], "relations": [{"URI": "http://dbpedia.org/ontology/type", "surface form": "count"}, {"URI": "http://dbpedia.org/ontology/populationTotal", "surface form": "total"}, {"URI": "http://dbpedia.org/ontology/battle", "surface form": "battles"}, {"URI": "http://dbpedia.org/ontology/type", "surface form": "fought"}, {"URI": "http://dbpedia.org/ontology/service", "surface form": "military"}, {"URI": "http://dbpedia.org/ontology/type", "surface form": "fought"}]}, {"id": "924", "question": [{"language": "en", "string": "How many subjects have been covered in fantasy novels?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/literaryGenre> <http://dbpedia.org/resource/Fantasy> . ?x <http://dbpedia.org/ontology/nonFictionSubject> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "44"}}, "entities": [{"URI": "http://dbpedia.org/resource/Fantasy", "surface form": "fantasy novels"}], "relations": [{"URI": "http://dbpedia.org/property/subject", "surface form": "subjects"}, {"URI": "http://dbpedia.org/ontology/frozen", "surface form": "covered"}]}, {"id": "925", "question": [{"language": "en", "string": "What was created by Larry David and Jerry Seinfeld?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/creator> <http://dbpedia.org/resource/Larry_David> . ?uri <http://dbpedia.org/ontology/creator> <http://dbpedia.org/resource/Jerry_Seinfeld> . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jerry_Seinfeld_(character)"}}, "entities": [{"URI": "http://dbpedia.org/resource/Larry_David", "surface form": "Larry David"}, {"URI": "http://dbpedia.org/resource/Jerry_Seinfeld", "surface form": "Jerry Seinfeld"}], "relations": [{"URI": "http://dbpedia.org/ontology/creator", "surface form": "created"}]}, {"id": "926", "question": [{"language": "en", "string": "How many people have trained the wrestlers who were billed in Wisconsin?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/billed> <http://dbpedia.org/resource/Wisconsin> . ?x <http://dbpedia.org/ontology/trainer> ?uri . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Person>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "5"}}, "entities": [{"URI": "http://dbpedia.org/resource/Wrestlers_(sculpture)", "surface form": "Wrestlers"}, {"URI": "http://dbpedia.org/resource/Wisconsin", "surface form": "Wisconsin"}], "relations": [{"URI": "http://dbpedia.org/ontology/trainer", "surface form": "trained"}, {"URI": "http://dbpedia.org/ontology/billed", "surface form": "billed"}]}, {"id": "927", "question": [{"language": "en", "string": "Which country did the prime minister belong to who was served by Thanong Bidaya ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Thanong_Bidaya> <http://dbpedia.org/property/primeminister> ?x . ?x <http://dbpedia.org/ontology/nationality> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Thailand"}}, "entities": [{"URI": "http://dbpedia.org/resource/Thanong_Bidaya", "surface form": "Thanong Bidaya"}], "relations": [{"URI": "http://dbpedia.org/property/primeminister", "surface form": "minister prime"}, {"URI": "http://dbpedia.org/ontology/nationality", "surface form": "country"}]}, {"id": "928", "question": [{"language": "en", "string": "tell me the school to which Cyril Hume went?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Cyril_Hume> <http://dbpedia.org/property/education> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Yale_University"}}, "entities": [{"URI": "http://dbpedia.org/resource/Cyril_Hume", "surface form": "Cyril Hume"}], "relations": [{"URI": "http://dbpedia.org/ontology/school", "surface form": "school"}]}, {"id": "929", "question": [{"language": "en", "string": "where did Boga originate?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Boga_(soft_drink)> <http://dbpedia.org/property/origin> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tunisia"}}, "entities": [{"URI": "http://dbpedia.org/resource/Boga_(soft_drink)", "surface form": "Boga"}], "relations": [{"URI": "http://dbpedia.org/property/origin", "surface form": "origin"}]}, {"id": "930", "question": [{"language": "en", "string": "Who is the singer of the album which has a song Me and My arrow ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Me_and_My_Arrow> <http://dbpedia.org/ontology/album> ?x . ?x <http://dbpedia.org/property/narrated> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Album>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alan_Thicke"}}, "entities": [{"URI": "http://dbpedia.org/resource/Me_&_U_(song)", "surface form": "song Me"}, {"URI": "http://dbpedia.org/resource/Me_And_My_Arrow", "surface form": "My arrow"}], "relations": [{"URI": "http://dbpedia.org/ontology/composer", "surface form": "singer"}, {"URI": "http://dbpedia.org/ontology/album", "surface form": "album"}]}, {"id": "931", "question": [{"language": "en", "string": "In how many different places can I fnd Modern Architectural buildings?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/architecturalStyle> <http://dbpedia.org/resource/Modern_architecture> . ?x <http://dbpedia.org/property/address> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "228"}}, "entities": [{"URI": "http://dbpedia.org/resource/I", "surface form": "I"}, {"URI": "http://dbpedia.org/resource/Architectural_Digest", "surface form": "Modern Architectural buildings"}], "relations": [{"URI": "http://dbpedia.org/property/height", "surface form": "places"}, {"URI": "http://dbpedia.org/ontology/destination", "surface form": "fnd"}]}, {"id": "932", "question": [{"language": "en", "string": "What are the houses of Parliament Security Services ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Parliament_Security_Services> <http://dbpedia.org/property/houses> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rajya_Sabha"}}, "entities": [{"URI": "http://dbpedia.org/resource/Parliament_Security_Services", "surface form": "Parliament Security Services"}], "relations": [{"URI": "http://dbpedia.org/property/houses", "surface form": "houses"}]}, {"id": "933", "question": [{"language": "en", "string": "Count the origin of the beverages which have been originated in england /"}], "query": {"sparql": " SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/origin> <http://dbpedia.org/resource/England> . ?x <http://dbpedia.org/property/origin> ?uri }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "2075"}}, "entities": [{"URI": "http://dbpedia.org/resource/England", "surface form": "england"}], "relations": [{"URI": "http://dbpedia.org/ontology/time", "surface form": "count"}, {"URI": "http://dbpedia.org/ontology/origin", "surface form": "origin"}, {"URI": "http://dbpedia.org/ontology/authority", "surface form": "beverages"}, {"URI": "http://dbpedia.org/ontology/engineer", "surface form": "originated"}, {"URI": "http://dbpedia.org/ontology/province", "surface form": "england /"}]}, {"id": "934", "question": [{"language": "en", "string": "Count the number of people became famous for when Andrew Jackson was a commander ?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/commander> <http://dbpedia.org/resource/Andrew_Jackson> . ?uri <http://dbpedia.org/ontology/knownFor> ?x . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "9"}}, "entities": [{"URI": "http://dbpedia.org/resource/Andrew_Jackson", "surface form": "Andrew Jackson"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": "count"}, {"URI": "http://dbpedia.org/property/established", "surface form": "famous"}, {"URI": "http://dbpedia.org/ontology/commander", "surface form": "commander"}]}, {"id": "935", "question": [{"language": "en", "string": "During the reigns of which monarchs was the name to the Israelite kingdom as United Monarch?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/title> <http://dbpedia.org/resource/Kingdom_of_Israel_(united_monarchy)> } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/David"}}, "entities": [{"URI": "http://dbpedia.org/resource/Agudat_Yisrael", "surface form": "Israelite kingdom as United Monarch"}], "relations": [{"URI": "http://dbpedia.org/property/reign", "surface form": "reigns"}, {"URI": "http://dbpedia.org/ontology/leader", "surface form": "monarchs"}, {"URI": "http://dbpedia.org/property/name", "surface form": "name"}]}, {"id": "936", "question": [{"language": "en", "string": "What is the person known for who is the movie director of Sleepy-Time Squirrel ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Sleepy-Time_Squirrel> <http://dbpedia.org/property/director> ?x . ?x <http://dbpedia.org/ontology/knownFor> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Person>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Donald_Duck"}}, "entities": [{"URI": "http://dbpedia.org/resource/Sleepy-Time_Squirrel", "surface form": "Sleepy-Time Squirrel"}], "relations": [{"URI": "http://dbpedia.org/ontology/director", "surface form": "director"}, {"URI": "http://dbpedia.org/ontology/knownFor", "surface form": "known for"}]}, {"id": "937", "question": [{"language": "en", "string": "Which nation is the origin of Dornier Aerodyne ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Dornier_Aerodyne> <http://dbpedia.org/property/nationalOrigin> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/West_Germany"}}, "entities": [{"URI": "http://dbpedia.org/resource/Dornier_Aerodyne", "surface form": "Dornier Aerodyne"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": "nation"}, {"URI": "http://dbpedia.org/ontology/origin", "surface form": "origin"}]}, {"id": "938", "question": [{"language": "en", "string": "Which type of building is Qun Thnh Temple ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Qu\u00e1n_Th\u00e1nh_Temple> <http://dbpedia.org/property/buildingType> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Temple"}}, "entities": [{"URI": "http://dbpedia.org/resource/Xu_Qun", "surface form": "Qun Thnh Temple"}], "relations": [{"URI": "http://dbpedia.org/ontology/type", "surface form": "type"}, {"URI": "http://dbpedia.org/ontology/building", "surface form": "building"}]}, {"id": "939", "question": [{"language": "en", "string": "Who is the artist of the album which has the song I Can't Change the World ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/I_Can't_Change_the_World> <http://dbpedia.org/property/album> ?x . ?x <http://dbpedia.org/property/artist> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Brad_Paisley"}}, "entities": [{"URI": "http://dbpedia.org/resource/I_Can't_Change_the_World", "surface form": "I Can't Change the World"}], "relations": [{"URI": "http://dbpedia.org/ontology/artist", "surface form": "artist"}, {"URI": "http://dbpedia.org/ontology/album", "surface form": "album"}, {"URI": "http://dbpedia.org/ontology/fate", "surface form": "Change"}]}, {"id": "940", "question": [{"language": "en", "string": "List TV shows with producer as Erik Bork and company is DreamWorks Television ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/company> <http://dbpedia.org/resource/DreamWorks_Television> . ?uri <http://dbpedia.org/ontology/producer> <http://dbpedia.org/resource/Erik_Bork> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Band_of_Brothers_(miniseries)"}}, "entities": [{"URI": "http://dbpedia.org/resource/Tv_test_pattern", "surface form": "TV"}, {"URI": "http://dbpedia.org/resource/Erik_Bork", "surface form": "Erik Bork"}, {"URI": "http://dbpedia.org/resource/DreamWorks_Television", "surface form": "DreamWorks Television"}], "relations": [{"URI": "http://dbpedia.org/ontology/place", "surface form": "shows"}, {"URI": "http://dbpedia.org/ontology/producer", "surface form": "producer"}, {"URI": "http://dbpedia.org/ontology/company", "surface form": "company"}]}, {"id": "941", "question": [{"language": "en", "string": "Which mountain range is the one with Ponte d'Aveneyre and Le Gibloux?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Pointe_d'Aveneyre> <http://dbpedia.org/ontology/mountainRange> ?uri. <http://dbpedia.org/resource/Le_Gibloux> <http://dbpedia.org/ontology/mountainRange> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Swiss_Alps"}}, "entities": [{"URI": "http://dbpedia.org/resource/Pointe_d'Aveneyre", "surface form": "d'aveneyre"}, {"URI": "http://dbpedia.org/resource/Le_Gibloux", "surface form": "Le Gibloux"}], "relations": [{"URI": "http://dbpedia.org/ontology/length", "surface form": "mountain range"}]}, {"id": "942", "question": [{"language": "en", "string": "Collaborators of Demis Roussos have composed music for which movies?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/associatedActs> <http://dbpedia.org/resource/Demis_Roussos> . ?uri <http://dbpedia.org/ontology/musicComposer> ?x . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rendezvous_in_Corfu"}}, "entities": [{"URI": "http://dbpedia.org/resource/Demis_Roussos", "surface form": "Demis Roussos"}], "relations": [{"URI": "http://dbpedia.org/ontology/associate", "surface form": "collaborators"}, {"URI": "http://dbpedia.org/ontology/musicComposer", "surface form": "composed"}, {"URI": "http://dbpedia.org/ontology/musicalBand", "surface form": "music"}, {"URI": "http://dbpedia.org/ontology/film", "surface form": "movies"}]}, {"id": "943", "question": [{"language": "en", "string": "In how many places are the tombs of everyone who died in England?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/placeOfDeath> <http://dbpedia.org/resource/England> . ?x <http://dbpedia.org/property/placeOfBurial> ?uri . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Place>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/Tombs_of_the_Blind_Dead", "surface form": "tombs"}, {"URI": "http://dbpedia.org/resource/England", "surface form": "England"}], "relations": [{"URI": "http://dbpedia.org/ontology/place", "surface form": "places"}, {"URI": "http://dbpedia.org/property/deathPlace", "surface form": "died"}]}, {"id": "944", "question": [{"language": "en", "string": "Where did the people beatified by Pope Pius X die?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/beatifiedBy> <http://dbpedia.org/resource/Pope_Pius_X> . ?x <http://dbpedia.org/property/deathPlace> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Person>}"}, "answers": {"uri": {"type": "literal", "xml:lang": "en", "value": "\u0110\u1ed3ng M\u01a1, \u0110\u00f4ng Kinh, Tonkin"}}, "entities": [{"URI": "http://dbpedia.org/resource/X", "surface form": "X"}, {"URI": "http://dbpedia.org/resource/Pope_Pius_X", "surface form": "Pope Pius"}], "relations": [{"URI": "http://dbpedia.org/property/beatifiedBy", "surface form": "beatified"}, {"URI": "http://dbpedia.org/ontology/deathDate", "surface form": "die"}]}, {"id": "945", "question": [{"language": "en", "string": "Name all the venues of the convention which has also been hosted in San Diego Convention ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/venue> <http://dbpedia.org/resource/San_Diego_Convention_Center> . ?x <http://dbpedia.org/property/venue> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/San_Diego_Convention_Center"}}, "entities": [{"URI": "http://dbpedia.org/resource/San_Diego_Convention_Center", "surface form": "San Diego Convention"}], "relations": [{"URI": "http://dbpedia.org/property/venue", "surface form": "venue"}, {"URI": "http://dbpedia.org/property/venue", "surface form": "venue"}]}, {"id": "946", "question": [{"language": "en", "string": "Count the different genres of music made by Argentinian bands?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/hometown> <http://dbpedia.org/resource/Argentina> . ?x <http://dbpedia.org/ontology/genre> ?uri . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/MusicGenre>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "388"}}, "entities": [{"URI": "http://dbpedia.org/resource/Argentina", "surface form": "Argentinian bands"}, {"URI": "http://dbpedia.org/resource/Music_of_Argentina", "surface form": "Argentinian bands"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": "count"}, {"URI": "http://dbpedia.org/ontology/genre", "surface form": "genres"}, {"URI": "http://dbpedia.org/ontology/musicSubgenre", "surface form": "music"}, {"URI": "http://dbpedia.org/ontology/country", "surface form": ""}]}, {"id": "947", "question": [{"language": "en", "string": "How many famous people are from the Filipinos?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE {?uri <http://dbpedia.org/ontology/stateOfOrigin> <http://dbpedia.org/resource/Filipinos> . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "316"}}, "entities": [{"URI": "http://dbpedia.org/resource/Filipinos", "surface form": "Filipinos"}], "relations": [{"URI": "http://dbpedia.org/ontology/established", "surface form": "famous"}]}, {"id": "948", "question": [{"language": "en", "string": "How many people have managed a club which owns the Riverside Stadium?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/ground> <http://dbpedia.org/resource/Riverside_Stadium> . ?uri <http://dbpedia.org/ontology/managerClub> ?x . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Person>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "44"}}, "entities": [{"URI": "http://dbpedia.org/resource/Riverside_Stadium", "surface form": "Riverside Stadium"}], "relations": [{"URI": "http://dbpedia.org/ontology/leader", "surface form": "managed"}, {"URI": "http://dbpedia.org/ontology/club", "surface form": "club"}, {"URI": "http://dbpedia.org/ontology/languageFamily", "surface form": "owns"}]}, {"id": "949", "question": [{"language": "en", "string": "Who was the parent of person whose child is William C P breckinridge?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/children> <http://dbpedia.org/resource/William_Campbell_Preston_Breckinridge> . ?x <http://dbpedia.org/ontology/parent> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Person>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/United_States_Senate"}}, "entities": [{"URI": "http://dbpedia.org/resource/Chess_Communication", "surface form": "C"}, {"URI": "http://dbpedia.org/resource/William_Campbell_Preston_Breckinridge", "surface form": "William P breckinridge"}, {"URI": "http://dbpedia.org/resource/P", "surface form": "P"}, {"URI": "http://dbpedia.org/resource/John_C._Breckinridge", "surface form": "William C breckinridge"}], "relations": [{"URI": "http://dbpedia.org/ontology/parent", "surface form": "parent"}, {"URI": "http://dbpedia.org/ontology/child", "surface form": "person"}, {"URI": "http://dbpedia.org/ontology/child", "surface form": "child"}]}, {"id": "950", "question": [{"language": "en", "string": "What are the school mascots in Blytheville school district?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/district> <http://dbpedia.org/resource/Blytheville_School_District> . ?x <http://dbpedia.org/property/mascot> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/School>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chickasaw"}}, "entities": [{"URI": "http://dbpedia.org/resource/Blytheville_School_District", "surface form": "Blytheville school district"}], "relations": [{"URI": "http://dbpedia.org/ontology/discipline", "surface form": "school mascots"}]}, {"id": "951", "question": [{"language": "en", "string": "Which country has the Carmel Winery and the Teperberg 1870 winery ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Carmel_Winery> <http://dbpedia.org/property/locationCountry> ?uri. <http://dbpedia.org/resource/Teperberg_1870> <http://dbpedia.org/property/locationCountry> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Israel"}}, "entities": [{"URI": "http://dbpedia.org/resource/Carmel_Winery", "surface form": "Carmel Winery"}, {"URI": "http://dbpedia.org/resource/Teperberg_1870", "surface form": "Teperberg 1870 winery"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": "country"}]}, {"id": "952", "question": [{"language": "en", "string": "Name the TV show broadcasted by Fox and presented by Ryan Seacrest ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/presenter> <http://dbpedia.org/resource/Ryan_Seacrest> . ?uri <http://dbpedia.org/ontology/channel> <http://dbpedia.org/resource/Fox_Broadcasting_Company> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Knock_Knock_Live"}}, "entities": [{"URI": "http://dbpedia.org/resource/Tv_test_pattern", "surface form": "TV"}, {"URI": "http://dbpedia.org/resource/Fox", "surface form": "Fox"}, {"URI": "http://dbpedia.org/resource/Ryan_Seacrest", "surface form": "Ryan Seacrest"}], "relations": [{"URI": "http://dbpedia.org/property/name", "surface form": "name"}, {"URI": "http://dbpedia.org/ontology/show", "surface form": "show"}, {"URI": "http://dbpedia.org/ontology/state", "surface form": "broadcasted"}]}, {"id": "953", "question": [{"language": "en", "string": "Count the religions followed by people living in British Columbia."}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/residence> <http://dbpedia.org/resource/British_Columbia> . ?x <http://dbpedia.org/property/religion> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/United_Kingdom", "surface form": "British Columbia"}, {"URI": "http://dbpedia.org/resource/British_Columbia", "surface form": "British Columbia"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": "count"}, {"URI": "http://dbpedia.org/ontology/religion", "surface form": "religions"}, {"URI": "http://dbpedia.org/ontology/person", "surface form": "living"}, {"URI": "http://dbpedia.org/ontology/country", "surface form": ""}]}, {"id": "954", "question": [{"language": "en", "string": "List the characters of Lysistrata ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Lysistrata> <http://dbpedia.org/property/characters> ?uri } "}, "answers": {"uri": {"type": "literal", "xml:lang": "en", "value": ""}}, "entities": [{"URI": "http://dbpedia.org/resource/Lysistrata", "surface form": "Lysistrata"}], "relations": [{"URI": "http://dbpedia.org/property/characters", "surface form": "characters"}]}, {"id": "955", "question": [{"language": "en", "string": "In how many districts is there a borough called tendring?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/borough> <http://dbpedia.org/resource/Tendring> . ?x <http://dbpedia.org/ontology/district> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/Tendring", "surface form": "tendring"}], "relations": [{"URI": "http://dbpedia.org/property/borough", "surface form": "borough"}, {"URI": "http://dbpedia.org/ontology/district", "surface form": "district"}]}, {"id": "956", "question": [{"language": "en", "string": "For everyone who died in paris, count their different fields of work."}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/deathPlace> <http://dbpedia.org/resource/Paris> . ?x <http://dbpedia.org/property/fields> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "75"}}, "entities": [], "relations": [{"URI": "http://dbpedia.org/ontology/board", "surface form": "died"}, {"URI": "http://dbpedia.org/ontology/department", "surface form": "paris,"}, {"URI": "http://dbpedia.org/ontology/time", "surface form": "count"}, {"URI": "http://dbpedia.org/ontology/stadium", "surface form": "fields"}, {"URI": "http://dbpedia.org/ontology/service", "surface form": "work"}]}, {"id": "957", "question": [{"language": "en", "string": "What is the meaning of Heydar ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Heydar> <http://dbpedia.org/property/meaning> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lion"}}, "entities": [{"URI": "http://dbpedia.org/resource/Heydar", "surface form": "Heydar"}], "relations": [{"URI": "http://dbpedia.org/ontology/meaning", "surface form": "meaning"}]}, {"id": "958", "question": [{"language": "en", "string": "On how many different grounds were seasons chaired by Ronaldo held?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/chairman> <http://dbpedia.org/resource/Ronaldo> . ?x <http://dbpedia.org/ontology/ground> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/Ronaldo", "surface form": "Ronaldo"}], "relations": [{"URI": "http://dbpedia.org/ontology/chairman", "surface form": "chaired"}, {"URI": "http://dbpedia.org/ontology/ground", "surface form": "grounds"}]}, {"id": "959", "question": [{"language": "en", "string": "Sentinel High School team is known as ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Sentinel_High_School> <http://dbpedia.org/property/teamName> ?uri } "}, "answers": {"uri": {"type": "literal", "xml:lang": "en", "value": "Spartans"}}, "entities": [{"URI": "http://dbpedia.org/resource/Sentinel_High_School", "surface form": "sentinel High School team"}], "relations": [{"URI": "http://dbpedia.org/property/teamName", "surface form": "team"}]}, {"id": "960", "question": [{"language": "en", "string": "Give me a count of all ice hockey players whose teams are headcoached by John Tortorella?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/headCoach> <http://dbpedia.org/resource/John_Tortorella> . ?uri <http://dbpedia.org/ontology/team> ?x . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/IceHockeyPlayer>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "45"}}, "entities": [{"URI": "http://dbpedia.org/resource/Ice_hockey", "surface form": "ice hockey players"}, {"URI": "http://dbpedia.org/resource/John_Tortorella", "surface form": "John Tortorella"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": "count"}, {"URI": "http://dbpedia.org/property/team", "surface form": "teams"}, {"URI": "http://dbpedia.org/property/headCoaches", "surface form": "headcoached"}]}, {"id": "961", "question": [{"language": "en", "string": "How many leagues have used the O.co Coliseum?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { <http://dbpedia.org/resource/O.co_Coliseum> <http://dbpedia.org/ontology/tenant> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/O.co_Coliseum", "surface form": "O.co Coliseum"}], "relations": [{"URI": "http://dbpedia.org/ontology/order", "surface form": "leagues"}]}, {"id": "962", "question": [{"language": "en", "string": "What is the common palce of study for jack McGregor and Philip W. Pillsbury ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Jack_McGregor> <http://dbpedia.org/ontology/education> ?uri. <http://dbpedia.org/resource/Philip_W._Pillsbury> <http://dbpedia.org/property/education> ?uri} "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Yale_University"}}, "entities": [{"URI": "http://dbpedia.org/resource/Jack_McGregor", "surface form": "jack McGregor"}, {"URI": "http://dbpedia.org/resource/W", "surface form": "W"}, {"URI": "http://dbpedia.org/resource/Emma_Pillsbury", "surface form": "Philip Pillsbury"}], "relations": [{"URI": "http://dbpedia.org/ontology/genre", "surface form": "common palce"}, {"URI": "http://dbpedia.org/property/studio", "surface form": "study"}]}, {"id": "963", "question": [{"language": "en", "string": "What team did the players start their careers with, who right now play for Fleisher Yarn?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/team> <http://dbpedia.org/resource/Fleisher_Yarn> . ?x <http://dbpedia.org/property/debutteam> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Athlete>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Philadelphia_Phillies"}}, "entities": [{"URI": "http://dbpedia.org/resource/Fleisher_Yarn", "surface form": "Fleisher Yarn"}], "relations": [{"URI": "http://dbpedia.org/ontology/team", "surface form": "team"}, {"URI": "http://dbpedia.org/ontology/combatant", "surface form": "players"}, {"URI": "http://dbpedia.org/ontology/head", "surface form": "start"}, {"URI": "http://dbpedia.org/ontology/award", "surface form": "careers with,"}, {"URI": "http://dbpedia.org/ontology/team", "surface form": "play"}]}, {"id": "964", "question": [{"language": "en", "string": "Where did the people die who were known for Young Life?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/knownFor> <http://dbpedia.org/resource/Young_Life> . ?x <http://dbpedia.org/ontology/deathPlace> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Person>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Colorado_Springs,_Colorado"}}, "entities": [{"URI": "http://dbpedia.org/resource/Young_Life", "surface form": "Young Life"}], "relations": [{"URI": "http://dbpedia.org/ontology/knownFor", "surface form": "known for"}, {"URI": "http://dbpedia.org/ontology/deathPlace", "surface form": "die"}]}, {"id": "965", "question": [{"language": "en", "string": "What is the musical whose music is by Jose Luis Narom, based upon?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/musicBy> <http://dbpedia.org/resource/Jos\u00e9_Luis_Narom> . ?x <http://dbpedia.org/ontology/basedOn> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Musical>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Don_Quixote"}}, "entities": [{"URI": "http://dbpedia.org/resource/Jos\u00e9_Luis_Narom", "surface form": "Jose Luis Narom"}], "relations": [{"URI": "http://dbpedia.org/ontology/show", "surface form": "musical"}, {"URI": "http://dbpedia.org/ontology/musicFusionGenre", "surface form": "music"}, {"URI": "http://dbpedia.org/ontology/relative", "surface form": "based"}]}, {"id": "966", "question": [{"language": "en", "string": "Who are the people which ITV(TV network) has employed?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/employer> <http://dbpedia.org/resource/ITV_(TV_network)> . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Adrian_Masters"}}, "entities": [{"URI": "http://dbpedia.org/resource/ITV_(TV_network)", "surface form": "ITV"}], "relations": [{"URI": "http://dbpedia.org/property/employer", "surface form": "employed"}]}, {"id": "967", "question": [{"language": "en", "string": "What is the broadcast area of WBCQ (SW) ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/WBCQ_(SW)> <http://dbpedia.org/property/area> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Asia"}}, "entities": [{"URI": "http://dbpedia.org/resource/WBCQ_(SW)", "surface form": "WBCQ"}], "relations": [{"URI": "http://dbpedia.org/property/area", "surface form": "area"}]}, {"id": "968", "question": [{"language": "en", "string": "Which kind of buildings are found in England?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/locationCountry> <http://dbpedia.org/resource/England> . ?x <http://dbpedia.org/ontology/type> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Building>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Townhouse"}}, "entities": [{"URI": "http://dbpedia.org/resource/England", "surface form": "England"}], "relations": [{"URI": "http://dbpedia.org/ontology/assembly", "surface form": "buildings"}]}, {"id": "969", "question": [{"language": "en", "string": "In which state is the team, which has John Roeslein?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/John_Roeslein> <http://dbpedia.org/ontology/team> ?x . ?x <http://dbpedia.org/property/state> ?uri . }"}, "answers": {"uri": {"type": "literal", "xml:lang": "en", "value": "Missouri"}}, "entities": [{"URI": "http://dbpedia.org/resource/John_Roeslein", "surface form": "John Roeslein"}], "relations": [{"URI": "http://dbpedia.org/ontology/team", "surface form": "team"}, {"URI": "http://dbpedia.org/property/state", "surface form": "state"}]}, {"id": "970", "question": [{"language": "en", "string": "Give me the count of all people who ascented a peak in California?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/locatedInArea> <http://dbpedia.org/resource/California> . ?x <http://dbpedia.org/ontology/firstAscentPerson> ?uri . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Person>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "67"}}, "entities": [{"URI": "http://dbpedia.org/resource/California", "surface form": "California"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": "count"}, {"URI": "http://dbpedia.org/ontology/established", "surface form": "ascented"}, {"URI": "http://dbpedia.org/ontology/language", "surface form": "peak"}]}, {"id": "971", "question": [{"language": "en", "string": "List the total number of regions of the building whose are located in\\Grand Forks Air Force Base?"}], "query": {"sparql": " SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/region> <http://dbpedia.org/resource/Grand_Forks_Air_Force_Base> . ?x <http://dbpedia.org/ontology/region> ?uri }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/Grand_Forks_Air_Force_Base", "surface form": "inGrand Forks Air Force Base"}], "relations": [{"URI": "http://dbpedia.org/ontology/populationTotal", "surface form": "total"}, {"URI": "http://dbpedia.org/ontology/region", "surface form": "regions"}, {"URI": "http://dbpedia.org/ontology/buildingEndDate", "surface form": "building"}, {"URI": "http://dbpedia.org/ontology/garrison", "surface form": "located"}]}, {"id": "972", "question": [{"language": "en", "string": "List down all the associcated musical artist of the artist of In a Word or 2 ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/In_a_Word_or_2> <http://dbpedia.org/property/artist> ?x . ?x <http://dbpedia.org/ontology/associatedMusicalArtist> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/De_La_Soul"}}, "entities": [{"URI": "http://dbpedia.org/resource/The_Artist_(film)", "surface form": "associcated musical artist"}, {"URI": "http://dbpedia.org/resource/In_a_Word_or_2", "surface form": "In a Word"}], "relations": [{"URI": "http://dbpedia.org/ontology/artist", "surface form": "artist"}, {"URI": "http://dbpedia.org/property/s", "surface form": "2"}]}, {"id": "973", "question": [{"language": "en", "string": "Joe Shuster has created how many comics character ?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE {?uri <http://dbpedia.org/property/creators> <http://dbpedia.org/resource/Joe_Shuster> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/ComicsCharacter>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "17"}}, "entities": [{"URI": "http://dbpedia.org/resource/Joe_Shuster", "surface form": "joe Shuster"}], "relations": [{"URI": "http://dbpedia.org/property/creators", "surface form": "created"}, {"URI": "http://dbpedia.org/ontology/ComicsCharacter", "surface form": "comics character"}]}, {"id": "974", "question": [{"language": "en", "string": "Name whose youth club was FC Barcelona ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/youthclubs> <http://dbpedia.org/resource/FC_Barcelona> . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Andreu_Font\u00e0s"}}, "entities": [{"URI": "http://dbpedia.org/resource/FC_Barcelona", "surface form": "FC Barcelona"}], "relations": [{"URI": "http://dbpedia.org/property/youthclubs", "surface form": "youth club"}]}, {"id": "975", "question": [{"language": "en", "string": "Which awards did the writer of Persona win ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Persona_(1966_film)> <http://dbpedia.org/ontology/writer> ?x . ?x <http://dbpedia.org/property/awards> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Goethe_Prize"}}, "entities": [{"URI": "http://dbpedia.org/resource/Persona_(1966_film)", "surface form": "Persona"}], "relations": [{"URI": "http://dbpedia.org/ontology/writer", "surface form": "writer"}, {"URI": "http://dbpedia.org/property/awards", "surface form": "awards"}]}, {"id": "976", "question": [{"language": "en", "string": "What is the highschool of the american football player who joined the Robert Morris Colonials program?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/school> <http://dbpedia.org/resource/Robert_Morris_Colonials_football> . ?x <http://dbpedia.org/property/highschool> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/AmericanFootballPlayer>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sto-Rox_High_School"}}, "entities": [{"URI": "http://dbpedia.org/resource/Robert_Morris_Colonials_football", "surface form": "Robert Morris Colonials"}], "relations": [{"URI": "http://dbpedia.org/ontology/highschool", "surface form": "highschool"}, {"URI": "http://dbpedia.org/ontology/thumbnail", "surface form": "joined"}]}, {"id": "977", "question": [{"language": "en", "string": "How many awards have graduates from the University of Queensland earned?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/almaMater> <http://dbpedia.org/resource/University_of_Queensland> . ?x <http://dbpedia.org/property/awards> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "56"}}, "entities": [{"URI": "http://dbpedia.org/resource/University_of_Queensland", "surface form": "University of Queensland"}], "relations": [{"URI": "http://dbpedia.org/ontology/almaMater", "surface form": "graduates"}, {"URI": "http://dbpedia.org/property/awards", "surface form": "awards"}]}, {"id": "978", "question": [{"language": "en", "string": "Which artist was taught by Jos Ruiz y Blasco?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/training> <http://dbpedia.org/resource/Jos\u00e9_Ruiz_y_Blasco> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Artist>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pablo_Picasso"}}, "entities": [{"URI": "http://dbpedia.org/resource/Pablo_Picasso", "surface form": "Jos Ruiz y Blasco"}], "relations": [{"URI": "http://dbpedia.org/ontology/training", "surface form": "taught"}]}, {"id": "979", "question": [{"language": "en", "string": "What ingredients are used in preparing the dish of Ragout fin?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Ragout_fin> <http://dbpedia.org/ontology/ingredient> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Agaricus_bisporus"}}, "entities": [{"URI": "http://dbpedia.org/resource/Ragout_fin", "surface form": "Ragout fin"}], "relations": [{"URI": "http://dbpedia.org/ontology/ingredient", "surface form": "ingredients"}, {"URI": "http://dbpedia.org/ontology/background", "surface form": "preparing"}, {"URI": "http://dbpedia.org/property/course", "surface form": "dish"}]}, {"id": "980", "question": [{"language": "en", "string": "In how many nations does Rhaetian Railways own train stations?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/owningOrganisation> <http://dbpedia.org/resource/Rhaetian_Railway> . ?x <http://dbpedia.org/ontology/country> ?uri . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Country>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "95"}}, "entities": [{"URI": "http://dbpedia.org/resource/Western_Rhaetian_Alps", "surface form": "Rhaetian Railways"}], "relations": [{"URI": "http://dbpedia.org/ontology/state", "surface form": "nations"}, {"URI": "http://dbpedia.org/ontology/chain", "surface form": "train stations"}]}, {"id": "981", "question": [{"language": "en", "string": "Which country's national motto is \"Truth prevails\"?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/nationalMotto> <http://dbpedia.org/resource/Truth_prevails> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Country>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Czechoslovak_Socialist_Republic"}}, "entities": [{"URI": "http://dbpedia.org/resource/Truth_prevails", "surface form": "Truth prevails"}], "relations": [{"URI": "http://dbpedia.org/property/nationalMotto", "surface form": "national motto"}, {"URI": "http://dbpedia.org/ontology/Country", "surface form": "country"}]}, {"id": "982", "question": [{"language": "en", "string": "Where was William anthony trained ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/William_Anthony_(artist)> <http://dbpedia.org/property/training> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Yale_University"}}, "entities": [{"URI": "http://dbpedia.org/resource/William_Anthony", "surface form": "William anthony"}], "relations": [{"URI": "http://dbpedia.org/ontology/training", "surface form": "trained"}]}, {"id": "983", "question": [{"language": "en", "string": "Name the wine regions of Bogdanua ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Bogdanu\u0161a> <http://dbpedia.org/ontology/wineRegion> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Croatia"}}, "entities": [{"URI": "http://dbpedia.org/resource/Bogdanu\u0161a", "surface form": "Bogdanua"}], "relations": [{"URI": "http://dbpedia.org/property/name", "surface form": "name"}, {"URI": "http://dbpedia.org/ontology/wineRegion", "surface form": "wine regions"}]}, {"id": "984", "question": [{"language": "en", "string": "Which board game can be said as a mind based game?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/genre> <http://dbpedia.org/resource/Board_game> . ?uri <http://dbpedia.org/ontology/genre> <http://dbpedia.org/resource/Mind_sport> . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Seega_(game)"}}, "entities": [], "relations": [{"URI": "http://dbpedia.org/ontology/house", "surface form": "board game"}, {"URI": "http://dbpedia.org/ontology/head", "surface form": "mind"}, {"URI": "http://dbpedia.org/ontology/relative", "surface form": "based"}, {"URI": "http://dbpedia.org/ontology/event", "surface form": "game"}]}, {"id": "985", "question": [{"language": "en", "string": "Where are the philosophers from, whose main work is on the matter of feminism in Canada?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/mainInterest> <http://dbpedia.org/resource/Feminism_in_Canada> . ?x <http://dbpedia.org/property/region> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Philosopher>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/North_America"}}, "entities": [{"URI": "http://dbpedia.org/resource/Feminism_in_Canada", "surface form": "feminism in Canada"}], "relations": [{"URI": "http://dbpedia.org/ontology/birthPlace", "surface form": "philosophers from,"}, {"URI": "http://dbpedia.org/ontology/service", "surface form": "main work"}, {"URI": "http://dbpedia.org/ontology/race", "surface form": "matter"}]}, {"id": "986", "question": [{"language": "en", "string": "What are the things built by Eristoff ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Eristoff> <http://dbpedia.org/property/manufacturer> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bacardi"}}, "entities": [{"URI": "http://dbpedia.org/resource/Eristoff", "surface form": "Eristoff"}], "relations": [{"URI": "http://dbpedia.org/ontology/manufacturer", "surface form": "built by"}]}, {"id": "987", "question": [{"language": "en", "string": "Who was the coach of 1972 Oakland Raiders season ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/1972_Oakland_Raiders_season> <http://dbpedia.org/ontology/coach> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/John_Madden"}}, "entities": [{"URI": "http://dbpedia.org/resource/1972_Oakland_Raiders_season", "surface form": "1972 Oakland Raiders season"}], "relations": [{"URI": "http://dbpedia.org/ontology/coach", "surface form": "coach"}]}, {"id": "988", "question": [{"language": "en", "string": "Whcih land of Citi Trends is also the constituency of Malik Al-Hassan Yakubu ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Malik_Al-Hassan_Yakubu> <http://dbpedia.org/property/constituency> ?uri. <http://dbpedia.org/resource/CitiTrends_(radio_show)> <http://dbpedia.org/ontology/country> ?uri} "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ghana"}}, "entities": [{"URI": "http://dbpedia.org/resource/Citi_Trends", "surface form": "Citi Trends"}, {"URI": "http://dbpedia.org/resource/Malik_Al-Hassan_Yakubu", "surface form": "Malik Al-Hassan Yakubu"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": "whcih land"}, {"URI": "http://dbpedia.org/property/constituency", "surface form": "constituency"}]}, {"id": "989", "question": [{"language": "en", "string": "Where did they debut their careers , those who have played for US men's national soccer team?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/nationalteam> <http://dbpedia.org/resource/United_States_men's_national_soccer_team> . ?x <http://dbpedia.org/property/debutteam> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Philadelphia_Phillies"}}, "entities": [{"URI": "http://dbpedia.org/resource/United_States_men's_national_soccer_team", "surface form": "US men's national soccer team"}], "relations": [{"URI": "http://dbpedia.org/property/nationalteam", "surface form": "national team"}, {"URI": "http://dbpedia.org/property/debutteam", "surface form": "debut team"}]}, {"id": "990", "question": [{"language": "en", "string": "What is the former team of the american football players whose position is Running back?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/position> <http://dbpedia.org/resource/Running_back> . ?x <http://dbpedia.org/ontology/formerTeam> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/AmericanFootballPlayer>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Arizona_Outlaws"}}, "entities": [{"URI": "http://dbpedia.org/resource/Running_back", "surface form": "Running back"}], "relations": [{"URI": "http://dbpedia.org/ontology/formerTeam", "surface form": "former team"}, {"URI": "http://dbpedia.org/ontology/position", "surface form": "position"}, {"URI": "http://dbpedia.org/ontology/government", "surface form": "Running"}]}, {"id": "991", "question": [{"language": "en", "string": "Which creator of Theme Time Radio Hour has also given the musical score of the The Times They Are a-Changin' (musical)?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Theme_Time_Radio_Hour> <http://dbpedia.org/property/creator> ?uri. <http://dbpedia.org/resource/The_Times_They_Are_a-Changin'_(musical)> <http://dbpedia.org/ontology/musicBy> ?uri} "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bob_Dylan"}}, "entities": [{"URI": "http://dbpedia.org/resource/Theme_Time_Radio_Hour", "surface form": "Theme Time Radio Hour"}, {"URI": "http://dbpedia.org/resource/The_Times_They_Are_a-Changin'_(musical)", "surface form": "The Times They Are a-Changin' (musical)"}], "relations": [{"URI": "http://dbpedia.org/property/creator", "surface form": "creator"}, {"URI": "http://dbpedia.org/ontology/musicBy", "surface form": "musical"}]}, {"id": "992", "question": [{"language": "en", "string": "How many different kinds of games are published by Interplay Entertainment?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/publisher> <http://dbpedia.org/resource/Interplay_Entertainment> . ?x <http://dbpedia.org/property/genre> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "144"}}, "entities": [{"URI": "http://dbpedia.org/resource/Interplay_Entertainment", "surface form": "Interplay Entertainment"}], "relations": [{"URI": "http://dbpedia.org/ontology/genre", "surface form": "kinds"}, {"URI": "http://dbpedia.org/ontology/games", "surface form": "games"}, {"URI": "http://dbpedia.org/ontology/publisher", "surface form": "published"}]}, {"id": "993", "question": [{"language": "en", "string": "What other awards have been given to Goya Award Winners?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/award> <http://dbpedia.org/resource/Goya_Awards> . ?x <http://dbpedia.org/property/awards> ?uri . }"}, "answers": {"uri": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "1991"}}, "entities": [{"URI": "http://dbpedia.org/resource/Goya_Awards", "surface form": "Goya Award "}], "relations": [{"URI": "http://dbpedia.org/ontology/award", "surface form": "awards"}, {"URI": "http://dbpedia.org/property/awards", "surface form": "awards"}]}, {"id": "994", "question": [{"language": "en", "string": "How many other important work has been done by the writers of Sarah Jane Adventures?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/notableworks> <http://dbpedia.org/resource/The_Sarah_Jane_Adventures> . ?x <http://dbpedia.org/ontology/notableWork> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/The_Sarah_Jane_Adventures", "surface form": "Sarah Jane Adventures"}], "relations": [{"URI": "http://dbpedia.org/property/notableworks", "surface form": "work"}, {"URI": "http://dbpedia.org/ontology/notableWork", "surface form": "work"}]}, {"id": "995", "question": [{"language": "en", "string": "Race horses whose grandsire is Wild Risk have taken part in which races?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/grandsire> <http://dbpedia.org/resource/Wild_Risk> . ?x <http://dbpedia.org/property/race> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/RaceHorse>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Summer_Stakes_(Canada)"}}, "entities": [{"URI": "http://dbpedia.org/resource/The_Wild", "surface form": "Wild Risk"}], "relations": [{"URI": "http://dbpedia.org/ontology/type", "surface form": "race horses"}, {"URI": "http://dbpedia.org/ontology/grandsire", "surface form": "grandsire"}, {"URI": "http://dbpedia.org/ontology/races", "surface form": "races"}]}, {"id": "996", "question": [{"language": "en", "string": "Which are the races in which Martin Molony participated?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Martin_Molony> <http://dbpedia.org/ontology/race> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Irish_Classic_Races"}}, "entities": [{"URI": "http://dbpedia.org/resource/Martin_Molony", "surface form": "Martin Molony"}], "relations": [{"URI": "http://dbpedia.org/ontology/race", "surface form": "race"}]}, {"id": "997", "question": [{"language": "en", "string": "List the science fiction shows broadcasted on BBC HD ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/genre> <http://dbpedia.org/resource/Science_fiction> . ?uri <http://dbpedia.org/ontology/network> <http://dbpedia.org/resource/BBC_HD> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ashes_to_Ashes_(British_TV_series)"}}, "entities": [{"URI": "http://dbpedia.org/resource/Science_fiction", "surface form": "science fiction"}, {"URI": "http://dbpedia.org/resource/BBC_HD", "surface form": "BBC HD"}], "relations": [{"URI": "http://dbpedia.org/ontology/nonFictionSubject", "surface form": "science fiction"}, {"URI": "http://dbpedia.org/ontology/place", "surface form": "shows"}, {"URI": "http://dbpedia.org/property/broadcaster", "surface form": "broadcasted"}]}, {"id": "998", "question": [{"language": "en", "string": "Who is the person opposed by Tom McLaury and Ike Clanton?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/opponent> <http://dbpedia.org/resource/Tom_McLaury> . ?uri <http://dbpedia.org/ontology/opponent> <http://dbpedia.org/resource/Ike_Clanton> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Person>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Wyatt_Earp"}}, "entities": [{"URI": "http://dbpedia.org/resource/Tom_McLaury", "surface form": "Tom McLaury"}, {"URI": "http://dbpedia.org/resource/Ike_Clanton", "surface form": "Ike Clanton"}], "relations": [{"URI": "http://dbpedia.org/ontology/type", "surface form": "person"}, {"URI": "http://dbpedia.org/ontology/opponent", "surface form": "opposed"}]}, {"id": "999", "question": [{"language": "en", "string": "Who owns the websites for which Jimmy wales writes?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/author> <http://dbpedia.org/resource/Jimmy_Wales> . ?x <http://dbpedia.org/ontology/owner> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fandom_(website)"}}, "entities": [{"URI": "http://dbpedia.org/resource/Websites_blocked_in_Pakistan", "surface form": "websites"}, {"URI": "http://dbpedia.org/resource/Jimmy_Wales", "surface form": "Jimmy wales"}], "relations": [{"URI": "http://dbpedia.org/ontology/languageFamily", "surface form": "owns"}, {"URI": "http://dbpedia.org/ontology/author", "surface form": "writes"}]}, {"id": "1000", "question": [{"language": "en", "string": "What are the bridges whose located in California?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/locatedInArea> <http://dbpedia.org/resource/California> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Bridge>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dinkey_Creek_Bridge"}}, "entities": [{"URI": "http://dbpedia.org/resource/California", "surface form": "California"}], "relations": [{"URI": "http://dbpedia.org/ontology/locatedInArea", "surface form": "located"}]}, {"id": "1001", "question": [{"language": "en", "string": "Who were the head of government agencies working in the German occupied Europe?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/jurisdiction> <http://dbpedia.org/resource/German-occupied_Europe> . ?x <http://dbpedia.org/ontology/leader> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/GovernmentAgency>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Heinrich_Himmler"}}, "entities": [{"URI": "http://dbpedia.org/resource/Germany", "surface form": "German"}, {"URI": "http://dbpedia.org/resource/German", "surface form": "German"}, {"URI": "http://dbpedia.org/resource/Europe", "surface form": "Europe"}], "relations": [{"URI": "http://dbpedia.org/ontology/head", "surface form": "head"}, {"URI": "http://dbpedia.org/ontology/governmentType", "surface form": "government agencies"}, {"URI": "http://dbpedia.org/ontology/language", "surface form": "working"}, {"URI": "http://dbpedia.org/property/about", "surface form": "occupied"}, {"URI": "http://dbpedia.org/ontology/country", "surface form": ""}, {"URI": "http://dbpedia.org/ontology/country", "surface form": ""}]}, {"id": "1002", "question": [{"language": "en", "string": "What is the largest city of the birthplace of Pat Kirkwood?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Pat_Kirkwood_(racing_driver)> <http://dbpedia.org/property/birthplace> ?x . ?x <http://dbpedia.org/ontology/largestCity> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Houston"}}, "entities": [{"URI": "http://dbpedia.org/resource/Pat_Kirkwood_(racing_driver)", "surface form": "Pat Kirkwood"}], "relations": [{"URI": "http://dbpedia.org/property/birthplace", "surface form": "birthplace"}, {"URI": "http://dbpedia.org/ontology/largestCity", "surface form": "largest city"}]}, {"id": "1003", "question": [{"language": "en", "string": "What is the academic journal whose editor is Stephen Law?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/editor> <http://dbpedia.org/resource/Stephen_Law> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/AcademicJournal>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Think_(journal)"}}, "entities": [{"URI": "http://dbpedia.org/resource/Stephen_Law", "surface form": "Stephen Law"}], "relations": [{"URI": "http://dbpedia.org/property/editor", "surface form": "editor"}, {"URI": "http://dbpedia.org/ontology/AcademicJournal", "surface form": "academic journal"}]}, {"id": "1004", "question": [{"language": "en", "string": "What awards have the alumni of Academy of Fine Arts in Lodz achieved?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/training> <http://dbpedia.org/resource/Academy_of_Fine_Arts_In_\u0141\u00f3d\u017a> . ?x <http://dbpedia.org/ontology/award> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Academy_Awards"}}, "entities": [{"URI": "http://dbpedia.org/resource/Academy_of_Fine_Arts_In_\u0141\u00f3d\u017a", "surface form": "academy"}], "relations": [{"URI": "http://dbpedia.org/ontology/award", "surface form": "awards"}, {"URI": "http://dbpedia.org/ontology/alumni", "surface form": "alumni"}, {"URI": "http://dbpedia.org/ontology/discharge", "surface form": "achieved"}]}, {"id": "1005", "question": [{"language": "en", "string": "Name the members of youth clubs which have Camp Nou as their homeground."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/ground> <http://dbpedia.org/resource/Camp_Nou> . ?uri <http://dbpedia.org/property/youthclubs> ?x . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Andreu_Font\u00e0s"}}, "entities": [{"URI": "http://dbpedia.org/resource/Camp_Nou", "surface form": "Camp Nou"}, {"URI": "http://dbpedia.org/resource/Hoveround", "surface form": "homeground"}], "relations": [{"URI": "http://dbpedia.org/property/name", "surface form": "name"}, {"URI": "http://dbpedia.org/ontology/part", "surface form": "members"}, {"URI": "http://dbpedia.org/ontology/time", "surface form": "youth clubs"}]}, {"id": "1006", "question": [{"language": "en", "string": "Which musical artist associated with Tony Allen has label with Celluloid Records ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/associatedMusicalArtist> <http://dbpedia.org/resource/Tony_Allen_(musician)> . ?uri <http://dbpedia.org/property/label> <http://dbpedia.org/resource/Celluloid_Records> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/MusicalArtist>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fela_Kuti"}}, "entities": [{"URI": "http://dbpedia.org/resource/Tony_Allen_(musician)", "surface form": "Tony Allen"}, {"URI": "http://dbpedia.org/resource/Celluloid_Records", "surface form": "Celluloid Records"}], "relations": [{"URI": "http://dbpedia.org/ontology/musicalArtist", "surface form": "musical artist"}, {"URI": "http://dbpedia.org/ontology/team", "surface form": "associated"}, {"URI": "http://dbpedia.org/property/label", "surface form": "label"}]}, {"id": "1007", "question": [{"language": "en", "string": "Who are some basketball players who played for Phoenix Suns?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/team> <http://dbpedia.org/resource/Phoenix_Suns> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/BasketballPlayer>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Damion_Lee"}}, "entities": [{"URI": "http://dbpedia.org/resource/National_Basketball_Players_Association", "surface form": "basketball players"}, {"URI": "http://dbpedia.org/resource/Phoenix_Suns", "surface form": "Phoenix Suns"}], "relations": [{"URI": "http://dbpedia.org/ontology/team", "surface form": "played for"}, {"URI": "http://dbpedia.org/ontology/BasketballPlayer", "surface form": "basketball player"}]}, {"id": "1008", "question": [{"language": "en", "string": "From how many works is the musical derived, whose lyrics are written by Sheldon Harnick?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/lyrics> <http://dbpedia.org/resource/Sheldon_Harnick> . ?x <http://dbpedia.org/ontology/basedOn> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "12"}}, "entities": [{"URI": "http://dbpedia.org/resource/Sheldon_Harnick", "surface form": "Sheldon Harnick"}], "relations": [{"URI": "http://dbpedia.org/ontology/language", "surface form": "works"}, {"URI": "http://dbpedia.org/ontology/show", "surface form": "musical derived,"}, {"URI": "http://dbpedia.org/ontology/lyrics", "surface form": "lyrics"}, {"URI": "http://dbpedia.org/ontology/writer", "surface form": "written"}]}, {"id": "1009", "question": [{"language": "en", "string": "How many non-fiction subject are there of the books whose one of the non-fiction subject is Ankh-Morpork City Watch ?"}], "query": {"sparql": " SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/nonFictionSubject> <http://dbpedia.org/resource/Ankh-Morpork_City_Watch> . ?x <http://dbpedia.org/ontology/nonFictionSubject> ?uri }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/Ankh-Morpork_City_Watch", "surface form": "Ankh-Morpork City Watch"}], "relations": [{"URI": "http://dbpedia.org/ontology/nonFictionSubject", "surface form": "non-fiction subject"}, {"URI": "http://dbpedia.org/property/books", "surface form": "books"}, {"URI": "http://dbpedia.org/ontology/nonFictionSubject", "surface form": "non-fiction subject"}]}, {"id": "1010", "question": [{"language": "en", "string": "Who is the licensee of EXXV-TV ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/EXXV-TV> <http://dbpedia.org/property/licensee> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mississippi"}}, "entities": [{"URI": "http://dbpedia.org/resource/EXXV-TV", "surface form": "EXXV-TV"}], "relations": [{"URI": "http://dbpedia.org/ontology/licensee", "surface form": "licensee"}]}, {"id": "1011", "question": [{"language": "en", "string": "Who are in the board of Jimmy Wales ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Jimmy_Wales> <http://dbpedia.org/ontology/board> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Wikimedia_Foundation"}}, "entities": [{"URI": "http://dbpedia.org/resource/Jimmy_Wales", "surface form": "Jimmy Wales"}], "relations": [{"URI": "http://dbpedia.org/ontology/board", "surface form": "board"}]}, {"id": "1012", "question": [{"language": "en", "string": "Where were some people associated with Steve Winwood employed at?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/associatedMusicalArtist> <http://dbpedia.org/resource/Steve_Winwood> . ?x <http://dbpedia.org/ontology/occupation> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Person>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Musician"}}, "entities": [{"URI": "http://dbpedia.org/resource/Steve_Winwood", "surface form": "Steve Winwood"}], "relations": [{"URI": "http://dbpedia.org/ontology/associatedBand", "surface form": "associated"}, {"URI": "http://dbpedia.org/property/about", "surface form": "employed"}]}, {"id": "1013", "question": [{"language": "en", "string": "What is the origin of the musical artist whose associated band is Ziggi Recado ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/associatedBand> <http://dbpedia.org/resource/Ziggi_Recado> . ?x <http://dbpedia.org/property/origin> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/MusicalArtist>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Aruba"}}, "entities": [{"URI": "http://dbpedia.org/resource/Ziggi_Recado", "surface form": "Ziggi Recado"}], "relations": [{"URI": "http://dbpedia.org/ontology/origin", "surface form": "origin"}, {"URI": "http://dbpedia.org/ontology/artist", "surface form": "musical artist"}, {"URI": "http://dbpedia.org/ontology/associatedBand", "surface form": "associated"}, {"URI": "http://dbpedia.org/ontology/band", "surface form": "band"}]}, {"id": "1014", "question": [{"language": "en", "string": "Name the royalty whose spouse was Cleopatra V of Egypt and one of his parent was Ptolemy XII Auletes?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/mother> <http://dbpedia.org/resource/Cleopatra_V_of_Egypt> . ?uri <http://dbpedia.org/ontology/parent> <http://dbpedia.org/resource/Ptolemy_XII_Auletes> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Royalty>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Berenice_IV"}}, "entities": [{"URI": "http://dbpedia.org/resource/V", "surface form": "V"}, {"URI": "http://dbpedia.org/resource/Cleopatra_Selene_II", "surface form": "Cleopatra of Egypt Cleopatra of Egypt"}, {"URI": "http://dbpedia.org/resource/V", "surface form": "V"}, {"URI": "http://dbpedia.org/resource/Cleopatra_Selene_II", "surface form": "Cleopatra of Egypt Cleopatra of Egypt"}, {"URI": "http://dbpedia.org/resource/XII", "surface form": "XII"}, {"URI": "http://dbpedia.org/resource/Ptolemy_XII_Auletes", "surface form": "Ptolemy Auletes"}], "relations": [{"URI": "http://dbpedia.org/property/name", "surface form": "name"}, {"URI": "http://dbpedia.org/ontology/allegiance", "surface form": "royalty"}, {"URI": "http://dbpedia.org/property/spouse", "surface form": "spouse"}]}, {"id": "1015", "question": [{"language": "en", "string": "List the major shrines of Jovan Vladimir?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Jovan_Vladimir> <http://dbpedia.org/property/majorShrine> ?uri } "}, "answers": {"uri": {"type": "literal", "xml:lang": "en", "value": "Monastery of St Jovan Vladimir, near Elbasan, Albania"}}, "entities": [{"URI": "http://dbpedia.org/resource/Jovan_Vladimir", "surface form": "Jovan Vladimir"}], "relations": [{"URI": "http://dbpedia.org/property/majorShrine", "surface form": "major shrines"}]}, {"id": "1016", "question": [{"language": "en", "string": "In which countries have the Start + Flug aircrafts originated?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/manufacturer> <http://dbpedia.org/resource/Start_+_Flug> . ?x <http://dbpedia.org/property/nationalOrigin> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Aircraft>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/West_Germany"}}, "entities": [{"URI": "http://dbpedia.org/resource/Start_+_Flug", "surface form": "Start + Flug"}], "relations": [{"URI": "http://dbpedia.org/ontology/engineer", "surface form": "originated"}]}, {"id": "1017", "question": [{"language": "en", "string": "How many other family of the mammals exists whose family is also Hominidae ?"}], "query": {"sparql": " SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/family> <http://dbpedia.org/resource/Hominidae> . ?x <http://dbpedia.org/ontology/family> ?uri }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/Mammals_of_the_Indiana_Dunes", "surface form": "mammals"}, {"URI": "http://dbpedia.org/resource/Hominidae", "surface form": "Hominidae"}], "relations": [{"URI": "http://dbpedia.org/ontology/family", "surface form": "family"}, {"URI": "http://dbpedia.org/ontology/date", "surface form": "exists"}, {"URI": "http://dbpedia.org/ontology/family", "surface form": "family"}]}, {"id": "1018", "question": [{"language": "en", "string": "What is the former team of the football player who is the coach of 2006 Oakland Raiders season ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/2006_Oakland_Raiders_season> <http://dbpedia.org/property/coach> ?x . ?x <http://dbpedia.org/ontology/formerTeam> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/AmericanFootballPlayer>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Oakland_Raiders"}}, "entities": [{"URI": "http://dbpedia.org/resource/2006_Oakland_Raiders_season", "surface form": "2006 Oakland Raiders season"}], "relations": [{"URI": "http://dbpedia.org/ontology/formerTeam", "surface form": "former team"}, {"URI": "http://dbpedia.org/ontology/coach", "surface form": "football player"}, {"URI": "http://dbpedia.org/ontology/coach", "surface form": "coach"}]}, {"id": "1019", "question": [{"language": "en", "string": "How many TV shows were made by someone who was associated with Lewis Hamilton?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/associatedBand> <http://dbpedia.org/resource/Lewis_Hamilton> . ?uri <http://dbpedia.org/property/creator> ?x . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "61"}}, "entities": [{"URI": "http://dbpedia.org/resource/Tv_test_pattern", "surface form": "TV"}, {"URI": "http://dbpedia.org/resource/Lewis_Hamilton", "surface form": "Lewis Hamilton"}], "relations": [{"URI": "http://dbpedia.org/ontology/place", "surface form": "shows"}, {"URI": "http://dbpedia.org/ontology/associatedBand", "surface form": "associated"}]}, {"id": "1020", "question": [{"language": "en", "string": "For how many other teams have the former players of Boston Bruins played?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/formerTeam> <http://dbpedia.org/resource/Boston_Bruins> . ?x <http://dbpedia.org/property/playedFor> ?uri . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/SportsTeam>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "3164"}}, "entities": [{"URI": "http://dbpedia.org/resource/Boston_Bruins", "surface form": "Boston Bruins"}], "relations": [{"URI": "http://dbpedia.org/ontology/formerTeam", "surface form": "former players"}, {"URI": "http://dbpedia.org/property/playedFor", "surface form": "played"}]}, {"id": "1021", "question": [{"language": "en", "string": "Which things have been made by artists who died in Midhurst?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/deathPlace> <http://dbpedia.org/resource/Midhurst> . ?uri <http://dbpedia.org/ontology/creator> ?x . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Doctor_Who"}}, "entities": [{"URI": "http://dbpedia.org/resource/Midhurst", "surface form": "Midhurst"}], "relations": [{"URI": "http://dbpedia.org/ontology/deathPlace", "surface form": "died in"}, {"URI": "http://dbpedia.org/ontology/creator", "surface form": "artists"}]}, {"id": "1022", "question": [{"language": "en", "string": "How many other important things has the painter of Sarah Jane Adventures done?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { <http://dbpedia.org/resource/The_Sarah_Jane_Adventures> <http://dbpedia.org/property/creator> ?x . ?x <http://dbpedia.org/ontology/notableWork> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/The_Sarah_Jane_Adventures_Collection", "surface form": "Sarah Jane Adventures"}], "relations": [{"URI": "http://dbpedia.org/ontology/painter", "surface form": "painter"}]}, {"id": "1023", "question": [{"language": "en", "string": "What is the label of I Pray on Christmas ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/I_Pray_on_Christmas> <http://dbpedia.org/property/label> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Columbia_Records"}}, "entities": [{"URI": "http://dbpedia.org/resource/I_Pray_on_Christmas", "surface form": "I Pray on Christmas"}], "relations": [{"URI": "http://dbpedia.org/property/label", "surface form": "label"}, {"URI": "http://dbpedia.org/ontology/battle", "surface form": "Pray"}]}, {"id": "1024", "question": [{"language": "en", "string": "List the destination of Novair International Airways ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Novair_International_Airways> <http://dbpedia.org/ontology/destination> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mediterranean_Sea"}}, "entities": [{"URI": "http://dbpedia.org/resource/Novair_International_Airways", "surface form": "Novair International Airways"}], "relations": [{"URI": "http://dbpedia.org/ontology/destination", "surface form": "destination"}]}, {"id": "1025", "question": [{"language": "en", "string": "Count the number of actors in Lucy Sullivan Is Getting Married."}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { <http://dbpedia.org/resource/Lucy_Sullivan_Is_Getting_Married> <http://dbpedia.org/property/starring> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "8"}}, "entities": [{"URI": "http://dbpedia.org/resource/Mount_Sullivan", "surface form": "Lucy Sullivan Is"}, {"URI": "http://dbpedia.org/resource/Married_to_the_Enemy_2", "surface form": "Married"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": "count"}, {"URI": "http://dbpedia.org/ontology/background", "surface form": "actors"}, {"URI": "http://dbpedia.org/ontology/country", "surface form": "Getting"}]}, {"id": "1026", "question": [{"language": "en", "string": "What mammals are classified into Diprotodontia ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/order> <http://dbpedia.org/resource/Diprotodontia> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Mammal>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Phalangerida"}}, "entities": [{"URI": "http://dbpedia.org/resource/Mammals_of_the_Indiana_Dunes", "surface form": "mammals"}, {"URI": "http://dbpedia.org/resource/Diprotodontia", "surface form": "Diprotodontia"}], "relations": [{"URI": "http://dbpedia.org/property/public/private", "surface form": "classified"}]}, {"id": "1027", "question": [{"language": "en", "string": "The Other Side has hosted how many guests?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { <http://dbpedia.org/resource/The_Other_Side_(The_Outer_Limits)> <http://dbpedia.org/property/guests> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/The_Other_Side_(The_Outer_Limits)", "surface form": "The Other Side"}], "relations": [{"URI": "http://dbpedia.org/property/guests", "surface form": "guests"}]}, {"id": "1028", "question": [{"language": "en", "string": "What are the airlines whose hub airport is Los Angeles International Airport?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/hubAirport> <http://dbpedia.org/resource/Los_Angeles_International_Airport> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Airline>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/American_Airlines"}}, "entities": [{"URI": "http://dbpedia.org/resource/Los_Angeles_International_Airport", "surface form": "Los Angeles International Airport"}], "relations": [{"URI": "http://dbpedia.org/ontology/hubAirport", "surface form": "hub airport"}, {"URI": "http://dbpedia.org/ontology/Airline", "surface form": "airline"}]}, {"id": "1029", "question": [{"language": "en", "string": "what are some famous people out of the Filipinos?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/stateOfOrigin> <http://dbpedia.org/resource/Filipinos> } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Allan_Paule"}}, "entities": [{"URI": "http://dbpedia.org/resource/Filipinos", "surface form": "Filipinos"}], "relations": [{"URI": "http://dbpedia.org/ontology/established", "surface form": "famous"}]}, {"id": "1030", "question": [{"language": "en", "string": "What awards were presented to the person who produced Paradise place?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Paradise_Place> <http://dbpedia.org/property/producer> ?x . ?x <http://dbpedia.org/property/awards> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Person>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Goethe_Prize"}}, "entities": [{"URI": "http://dbpedia.org/resource/Paradise_Place", "surface form": "Paradise place"}], "relations": [{"URI": "http://dbpedia.org/ontology/award", "surface form": "awards"}, {"URI": "http://dbpedia.org/ontology/person", "surface form": "person"}, {"URI": "http://dbpedia.org/ontology/author", "surface form": "produced"}]}, {"id": "1031", "question": [{"language": "en", "string": "List all the line of Vadodara Junction railway station?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Vadodara_Junction_railway_station> <http://dbpedia.org/property/line> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ahmedabad\u2013Mumbai_main_line"}}, "entities": [{"URI": "http://dbpedia.org/resource/Vadodara_Junction_railway_station", "surface form": "Vadodara Junction railway station"}], "relations": [{"URI": "http://dbpedia.org/property/line", "surface form": "line"}]}, {"id": "1032", "question": [{"language": "en", "string": "Name the college of Jon Curran ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Jon_Curran> <http://dbpedia.org/property/college> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vanderbilt_University"}}, "entities": [{"URI": "http://dbpedia.org/resource/Jon_Curran", "surface form": "Jon Curran"}], "relations": [{"URI": "http://dbpedia.org/property/name", "surface form": "name"}, {"URI": "http://dbpedia.org/ontology/college", "surface form": "college"}]}, {"id": "1033", "question": [{"language": "en", "string": "Which Tim Birton's movie has a screenplay by Daniel Waters ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/screenplay> <http://dbpedia.org/resource/Daniel_Waters_(screenwriter)> . ?uri <http://dbpedia.org/property/director> <http://dbpedia.org/resource/Tim_Burton> . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Batman_Returns"}}, "entities": [{"URI": "http://dbpedia.org/resource/Tim-Tim", "surface form": "Tim Birton"}, {"URI": "http://dbpedia.org/resource/Screenplay", "surface form": "screenplay"}, {"URI": "http://dbpedia.org/resource/Daniel_Waters", "surface form": "Daniel Waters"}], "relations": [{"URI": "http://dbpedia.org/ontology/picture", "surface form": " movie"}]}, {"id": "1034", "question": [{"language": "en", "string": "Who produces the tv series which made Scott Haran famous?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Scott_Haran> <http://dbpedia.org/ontology/knownFor> ?x . ?x <http://dbpedia.org/ontology/producer> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Doctor_Who"}}, "entities": [{"URI": "http://dbpedia.org/resource/Scott_Haran", "surface form": "Scott Haran "}], "relations": [{"URI": "http://dbpedia.org/property/producer", "surface form": "produces"}, {"URI": "http://dbpedia.org/ontology/series", "surface form": "series"}]}, {"id": "1035", "question": [{"language": "en", "string": "What is the place of birth of the jockey who breeded De La Rose ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/De_La_Rose> <http://dbpedia.org/ontology/breeder> ?x . ?x <http://dbpedia.org/property/birthPlace> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Jockey>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Versailles,_Kentucky"}}, "entities": [{"URI": "http://dbpedia.org/resource/De_La_Rose", "surface form": "De La Rose"}], "relations": [{"URI": "http://dbpedia.org/ontology/place", "surface form": "place"}, {"URI": "http://dbpedia.org/ontology/birthPlace", "surface form": "birth"}, {"URI": "http://dbpedia.org/ontology/jockey", "surface form": "jockey"}, {"URI": "http://dbpedia.org/ontology/breeder", "surface form": "breeded"}]}, {"id": "1036", "question": [{"language": "en", "string": "Name the Artist of Madagascar: Operation Penguin ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Madagascar:_Operation_Penguin> <http://dbpedia.org/property/artist> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hans_Zimmer"}}, "entities": [{"URI": "http://dbpedia.org/resource/Madagascar:_Operation_Penguin", "surface form": "Operation Penguin"}], "relations": [{"URI": "http://dbpedia.org/property/artist", "surface form": "Artist"}]}, {"id": "1037", "question": [{"language": "en", "string": "What are some devices made by Taiwanese companies?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/locationCity> <http://dbpedia.org/resource/Taiwan> . ?uri <http://dbpedia.org/ontology/manufacturer> ?x . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Device>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Amazon_Fire_TV"}}, "entities": [{"URI": "http://dbpedia.org/resource/Taiwan", "surface form": "Taiwanese companies"}, {"URI": "http://dbpedia.org/resource/Taiwanese_Hokkien", "surface form": "Taiwanese companies"}], "relations": [{"URI": "http://dbpedia.org/ontology/symbol", "surface form": "devices"}, {"URI": "http://dbpedia.org/ontology/country", "surface form": ""}]}, {"id": "1038", "question": [{"language": "en", "string": "Harry Huston and Dick Spalding played their first match for which team?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Harry_Huston> <http://dbpedia.org/property/debutteam> ?uri. <http://dbpedia.org/resource/Dick_Spalding> <http://dbpedia.org/property/debutteam> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Philadelphia_Phillies"}}, "entities": [{"URI": "http://dbpedia.org/resource/Harry_Huston", "surface form": "harry Huston"}, {"URI": "http://dbpedia.org/resource/Dick_Spalding", "surface form": "Dick Spalding"}], "relations": [{"URI": "http://dbpedia.org/property/debutteam", "surface form": "team"}, {"URI": "http://dbpedia.org/property/debutteam", "surface form": "team"}]}, {"id": "1039", "question": [{"language": "en", "string": "What is the layout of Subaru Legacy (second generation) ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Subaru_Legacy_(second_generation)> <http://dbpedia.org/ontology/layout> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/North_America"}}, "entities": [{"URI": "http://dbpedia.org/resource/Subaru_Legacy_(second_generation)", "surface form": "Subaru Legacy (second generation)"}], "relations": [{"URI": "http://dbpedia.org/ontology/layout", "surface form": "layout"}]}, {"id": "1040", "question": [{"language": "en", "string": "How many other wine region are there of the grapes whose one of the wine region is Michigan ?"}], "query": {"sparql": " SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/wineRegion> <http://dbpedia.org/resource/Michigan> . ?x <http://dbpedia.org/ontology/wineRegion> ?uri }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "16"}}, "entities": [{"URI": "http://dbpedia.org/resource/Michigan", "surface form": "Michigan"}], "relations": [{"URI": "http://dbpedia.org/ontology/wineRegion", "surface form": "wine region"}, {"URI": "http://dbpedia.org/ontology/wineRegion", "surface form": "wine region"}]}, {"id": "1041", "question": [{"language": "en", "string": "Estimate the number of sports divisions at the universities under international association of universities."}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/affiliation> <http://dbpedia.org/resource/International_Association_of_Universities> . ?x <http://dbpedia.org/ontology/sport> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/Universities_Ireland", "surface form": "universities"}, {"URI": "http://dbpedia.org/resource/Universities_Ireland", "surface form": "universities"}], "relations": [{"URI": "http://dbpedia.org/property/quote", "surface form": "estimate"}, {"URI": "http://dbpedia.org/ontology/athletics", "surface form": "sports divisions"}, {"URI": "http://dbpedia.org/ontology/order", "surface form": "international association"}]}, {"id": "1042", "question": [{"language": "en", "string": "What is the leader of the government agency which is the military unit of Erich Kempka ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Erich_Kempka> <http://dbpedia.org/ontology/militaryUnit> ?x . ?x <http://dbpedia.org/ontology/leader> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Heinrich_Himmler"}}, "entities": [{"URI": "http://dbpedia.org/resource/Erich_Kempka", "surface form": "Erich Kempka"}], "relations": [{"URI": "http://dbpedia.org/ontology/leader", "surface form": "leader"}, {"URI": "http://dbpedia.org/property/branch", "surface form": "government agency"}, {"URI": "http://dbpedia.org/ontology/militaryUnit", "surface form": "military unit"}]}, {"id": "1043", "question": [{"language": "en", "string": "List the battles in which alumni of US Army Command and General Staff College fought?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/almaMater> <http://dbpedia.org/resource/United_States_Army_Command_and_General_Staff_College> . ?x <http://dbpedia.org/property/battles> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/War_in_Afghanistan_(2001\u2013present)"}}, "entities": [{"URI": "http://dbpedia.org/resource/United_States", "surface form": "US"}, {"URI": "http://dbpedia.org/resource/Army_Contracting_Command", "surface form": "Army Command"}, {"URI": "http://dbpedia.org/resource/Staff_college", "surface form": "General Staff College"}], "relations": [{"URI": "http://dbpedia.org/ontology/battle", "surface form": "battles"}, {"URI": "http://dbpedia.org/ontology/alumni", "surface form": "alumni"}, {"URI": "http://dbpedia.org/ontology/type", "surface form": "fought"}]}, {"id": "1044", "question": [{"language": "en", "string": "Which writer of Alan Freeman Days is also the writer of Come On over ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Alan_Freeman_Days> <http://dbpedia.org/ontology/writer> ?uri. <http://dbpedia.org/resource/Come_On_Over_(Bee_Gees_song)> <http://dbpedia.org/property/writer> ?uri} "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Robin_Gibb"}}, "entities": [{"URI": "http://dbpedia.org/resource/Alan_Freeman_Days", "surface form": "Alan Freeman Days"}, {"URI": "http://dbpedia.org/resource/Come_On_Over_(Bee_Gees_song)", "surface form": "Come On over"}], "relations": [{"URI": "http://dbpedia.org/ontology/writer", "surface form": "writer"}, {"URI": "http://dbpedia.org/ontology/writer", "surface form": "writer"}]}, {"id": "1045", "question": [{"language": "en", "string": "Name the subsidary of Tandem Computers which was founded by Jim Harris ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/subsidiary> <http://dbpedia.org/resource/Tandem_Computers> . ?uri <http://dbpedia.org/ontology/foundedBy> <http://dbpedia.org/resource/Jim_Harris_(entrepreneur)> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Company>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Compaq"}}, "entities": [{"URI": "http://dbpedia.org/resource/Tandem_Computers", "surface form": "Tandem Computers"}, {"URI": "http://dbpedia.org/resource/Jim_Harris", "surface form": "Jim Harris"}], "relations": [{"URI": "http://dbpedia.org/ontology/name", "surface form": "name"}, {"URI": "http://dbpedia.org/ontology/subsidiary", "surface form": "subsidary"}, {"URI": "http://dbpedia.org/property/founder", "surface form": "founded"}]}, {"id": "1046", "question": [{"language": "en", "string": "Count all the books written by an author buried in the Convent of Barefoot Trinitarians?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/restingPlace> <http://dbpedia.org/resource/Convent_of_the_Barefoot_Trinitarians> . ?uri <http://dbpedia.org/ontology/author> ?x . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Book>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "4"}}, "entities": [{"URI": "http://dbpedia.org/resource/The_Convent_(film)", "surface form": "Convent of Barefoot Trinitarians"}], "relations": [{"URI": "http://dbpedia.org/ontology/type", "surface form": "count"}, {"URI": "http://dbpedia.org/ontology/volume", "surface form": "books"}, {"URI": "http://dbpedia.org/ontology/writer", "surface form": "written"}, {"URI": "http://dbpedia.org/ontology/author", "surface form": "author"}, {"URI": "http://dbpedia.org/ontology/genre", "surface form": "buried"}]}, {"id": "1047", "question": [{"language": "en", "string": "Who were the commanders during the events which took place in Sandusky County, Ohio?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/place> <http://dbpedia.org/resource/Sandusky_County,_Ohio> . ?x <http://dbpedia.org/ontology/commander> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Event>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/George_Croghan_(soldier)"}}, "entities": [{"URI": "http://dbpedia.org/resource/Sandusky_County,_Ohio", "surface form": "Sandusky County, Ohio"}], "relations": [{"URI": "http://dbpedia.org/ontology/leader", "surface form": "commanders"}, {"URI": "http://dbpedia.org/ontology/athletics", "surface form": "events"}, {"URI": "http://dbpedia.org/ontology/place", "surface form": "place"}]}, {"id": "1048", "question": [{"language": "en", "string": "Name the kingdom with currency Solidus (coin) and administrative headquarters in Nicomedia?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/currency> <http://dbpedia.org/resource/Solidus_(coin)> . ?uri <http://dbpedia.org/ontology/capital> <http://dbpedia.org/resource/Nicomedia> . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Roman_Empire"}}, "entities": [{"URI": "http://dbpedia.org/resource/Schistocephalus_solidus", "surface form": "currency Solidus (coin)"}, {"URI": "http://dbpedia.org/resource/Nicomedia", "surface form": "Nicomedia"}], "relations": [{"URI": "http://dbpedia.org/property/name", "surface form": "name"}, {"URI": "http://dbpedia.org/ontology/kingdom", "surface form": "kingdom"}, {"URI": "http://dbpedia.org/property/seat", "surface form": "administrative headquarters"}]}, {"id": "1049", "question": [{"language": "en", "string": "Name the river whose mouth place is Old Lyme, Connecticut?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/mouthPlace> <http://dbpedia.org/resource/Old_Lyme,_Connecticut> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/River>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Connecticut_River"}}, "entities": [{"URI": "http://dbpedia.org/resource/Old_Lyme,_Connecticut", "surface form": "Old Lyme, Connecticut"}], "relations": [{"URI": "http://dbpedia.org/ontology/mouthPlace", "surface form": "mouth place"}, {"URI": "http://dbpedia.org/ontology/River", "surface form": "river"}]}, {"id": "1050", "question": [{"language": "en", "string": "What are the things whose leader was a monarch of Willem-Alexander of the Netherlands?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/monarch> <http://dbpedia.org/resource/Willem-Alexander_of_the_Netherlands> . ?uri <http://dbpedia.org/ontology/leader> ?x . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Provincial_Council_of_South_Holland"}}, "entities": [{"URI": "http://dbpedia.org/resource/Willem-Alexander_of_the_Netherlands", "surface form": "Willem-Alexander of the Netherlands monarch"}], "relations": [{"URI": "http://dbpedia.org/ontology/monarch", "surface form": "monarch"}, {"URI": "http://dbpedia.org/ontology/leader", "surface form": "leader"}]}, {"id": "1051", "question": [{"language": "en", "string": "acer nigrum is used in making what?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/ingredient> <http://dbpedia.org/resource/Acer_nigrum> } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Maple_syrup"}}, "entities": [{"URI": "http://dbpedia.org/resource/Acer_nigrum", "surface form": "Acer nigrum"}], "relations": []}, {"id": "1052", "question": [{"language": "en", "string": "What is the predecessor of BMW M40 ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/BMW_M40> <http://dbpedia.org/property/predecessor> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/BMW_M10"}}, "entities": [{"URI": "http://dbpedia.org/resource/BMW_M40", "surface form": "BMW M40"}], "relations": [{"URI": "http://dbpedia.org/ontology/predecessor", "surface form": "predecessor"}]}, {"id": "1053", "question": [{"language": "en", "string": "Which cities are located around the sea into which the ionian flows?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Ionian_Sea> <http://dbpedia.org/ontology/outflow> ?x . ?x <http://dbpedia.org/property/cities> ?uri . }"}, "answers": {"uri": {"type": "literal", "xml:lang": "en", "value": "Alexandria, Barcelona, Algiers, Izmir, Tel Aviv-Yafo, Rome, Athens, Antalya, Beirut, Tripoli, Mersin, Marseille, Mu\u011fla, Naples, Tangier, Tunis, Split,"}}, "entities": [{"URI": "http://dbpedia.org/resource/Ionian_Sea", "surface form": "Ionian"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": "cities"}, {"URI": "http://dbpedia.org/ontology/place", "surface form": "located"}, {"URI": "http://dbpedia.org/ontology/elevation", "surface form": "sea"}, {"URI": "http://dbpedia.org/ontology/outflow", "surface form": "flows"}]}, {"id": "1054", "question": [{"language": "en", "string": "Give me a count of mammals which have their order as Primate?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE {?uri <http://dbpedia.org/ontology/order> <http://dbpedia.org/resource/Primate> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Mammal>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/Mammals_of_the_Indiana_Dunes", "surface form": "mammals"}, {"URI": "http://dbpedia.org/resource/Primate", "surface form": "Primate"}], "relations": [{"URI": "http://dbpedia.org/ontology/order", "surface form": "order"}, {"URI": "http://dbpedia.org/ontology/Mammal", "surface form": "mammal"}]}, {"id": "1055", "question": [{"language": "en", "string": "What television show are distributed by Broadcast syndication?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/distributor> <http://dbpedia.org/resource/Broadcast_syndication> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Broadway_Television_Theatre"}}, "entities": [{"URI": "http://dbpedia.org/resource/Broadcast_syndication", "surface form": "Broadcast syndication"}], "relations": [{"URI": "http://dbpedia.org/ontology/transmission", "surface form": "television show"}, {"URI": "http://dbpedia.org/ontology/distributor", "surface form": "distributed"}]}, {"id": "1056", "question": [{"language": "en", "string": "Which TV show's producer is Stephen E. Ambrose and company is DreamWorks Television?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/producer> <http://dbpedia.org/resource/Stephen_E._Ambrose> . ?uri <http://dbpedia.org/ontology/company> <http://dbpedia.org/resource/DreamWorks_Television> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Band_of_Brothers_(miniseries)"}}, "entities": [{"URI": "http://dbpedia.org/resource/Tv_test_pattern", "surface form": "TV"}, {"URI": "http://dbpedia.org/resource/E", "surface form": "E"}, {"URI": "http://dbpedia.org/resource/Stephen_E._Ambrose", "surface form": "Stephen Ambrose"}, {"URI": "http://dbpedia.org/resource/DreamWorks_Television", "surface form": "DreamWorks Television"}], "relations": [{"URI": "http://dbpedia.org/ontology/show", "surface form": "show"}, {"URI": "http://dbpedia.org/ontology/producer", "surface form": " producer"}, {"URI": "http://dbpedia.org/ontology/company", "surface form": "company"}]}, {"id": "1057", "question": [{"language": "en", "string": "Which river originate from limerick?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/mouthLocation> <http://dbpedia.org/resource/Limerick> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/River>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/River_Shannon"}}, "entities": [{"URI": "http://dbpedia.org/resource/Limerick", "surface form": "limerick"}], "relations": [{"URI": "http://dbpedia.org/ontology/river", "surface form": "river"}, {"URI": "http://dbpedia.org/property/start", "surface form": "originate"}]}, {"id": "1058", "question": [{"language": "en", "string": "Laozi authored which book?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/author> <http://dbpedia.org/resource/Laozi> } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tao_Te_Ching"}}, "entities": [{"URI": "http://dbpedia.org/resource/Laozi", "surface form": "laozi"}], "relations": [{"URI": "http://dbpedia.org/property/author", "surface form": "authored"}, {"URI": "http://dbpedia.org/property/order", "surface form": "book"}]}, {"id": "1059", "question": [{"language": "en", "string": "What are some other children of the father of Marvin Bush?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/child> <http://dbpedia.org/resource/Marvin_Bush> . ?x <http://dbpedia.org/property/children> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/George_W._Bush"}}, "entities": [{"URI": "http://dbpedia.org/resource/Marvin_Bush", "surface form": "Marvin Bush"}], "relations": [{"URI": "http://dbpedia.org/ontology/child", "surface form": "children"}, {"URI": "http://dbpedia.org/property/children", "surface form": "children"}]}, {"id": "1060", "question": [{"language": "en", "string": "Which is the nearest city to Elliott Bay ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Elliott_Bay> <http://dbpedia.org/ontology/nearestCity> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Seattle"}}, "entities": [{"URI": "http://dbpedia.org/resource/Elliott_Bay", "surface form": "Elliott Bay"}], "relations": [{"URI": "http://dbpedia.org/ontology/nearestCity", "surface form": "nearest city"}]}, {"id": "1061", "question": [{"language": "en", "string": "Name the saint whose major shrine is in Canada and was canonized by Pope Benedict XVI?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/majorShrine> <http://dbpedia.org/resource/Canada> . ?uri <http://dbpedia.org/property/canonizedBy> <http://dbpedia.org/resource/Pope_Benedict_XVI> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Saint>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kateri_Tekakwitha"}}, "entities": [{"URI": "http://dbpedia.org/resource/Canada", "surface form": "Canada"}, {"URI": "http://dbpedia.org/resource/Pope_Benedict_XVI", "surface form": "Pope Benedict XVI"}], "relations": [{"URI": "http://dbpedia.org/property/name", "surface form": "name"}, {"URI": "http://dbpedia.org/ontology/saint", "surface form": "saint"}, {"URI": "http://dbpedia.org/ontology/majorShrine", "surface form": "major shrine"}, {"URI": "http://dbpedia.org/property/canonizedBy", "surface form": "canonized"}]}, {"id": "1062", "question": [{"language": "en", "string": "who was the australian flagbearer of 2008 Summer Olympics?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Australia_at_the_2008_Summer_Olympics> <http://dbpedia.org/property/flagbearer> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/James_Tomkins_(rower)"}}, "entities": [{"URI": "http://dbpedia.org/resource/Australia_at_the_2008_Summer_Olympics", "surface form": "the australian flagbearer of 2008 Summer Olympics"}], "relations": [{"URI": "http://dbpedia.org/property/flagbearer", "surface form": "australian flagbearer"}]}, {"id": "1063", "question": [{"language": "en", "string": "Who is the manager of the club whose homeground is the riverside stadium?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/ground> <http://dbpedia.org/resource/Riverside_Stadium> . ?uri <http://dbpedia.org/ontology/managerClub> ?x . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/SportsManager>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Andy_Aitken_(footballer,_born_1877)"}}, "entities": [{"URI": "http://dbpedia.org/resource/Riverside_Stadium", "surface form": "riverside stadium"}], "relations": [{"URI": "http://dbpedia.org/ontology/manager", "surface form": "manager"}, {"URI": "http://dbpedia.org/ontology/club", "surface form": "club"}, {"URI": "http://dbpedia.org/ontology/stadium", "surface form": "riverside stadium"}]}, {"id": "1064", "question": [{"language": "en", "string": "How many home stadiums are there of the seasons whose chairman in Merritt Paulson?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/chairman> <http://dbpedia.org/resource/Merritt_Paulson> . ?x <http://dbpedia.org/ontology/homeStadium> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "74"}}, "entities": [{"URI": "http://dbpedia.org/resource/Merritt_Paulson", "surface form": "Merritt Paulson"}], "relations": [{"URI": "http://dbpedia.org/ontology/party", "surface form": "home stadiums"}, {"URI": "http://dbpedia.org/ontology/numberOfSeasons", "surface form": "seasons"}, {"URI": "http://dbpedia.org/ontology/chairman", "surface form": "chairman"}]}, {"id": "1065", "question": [{"language": "en", "string": "What is the rank of Julius C. Burrows politically?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Julius_C._Burrows> <http://dbpedia.org/property/order> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/United_States_Senator"}}, "entities": [{"URI": "http://dbpedia.org/resource/C", "surface form": "C"}, {"URI": "http://dbpedia.org/resource/Julius_C._Burrows", "surface form": "Julius Burrows politically"}], "relations": [{"URI": "http://dbpedia.org/ontology/order", "surface form": "rank"}]}, {"id": "1066", "question": [{"language": "en", "string": "Name a few whose live in a place where Indian English is an official language"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/officialLanguage> <http://dbpedia.org/resource/Indian_English> . ?uri <http://dbpedia.org/ontology/residence> ?x . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Amarsinh_Vasantrao_Patil"}}, "entities": [{"URI": "http://dbpedia.org/resource/India", "surface form": "Indian English"}, {"URI": "http://dbpedia.org/resource/Indian_English", "surface form": "Indian English"}], "relations": [{"URI": "http://dbpedia.org/property/name", "surface form": "name"}, {"URI": "http://dbpedia.org/ontology/populationTotal", "surface form": "live"}, {"URI": "http://dbpedia.org/ontology/place", "surface form": "place"}, {"URI": "http://dbpedia.org/ontology/officialLanguage", "surface form": "official language"}, {"URI": "http://dbpedia.org/ontology/country", "surface form": ""}]}, {"id": "1067", "question": [{"language": "en", "string": "Count the number of first drivers in all the GPs where Mika Hakkinen was a first driver?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/poleDriver> <http://dbpedia.org/resource/Mika_H\u00e4kkinen> . ?x <http://dbpedia.org/ontology/firstDriver> ?uri . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/RacingDriver>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "26"}}, "entities": [{"URI": "http://dbpedia.org/resource/Mika_H\u00e4kkinen", "surface form": "Mika Hakkinen"}], "relations": [{"URI": "http://dbpedia.org/ontology/number", "surface form": "count"}, {"URI": "http://dbpedia.org/ontology/operator", "surface form": "drivers"}, {"URI": "http://dbpedia.org/property/operator", "surface form": "driver"}]}, {"id": "1068", "question": [{"language": "en", "string": "What sports are played at Vishwajyot High School?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Vishwajyot_High_School> <http://dbpedia.org/ontology/sport> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Association_football"}}, "entities": [{"URI": "http://dbpedia.org/resource/Vishwajyot_High_School", "surface form": "Vishwajyot High School"}], "relations": [{"URI": "http://dbpedia.org/ontology/sport", "surface form": "sports"}, {"URI": "http://dbpedia.org/ontology/portrayer", "surface form": "played"}]}, {"id": "1069", "question": [{"language": "en", "string": "Who owns a bridge in Boston?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/locatedInArea> <http://dbpedia.org/resource/Boston> . ?x <http://dbpedia.org/property/owner> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Bridge>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Commonwealth_of_Massachusetts"}}, "entities": [{"URI": "http://dbpedia.org/resource/Boston", "surface form": "Boston"}], "relations": [{"URI": "http://dbpedia.org/ontology/languageFamily", "surface form": "owns"}, {"URI": "http://dbpedia.org/ontology/abstract", "surface form": "bridge"}]}, {"id": "1070", "question": [{"language": "en", "string": "In which fields are both Paul Demiville and Sylvain levi experts?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Paul_Demi\u00e9ville> <http://dbpedia.org/property/fields> ?uri. <http://dbpedia.org/resource/Sylvain_L\u00e9vi> <http://dbpedia.org/property/fields> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Buddhism"}}, "entities": [{"URI": "http://dbpedia.org/resource/Paul_Demi\u00e9ville", "surface form": "Paul Demiville"}, {"URI": "http://dbpedia.org/resource/Sylvain_L\u00e9vi", "surface form": "sylvain"}], "relations": [{"URI": "http://dbpedia.org/ontology/occupation", "surface form": "fields"}]}, {"id": "1071", "question": [{"language": "en", "string": "How many tenats have been there, of the constructions of PCL constructures?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/builder> <http://dbpedia.org/resource/PCL_Construction> . ?x <http://dbpedia.org/ontology/tenant> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/PCL_Construction", "surface form": "PCL constructures"}], "relations": [{"URI": "http://dbpedia.org/ontology/builder", "surface form": "constructions"}, {"URI": "http://dbpedia.org/ontology/tenant", "surface form": "tenats"}]}, {"id": "1072", "question": [{"language": "en", "string": "Who was the prime minister of Victor Hope, 2nd Marquess of Linlithgow and also the editor of British Gazette ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Victor_Hope,_2nd_Marquess_of_Linlithgow> <http://dbpedia.org/property/primeminister> ?uri. <http://dbpedia.org/resource/British_Gazette> <http://dbpedia.org/property/editor> ?uri} "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Winston_Churchill"}}, "entities": [{"URI": "http://dbpedia.org/resource/Victor_Hope,_2nd_Marquess_of_Linlithgow", "surface form": "Victor Hope, 2nd Marquess of Linlithgow Victor Hope, 2nd Marquess of Linlithgow"}, {"URI": "http://dbpedia.org/resource/United_Kingdom", "surface form": "British Gazette"}, {"URI": "http://dbpedia.org/resource/British_Gazette", "surface form": "British Gazette"}], "relations": [{"URI": "http://dbpedia.org/ontology/primeMinister", "surface form": "prime minister"}, {"URI": "http://dbpedia.org/ontology/country", "surface form": ""}]}, {"id": "1073", "question": [{"language": "en", "string": "Give me a count of everything under the archipelago, where Papeete is the biggest town."}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/largestCity> <http://dbpedia.org/resource/Papeete> . ?uri <http://dbpedia.org/property/archipelago> ?x . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/Papeete", "surface form": "Papeete"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": "count"}, {"URI": "http://dbpedia.org/ontology/archipelago", "surface form": "archipelago,"}, {"URI": "http://dbpedia.org/ontology/place", "surface form": "biggest town"}]}, {"id": "1074", "question": [{"language": "en", "string": "Who all have developed a cross platform software?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/operatingSystem> <http://dbpedia.org/resource/Cross-platform> . ?x <http://dbpedia.org/ontology/developer> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Software>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Amazon_(company)"}}, "entities": [{"URI": "http://dbpedia.org/resource/Cross-platform", "surface form": "cross platform software"}], "relations": [{"URI": "http://dbpedia.org/ontology/developer", "surface form": "developed"}]}, {"id": "1075", "question": [{"language": "en", "string": "where did soccer bowl take place in 76?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Soccer_Bowl_'76> <http://dbpedia.org/ontology/city> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Seattle"}}, "entities": [{"URI": "http://dbpedia.org/resource/Soccer_Bowl_'76", "surface form": "soccer bowl"}], "relations": [{"URI": "http://dbpedia.org/ontology/city", "surface form": "in"}]}, {"id": "1076", "question": [{"language": "en", "string": "What is common between genre of battle chess and purpose of New Zealand Chess ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Battle_Chess> <http://dbpedia.org/property/genre> ?uri. <http://dbpedia.org/resource/New_Zealand_Chess_Federation> <http://dbpedia.org/property/purpose> ?uri} "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chess"}}, "entities": [{"URI": "http://dbpedia.org/resource/New_Zealand_bittern", "surface form": "New Zealand Chess"}], "relations": [{"URI": "http://dbpedia.org/ontology/genre", "surface form": "common"}, {"URI": "http://dbpedia.org/ontology/genre", "surface form": "genre"}, {"URI": "http://dbpedia.org/ontology/motto", "surface form": "battle chess"}, {"URI": "http://dbpedia.org/ontology/purpose", "surface form": "purpose"}]}, {"id": "1077", "question": [{"language": "en", "string": "Who is relative of the people died in Bergen-Belsen concentration camp ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/deathPlace> <http://dbpedia.org/resource/Bergen-Belsen_concentration_camp> . ?x <http://dbpedia.org/ontology/relative> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Margot_Frank"}}, "entities": [{"URI": "http://dbpedia.org/resource/Bergen-Belsen_concentration_camp", "surface form": "Bergen-Belsen concentration camp"}], "relations": [{"URI": "http://dbpedia.org/property/deathPlace", "surface form": "died in"}, {"URI": "http://dbpedia.org/ontology/relative", "surface form": "relative"}]}, {"id": "1078", "question": [{"language": "en", "string": "How many titles have been won by the beauty queens which had brown hair?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/hairColor> <http://dbpedia.org/resource/Brown_hair> . ?x <http://dbpedia.org/property/title> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "620"}}, "entities": [{"URI": "http://dbpedia.org/resource/Beauty_Queens", "surface form": "beauty queens"}], "relations": [{"URI": "http://dbpedia.org/property/title", "surface form": "titles"}, {"URI": "http://dbpedia.org/ontology/city", "surface form": "won"}, {"URI": "http://dbpedia.org/ontology/party", "surface form": "brown hair"}]}, {"id": "1079", "question": [{"language": "en", "string": "Which country's people work in the Birdman enterprises?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/institution> <http://dbpedia.org/resource/Birdman_Enterprises> . ?x <http://dbpedia.org/property/nationality> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Engineer>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ukraine"}}, "entities": [{"URI": "http://dbpedia.org/resource/Birdman_Enterprises", "surface form": "Birdman enterprises"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": "country"}, {"URI": "http://dbpedia.org/ontology/title", "surface form": "work"}]}, {"id": "1080", "question": [{"language": "en", "string": "Where is Oskar Blues located ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Oskar_Blues_Brewery> <http://dbpedia.org/property/location> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Colorado"}}, "entities": [{"URI": "http://dbpedia.org/resource/Oskar_Blues_Brewery", "surface form": "Oskar Blues"}], "relations": [{"URI": "http://dbpedia.org/ontology/location", "surface form": "located"}]}, {"id": "1081", "question": [{"language": "en", "string": "Paul Leonard's work can be divided into how many series?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/author> <http://dbpedia.org/resource/Paul_Leonard_(writer)> . ?x <http://dbpedia.org/ontology/series> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "18"}}, "entities": [{"URI": "http://dbpedia.org/resource/Paul_Leonard", "surface form": "Paul leonard"}], "relations": [{"URI": "http://dbpedia.org/property/work", "surface form": " work"}, {"URI": "http://dbpedia.org/ontology/riverBranch", "surface form": "divided"}, {"URI": "http://dbpedia.org/ontology/series", "surface form": "series"}]}, {"id": "1082", "question": [{"language": "en", "string": "Who won the Lovelace Medal and the Norbert Wiener Award for Social and Professional Responsibility?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/prizes> <http://dbpedia.org/resource/Lovelace_Medal> . ?uri <http://dbpedia.org/property/prizes> <http://dbpedia.org/resource/Norbert_Wiener_Award_for_Social_and_Professional_Responsibility> . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Douglas_Engelbart"}}, "entities": [{"URI": "http://dbpedia.org/resource/Lovelace_Medal", "surface form": "Lovelace Medal"}, {"URI": "http://dbpedia.org/resource/Norbert_Wiener", "surface form": "Norbert Wiener Award for Social"}, {"URI": "http://dbpedia.org/resource/Professional_responsibility", "surface form": "Professional Responsibility"}], "relations": [{"URI": "http://dbpedia.org/ontology/award", "surface form": "won"}]}, {"id": "1083", "question": [{"language": "en", "string": "Name the scientist whose supervisor was John Robert Woodyard and has won Norbert Wiener Award for Social and Professional Responsibility?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/doctoralAdvisor> <http://dbpedia.org/resource/John_Robert_Woodyard> . ?uri <http://dbpedia.org/property/prizes> <http://dbpedia.org/resource/Norbert_Wiener_Award_for_Social_and_Professional_Responsibility> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Scientist>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Douglas_Engelbart"}}, "entities": [{"URI": "http://dbpedia.org/resource/John_Robert_Woodyard", "surface form": "John Robert Woodyard"}, {"URI": "http://dbpedia.org/resource/Norbert_Wiener_Award_for_Social_and_Professional_Responsibility", "surface form": "Norbert Wiener Award for Social and Professional Responsibility"}], "relations": [{"URI": "http://dbpedia.org/property/name", "surface form": "name"}, {"URI": "http://dbpedia.org/ontology/leader", "surface form": "supervisor"}, {"URI": "http://dbpedia.org/ontology/award", "surface form": "won"}]}, {"id": "1084", "question": [{"language": "en", "string": "In which province was Dick Redding born?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Dick_Redding> <http://dbpedia.org/property/birthDate> ?uri } "}, "answers": {"uri": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#date", "value": "1890-04-15"}}, "entities": [{"URI": "http://dbpedia.org/resource/Jheri_Redding", "surface form": "Dick Redding"}], "relations": [{"URI": "http://dbpedia.org/ontology/birthDate", "surface form": "born"}]}, {"id": "1085", "question": [{"language": "en", "string": "Count the number of characters of the play whose one of the character is Catwoman ?"}], "query": {"sparql": " SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/characters> <http://dbpedia.org/resource/Catwoman> . ?x <http://dbpedia.org/property/characters> ?uri }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "12"}}, "entities": [{"URI": "http://dbpedia.org/resource/Catwoman", "surface form": "Catwoman"}], "relations": [{"URI": "http://dbpedia.org/property/characters", "surface form": "characters"}, {"URI": "http://dbpedia.org/property/characters", "surface form": "characters"}]}, {"id": "1086", "question": [{"language": "en", "string": "Where else did the graduates of the university of west indies study?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/institution> <http://dbpedia.org/resource/University_of_the_West_Indies> . ?x <http://dbpedia.org/property/almaMater> ?uri . }"}, "answers": {"uri": {"type": "literal", "xml:lang": "en", "value": "University of Benin\nAhmadu Bello University\nFrankfurt University"}}, "entities": [{"URI": "http://dbpedia.org/resource/University_of_the_West_Indies", "surface form": " university of west indies"}], "relations": [{"URI": "http://dbpedia.org/ontology/numberOfGraduateStudents", "surface form": "graduates"}, {"URI": "http://dbpedia.org/ontology/university", "surface form": "university"}, {"URI": "http://dbpedia.org/ontology/class", "surface form": "study"}]}, {"id": "1087", "question": [{"language": "en", "string": "Count the number of cities on the Mediterranean Sea?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { <http://dbpedia.org/resource/Mediterranean_Sea> <http://dbpedia.org/property/cities> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "1"}}, "entities": [{"URI": "http://dbpedia.org/resource/Mediterranean_Sea", "surface form": "Mediterranean Sea"}], "relations": [{"URI": "http://dbpedia.org/ontology/type", "surface form": "count"}, {"URI": "http://dbpedia.org/property/cities", "surface form": "cities"}]}, {"id": "1088", "question": [{"language": "en", "string": "What non fiction subjects are covered in books by Doubleday publishers?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/publisher> <http://dbpedia.org/resource/Doubleday_(publisher)> . ?x <http://dbpedia.org/ontology/nonFictionSubject> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Book>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/LGBT_rights_in_the_United_States"}}, "entities": [{"URI": "http://dbpedia.org/resource/Doubleday_(publisher)", "surface form": "Doubleday"}], "relations": [{"URI": "http://dbpedia.org/ontology/nonFictionSubject", "surface form": "fiction subjects"}, {"URI": "http://dbpedia.org/ontology/frozen", "surface form": "covered"}, {"URI": "http://dbpedia.org/ontology/volume", "surface form": "books"}]}, {"id": "1089", "question": [{"language": "en", "string": "Name the death location of Judson Huss ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Judson_Huss> <http://dbpedia.org/property/deathPlace> ?uri } "}, "answers": {"uri": {"type": "literal", "xml:lang": "en", "value": "Paris, France"}}, "entities": [{"URI": "http://dbpedia.org/resource/Judson_Huss", "surface form": "Judson Huss"}], "relations": [{"URI": "http://dbpedia.org/property/name", "surface form": "name"}, {"URI": "http://dbpedia.org/ontology/deathPlace", "surface form": "death location"}]}, {"id": "1090", "question": [{"language": "en", "string": "What are the movies whose musicians's home town is Volos?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/hometown> <http://dbpedia.org/resource/Volos> . ?uri <http://dbpedia.org/property/music> ?x . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/In_Good_Company_(2000_film)"}}, "entities": [{"URI": "http://dbpedia.org/resource/Musicians_Institute", "surface form": "musicians"}, {"URI": "http://dbpedia.org/resource/Home_Town_(song)", "surface form": " home town"}, {"URI": "http://dbpedia.org/resource/Volos", "surface form": "Volos"}], "relations": [{"URI": "http://dbpedia.org/ontology/film", "surface form": "movies"}]}, {"id": "1091", "question": [{"language": "en", "string": "What is the affiliation of tani University ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/\u014ctani_University> <http://dbpedia.org/property/affiliation> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Buddhist"}}, "entities": [{"URI": "http://dbpedia.org/resource/\u014ctani_University", "surface form": "tani University"}], "relations": [{"URI": "http://dbpedia.org/ontology/affiliation", "surface form": "affiliation"}]}, {"id": "1092", "question": [{"language": "en", "string": "What is the base currency of Benelux ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Benelux> <http://dbpedia.org/property/currency> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Euro"}}, "entities": [{"URI": "http://dbpedia.org/resource/Benelux", "surface form": "Benelux"}], "relations": [{"URI": "http://dbpedia.org/ontology/currency", "surface form": "base currency"}]}, {"id": "1093", "question": [{"language": "en", "string": "Give me a count of the services by the company which provides Data center as the services ?"}], "query": {"sparql": " SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/services> <http://dbpedia.org/resource/Data_center_services> . ?x <http://dbpedia.org/property/services> ?uri }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/Data_center", "surface form": "Data center"}], "relations": [{"URI": "http://dbpedia.org/ontology/type", "surface form": "count"}, {"URI": "http://dbpedia.org/ontology/service", "surface form": "services"}, {"URI": "http://dbpedia.org/ontology/company", "surface form": "company"}, {"URI": "http://dbpedia.org/ontology/service", "surface form": "services"}]}, {"id": "1094", "question": [{"language": "en", "string": "Scientists at the University of Queensland have won which awards?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/almaMater> <http://dbpedia.org/resource/University_of_Queensland> . ?x <http://dbpedia.org/property/awards> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Scientist>}"}, "answers": {"uri": {"type": "literal", "xml:lang": "en", "value": "Walter Burfitt prize and medal"}}, "entities": [{"URI": "http://dbpedia.org/resource/Scientists_for_Global_Responsibility", "surface form": "scientists"}, {"URI": "http://dbpedia.org/resource/University_of_Queensland", "surface form": "University of Queensland"}], "relations": [{"URI": "http://dbpedia.org/ontology/city", "surface form": "won"}, {"URI": "http://dbpedia.org/ontology/endowment", "surface form": "awards"}]}, {"id": "1095", "question": [{"language": "en", "string": "What is the religion of the ethnic group to which the relatives of Waxiang people belong?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Waxiang_people> <http://dbpedia.org/property/related> ?x . ?x <http://dbpedia.org/ontology/religion> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/EthnicGroup>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Confucianism"}}, "entities": [{"URI": "http://dbpedia.org/resource/Waxiang_people", "surface form": "Waxiang"}], "relations": [{"URI": "http://dbpedia.org/ontology/religion", "surface form": "religion"}, {"URI": "http://dbpedia.org/ontology/nationality", "surface form": "ethnic"}, {"URI": "http://dbpedia.org/ontology/languageFamily", "surface form": "relatives"}, {"URI": "http://dbpedia.org/ontology/date", "surface form": "belong"}]}, {"id": "1096", "question": [{"language": "en", "string": "Where is the south shore plaza located?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/South_Shore_Plaza> <http://dbpedia.org/property/address> ?uri } "}, "answers": {"uri": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "250"}}, "entities": [{"URI": "http://dbpedia.org/resource/South_Shore_Plaza", "surface form": "south shore plaza"}], "relations": [{"URI": "http://dbpedia.org/ontology/address", "surface form": "located"}]}, {"id": "1097", "question": [{"language": "en", "string": "Waddy wachtel did the music for what movies?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/music> <http://dbpedia.org/resource/Waddy_Wachtel> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dickie_Roberts:_Former_Child_Star"}}, "entities": [{"URI": "http://dbpedia.org/resource/Waddy_Wachtel", "surface form": "Waddy wachtel"}], "relations": [{"URI": "http://dbpedia.org/property/music", "surface form": "music"}, {"URI": "http://dbpedia.org/ontology/Film", "surface form": "movie"}]}, {"id": "1098", "question": [{"language": "en", "string": "EU Broadcasting Union is the owner of the distributor of what?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/owner> <http://dbpedia.org/resource/European_Broadcasting_Union> . ?uri <http://dbpedia.org/ontology/distributor> ?x . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Eurovision_Choir"}}, "entities": [{"URI": "http://dbpedia.org/resource/European_Broadcasting_Union", "surface form": "EU Broadcasting Union"}], "relations": [{"URI": "http://dbpedia.org/ontology/owner", "surface form": "owner"}, {"URI": "http://dbpedia.org/ontology/distributor", "surface form": "distributor"}]}, {"id": "1099", "question": [{"language": "en", "string": "How many people were drafted in the LA Clippers?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE {?uri <http://dbpedia.org/property/draftTeam> <http://dbpedia.org/resource/Los_Angeles_Clippers> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Person>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "77"}}, "entities": [{"URI": "http://dbpedia.org/resource/La", "surface form": "LA"}, {"URI": "http://dbpedia.org/resource/Los_Angeles_Clippers", "surface form": "Clippers"}], "relations": [{"URI": "http://dbpedia.org/ontology/draft", "surface form": "drafted"}]}, {"id": "1100", "question": [{"language": "en", "string": "Who is the musical artist worked for labels Celluloid Records and Victor Entertainment?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/label> <http://dbpedia.org/resource/Celluloid_Records> . ?uri <http://dbpedia.org/property/label> <http://dbpedia.org/resource/Victor_Entertainment> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/MusicalArtist>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fela_Kuti"}}, "entities": [{"URI": "http://dbpedia.org/resource/Celluloid_Heroes", "surface form": "labels Celluloid Records"}, {"URI": "http://dbpedia.org/resource/Victor_Entertainment", "surface form": "Victor Entertainment"}], "relations": [{"URI": "http://dbpedia.org/ontology/associatedMusicalArtist", "surface form": "musical artist"}, {"URI": "http://dbpedia.org/ontology/operator", "surface form": "worked"}]}, {"id": "1101", "question": [{"language": "en", "string": "Which famous physicist was academically advised by Benjamin Pulleyn?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/academicAdvisor> <http://dbpedia.org/resource/Benjamin_Pulleyn> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Scientist>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Isaac_Newton"}}, "entities": [{"URI": "http://dbpedia.org/resource/Academically_Adrift", "surface form": "Academically"}, {"URI": "http://dbpedia.org/resource/Benjamin_Pulleyn", "surface form": "Benjamin Pulleyn"}], "relations": [{"URI": "http://dbpedia.org/property/established", "surface form": "famous physicist"}, {"URI": "http://dbpedia.org/ontology/academicAdvisor", "surface form": "advised"}]}, {"id": "1102", "question": [{"language": "en", "string": "Terry Pratchett has written about how many topics?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/author> <http://dbpedia.org/resource/Terry_Pratchett> . ?x <http://dbpedia.org/ontology/nonFictionSubject> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "10"}}, "entities": [{"URI": "http://dbpedia.org/resource/Terry_Pratchett", "surface form": "Terry pratchett"}, {"URI": "http://dbpedia.org/resource/Topics_in_Early_Childhood_Special_Education", "surface form": "topics"}], "relations": [{"URI": "http://dbpedia.org/ontology/writer", "surface form": "written"}]}, {"id": "1103", "question": [{"language": "en", "string": "Who are the former partners of the figure skaters whose performance have been choreographed by Catarina Lindgren in the past?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/formerChoreographer> <http://dbpedia.org/resource/Catarina_Lindgren> . ?x <http://dbpedia.org/ontology/formerPartner> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/FigureSkater>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tiffany_Vise"}}, "entities": [{"URI": "http://dbpedia.org/resource/Catarina_Lindgren", "surface form": "Catarina Lindgren"}], "relations": [{"URI": "http://dbpedia.org/ontology/formerName", "surface form": "former partners"}, {"URI": "http://dbpedia.org/ontology/flag", "surface form": "figure skaters"}, {"URI": "http://dbpedia.org/ontology/production", "surface form": "performance"}, {"URI": "http://dbpedia.org/ontology/choreographer", "surface form": "choreographed"}]}, {"id": "1104", "question": [{"language": "en", "string": "In how many regions is English American spoken?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { <http://dbpedia.org/resource/English_Americans> <http://dbpedia.org/property/region> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "11"}}, "entities": [{"URI": "http://dbpedia.org/resource/English_Americans", "surface form": "English American "}], "relations": [{"URI": "http://dbpedia.org/property/region", "surface form": "regions"}]}, {"id": "1105", "question": [{"language": "en", "string": "who are all the people who have managed the England's under 20 soccer team?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/managerClub> <http://dbpedia.org/resource/England_national_under-20_football_team> } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Andy_Edwards_(footballer,_born_1971)"}}, "entities": [{"URI": "http://dbpedia.org/resource/England_national_under-20_football_team", "surface form": "the England's under 20 soccer team"}], "relations": [{"URI": "http://dbpedia.org/ontology/managerClub", "surface form": "managed"}]}, {"id": "1106", "question": [{"language": "en", "string": "Which peak was first scaled by Krzysztof Wielicki?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/firstAscentPerson> <http://dbpedia.org/resource/Krzysztof_Wielicki> } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lhotse"}}, "entities": [{"URI": "http://dbpedia.org/resource/Krzysztof_Wielicki", "surface form": "Krzysztof Wielicki"}], "relations": [{"URI": "http://dbpedia.org/ontology/firstAscentPerson", "surface form": "first"}]}, {"id": "1107", "question": [{"language": "en", "string": "Give me the total number of Guests of the television episodes whose one of the Guests is Michael Cristofer?"}], "query": {"sparql": " SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/guests> <http://dbpedia.org/resource/Michael_Cristofer> . ?x <http://dbpedia.org/property/guests> ?uri }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/Guests_of_the_Nation", "surface form": "Guests"}, {"URI": "http://dbpedia.org/resource/Guests_of_the_Nation", "surface form": "Guests"}, {"URI": "http://dbpedia.org/resource/Michael_Cristofer", "surface form": "Michael Cristofer"}], "relations": [{"URI": "http://dbpedia.org/property/guests", "surface form": "Guests"}, {"URI": "http://dbpedia.org/property/guests", "surface form": "Guests"}]}, {"id": "1108", "question": [{"language": "en", "string": "How many factions were fighting in the wars where Blue Jacket was a commander?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/commander> <http://dbpedia.org/resource/Blue_Jacket> . ?x <http://dbpedia.org/property/combatant> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "34"}}, "entities": [{"URI": "http://dbpedia.org/resource/Blue_Jacket", "surface form": "Blue Jacket"}], "relations": [{"URI": "http://dbpedia.org/ontology/movement", "surface form": "factions"}, {"URI": "http://dbpedia.org/ontology/combatant", "surface form": "fighting"}, {"URI": "http://dbpedia.org/ontology/partner", "surface form": "wars"}, {"URI": "http://dbpedia.org/ontology/commander", "surface form": "commander"}]}, {"id": "1109", "question": [{"language": "en", "string": "who was the president under which Joe Purcell is a lieutenant?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/lieutenant> <http://dbpedia.org/resource/Joe_Purcell> } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/David_Pryor__Tenure__5"}}, "entities": [{"URI": "http://dbpedia.org/resource/Joe_Purcell", "surface form": "Joe Purcell"}], "relations": [{"URI": "http://dbpedia.org/ontology/president", "surface form": "president"}, {"URI": "http://dbpedia.org/ontology/lieutenant", "surface form": "lieutenant"}]}, {"id": "1110", "question": [{"language": "en", "string": "List the state of the universities whose nation is United States ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/country> <http://dbpedia.org/resource/United_States> . ?x <http://dbpedia.org/ontology/state> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/University>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/New_York_(state)"}}, "entities": [{"URI": "http://dbpedia.org/resource/Universities_Ireland", "surface form": "universities"}, {"URI": "http://dbpedia.org/resource/United_States", "surface form": "United States"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": "nation"}]}, {"id": "1111", "question": [{"language": "en", "string": "What city is the place of birth of Alexander Morozevich which is also the official residence of Dmitri Nossov ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Alexander_Morozevich> <http://dbpedia.org/ontology/birthPlace> ?uri. <http://dbpedia.org/resource/Dmitri_Nossov> <http://dbpedia.org/property/residence> ?uri} "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Moscow"}}, "entities": [{"URI": "http://dbpedia.org/resource/Alexander_Morozevich", "surface form": "Alexander Morozevich"}, {"URI": "http://dbpedia.org/resource/Dmitri_Nossov", "surface form": "Dmitri Nossov"}], "relations": [{"URI": "http://dbpedia.org/ontology/birthPlace", "surface form": "place birth"}, {"URI": "http://dbpedia.org/property/residence", "surface form": "residence"}]}, {"id": "1112", "question": [{"language": "en", "string": "What is the television show whose executive producer is Steven Peterman?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/executiveProducer> <http://dbpedia.org/resource/Steven_Peterman> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/High_Society_(1995_TV_series)"}}, "entities": [{"URI": "http://dbpedia.org/resource/Steven_Peterman", "surface form": "Steven Peterman"}], "relations": [{"URI": "http://dbpedia.org/property/executiveProducer", "surface form": "executive producer"}, {"URI": "http://dbpedia.org/ontology/TelevisionShow", "surface form": "television show"}]}, {"id": "1113", "question": [{"language": "en", "string": "Which military battles are associated with Israel?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/place> <http://dbpedia.org/resource/Israel> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/MilitaryConflict>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Battle_of_Lake_Huleh_(1157)"}}, "entities": [{"URI": "http://dbpedia.org/resource/Israel", "surface form": "Israel"}], "relations": [{"URI": "http://dbpedia.org/ontology/militaryBranch", "surface form": "military battles"}, {"URI": "http://dbpedia.org/ontology/team", "surface form": "associated"}]}, {"id": "1114", "question": [{"language": "en", "string": "What are the veneration of the one for which there's a major shrine in Hebron?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/majorShrine> <http://dbpedia.org/resource/Hebron> . ?x <http://dbpedia.org/property/veneratedIn> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Judaism"}}, "entities": [{"URI": "http://dbpedia.org/resource/Hebron", "surface form": "Hebron"}], "relations": [{"URI": "http://dbpedia.org/ontology/time", "surface form": "veneration"}, {"URI": "http://dbpedia.org/ontology/majorShrine", "surface form": "major shrine"}]}, {"id": "1115", "question": [{"language": "en", "string": "What is the home town of the band which is the artist of Your Ice Cream's Dirty ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Your_Ice_Cream's_Dirty> <http://dbpedia.org/property/artist> ?x . ?x <http://dbpedia.org/ontology/hometown> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Band>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/United_States"}}, "entities": [{"URI": "http://dbpedia.org/resource/Your_Ice_Cream's_Dirty", "surface form": "Your Ice Cream's Dirty"}], "relations": [{"URI": "http://dbpedia.org/ontology/hometown", "surface form": "home town"}, {"URI": "http://dbpedia.org/ontology/band", "surface form": "band"}, {"URI": "http://dbpedia.org/ontology/artist", "surface form": "artist"}]}, {"id": "1116", "question": [{"language": "en", "string": "Who is the chancellor of the university which affiliates the Dartington College of Arts?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/affiliations> <http://dbpedia.org/resource/Dartington_College_of_Arts> . ?x <http://dbpedia.org/property/chancellor> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/University>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dawn_French"}}, "entities": [{"URI": "http://dbpedia.org/resource/Dartington_College_of_Arts", "surface form": "Dartington College of Arts"}], "relations": [{"URI": "http://dbpedia.org/ontology/chancellor", "surface form": "chancellor"}, {"URI": "http://dbpedia.org/ontology/riverBranch", "surface form": "affiliates"}]}, {"id": "1117", "question": [{"language": "en", "string": "What is the nationality of Sune Agerschou ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Sune_Agerschou> <http://dbpedia.org/ontology/nationality> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Denmark"}}, "entities": [{"URI": "http://dbpedia.org/resource/Sune_Agerschou", "surface form": "Sune Agerschou"}], "relations": [{"URI": "http://dbpedia.org/ontology/nationality", "surface form": "nationality"}]}, {"id": "1118", "question": [{"language": "en", "string": "Namt the fields of Paul Demiville ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Paul_Demi\u00e9ville> <http://dbpedia.org/property/fields> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chinese_poetry"}}, "entities": [{"URI": "http://dbpedia.org/resource/Paul_Demi\u00e9ville", "surface form": "Paul Demiville"}], "relations": [{"URI": "http://dbpedia.org/property/fields", "surface form": "fields"}]}, {"id": "1119", "question": [{"language": "en", "string": "Who all have been canonized by Pope Paul VI"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/canonizedBy> <http://dbpedia.org/resource/Pope_Paul_VI> } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ambrose_Barlow"}}, "entities": [{"URI": "http://dbpedia.org/resource/Pope_Paul_VI", "surface form": "Paul VI"}], "relations": [{"URI": "http://dbpedia.org/ontology/canonizedBy", "surface form": "canonized"}]}, {"id": "1120", "question": [{"language": "en", "string": "What is written in a programming language developed by GNOME Project?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/developer> <http://dbpedia.org/resource/The_GNOME_Project> . ?uri <http://dbpedia.org/property/programmingLanguage> ?x . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lutris"}}, "entities": [{"URI": "http://dbpedia.org/resource/The_GNOME_Project", "surface form": "GNOME Project"}], "relations": [{"URI": "http://dbpedia.org/ontology/fate", "surface form": "written"}, {"URI": "http://dbpedia.org/property/programmingLanguage", "surface form": "programming language"}, {"URI": "http://dbpedia.org/property/developer", "surface form": "developed"}]}, {"id": "1121", "question": [{"language": "en", "string": "Which race is the Best Mate is also the race of the Martin Molony?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Best_Mate> <http://dbpedia.org/property/race> ?uri. <http://dbpedia.org/resource/Martin_Molony> <http://dbpedia.org/ontology/race> ?uri} "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cheltenham_Gold_Cup"}}, "entities": [{"URI": "http://dbpedia.org/resource/Best_Mate", "surface form": "Best Mate"}, {"URI": "http://dbpedia.org/resource/Martin_Molony", "surface form": "Martin Molony"}], "relations": [{"URI": "http://dbpedia.org/ontology/race", "surface form": "race"}, {"URI": "http://dbpedia.org/ontology/race", "surface form": "race"}]}, {"id": "1122", "question": [{"language": "en", "string": "Where is the building located whose architect was Francis Palmer Smith?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/architect> <http://dbpedia.org/resource/Francis_Palmer_Smith> . ?x <http://dbpedia.org/property/address> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Building>}"}, "answers": {"uri": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "478"}}, "entities": [{"URI": "http://dbpedia.org/resource/Francis_Palmer_Smith", "surface form": "Francis Palmer Smith"}], "relations": [{"URI": "http://dbpedia.org/ontology/building", "surface form": "building"}, {"URI": "http://dbpedia.org/ontology/garrison", "surface form": "located"}, {"URI": "http://dbpedia.org/ontology/architect", "surface form": "architect"}]}, {"id": "1123", "question": [{"language": "en", "string": "Who operates the bridges designed by Malaysian PWD?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/designer> <http://dbpedia.org/resource/Malaysian_Public_Works_Department> . ?x <http://dbpedia.org/ontology/maintainedBy> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Bridge>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Malaysian_Public_Works_Department"}}, "entities": [{"URI": "http://dbpedia.org/resource/Malaysian_Public_Works_Department", "surface form": "Malaysian PWD"}], "relations": [{"URI": "http://dbpedia.org/ontology/staff", "surface form": "operates"}, {"URI": "http://dbpedia.org/ontology/abstract", "surface form": "bridges"}, {"URI": "http://dbpedia.org/ontology/architect", "surface form": "designed"}, {"URI": "http://dbpedia.org/ontology/country", "surface form": ""}]}, {"id": "1124", "question": [{"language": "en", "string": "Where was the person born whose successor was Le Hong Phong?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/successor> <http://dbpedia.org/resource/L\u00ea_H\u1ed3ng_Phong> . ?x <http://dbpedia.org/property/birthPlace> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/French_Indochina"}}, "entities": [{"URI": "http://dbpedia.org/resource/Phong_Ch\u00e2u", "surface form": "Le Hong Phong"}], "relations": [{"URI": "http://dbpedia.org/ontology/type", "surface form": "person"}, {"URI": "http://dbpedia.org/ontology/birthPlace", "surface form": "born"}, {"URI": "http://dbpedia.org/ontology/successor", "surface form": "successor"}]}, {"id": "1125", "question": [{"language": "en", "string": "In which race did Coneygree the racehorse and Fergie Sutherland the horse trainer participate?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Fergie_Sutherland> <http://dbpedia.org/property/race> ?uri. <http://dbpedia.org/resource/Coneygree> <http://dbpedia.org/property/race> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cheltenham_Gold_Cup"}}, "entities": [{"URI": "http://dbpedia.org/resource/Fergie_Sutherland", "surface form": "Fergie Sutherland"}, {"URI": "http://dbpedia.org/resource/Peter_Casey_(horse_trainer)", "surface form": "horse trainer participate"}], "relations": [{"URI": "http://dbpedia.org/ontology/race", "surface form": "race"}, {"URI": "http://dbpedia.org/ontology/stadium", "surface form": "racehorse"}]}, {"id": "1126", "question": [{"language": "en", "string": "List the school of Bobby Skinstad?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Bobby_Skinstad> <http://dbpedia.org/property/school> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/South_Africa"}}, "entities": [{"URI": "http://dbpedia.org/resource/Bobby_Skinstad", "surface form": "Bobby Skinstad"}], "relations": [{"URI": "http://dbpedia.org/ontology/school", "surface form": "school"}]}, {"id": "1127", "question": [{"language": "en", "string": "Count all the universities who participated in the tournament won by Alabama Crimson Tides in 2015 ?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/champion> <http://dbpedia.org/resource/2015_Alabama_Crimson_Tide_football_team> . ?uri <http://dbpedia.org/property/athletics> ?x . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/University>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/Universities_South_Africa", "surface form": "universities"}, {"URI": "http://dbpedia.org/resource/Alabama_Crimson_Tide", "surface form": "Alabama Crimson Tides"}, {"URI": "http://dbpedia.org/resource/2015_Super_Rugby_Final", "surface form": "2015"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": "count"}, {"URI": "http://dbpedia.org/ontology/participant", "surface form": "participated"}, {"URI": "http://dbpedia.org/ontology/event", "surface form": "tournament"}, {"URI": "http://dbpedia.org/ontology/city", "surface form": "won"}]}, {"id": "1128", "question": [{"language": "en", "string": "How many players are in the San Francisco Giants?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE {?uri <http://dbpedia.org/ontology/team> <http://dbpedia.org/resource/San_Francisco_Giants> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Athlete>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "126"}}, "entities": [{"URI": "http://dbpedia.org/resource/San_Francisco_Giants", "surface form": "San Francisco Giants"}], "relations": [{"URI": "http://dbpedia.org/ontology/combatant", "surface form": "players"}]}, {"id": "1129", "question": [{"language": "en", "string": "How many races has Best Mate won?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { <http://dbpedia.org/resource/Best_Mate> <http://dbpedia.org/property/race> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "8"}}, "entities": [{"URI": "http://dbpedia.org/resource/Best_Mate", "surface form": "Best Mate"}], "relations": [{"URI": "http://dbpedia.org/property/race", "surface form": "race"}]}, {"id": "1130", "question": [{"language": "en", "string": "Which units are garrisoned at Arlington County, Virginia?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/garrison> <http://dbpedia.org/resource/Arlington_County,_Virginia> } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Air_Force_Cost_Analysis_Agency"}}, "entities": [{"URI": "http://dbpedia.org/resource/Arlington_County,_Virginia", "surface form": "Arlington County, Virginia"}], "relations": [{"URI": "http://dbpedia.org/ontology/team", "surface form": "units"}, {"URI": "http://dbpedia.org/ontology/garrison", "surface form": "garrisoned"}]}, {"id": "1131", "question": [{"language": "en", "string": "In how many different places have ehtics philosophers died?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/mainInterests> <http://dbpedia.org/resource/Ethics> . ?x <http://dbpedia.org/property/placeOfDeath> ?uri . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Place>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/Ethics", "surface form": ""}], "relations": [{"URI": "http://dbpedia.org/property/height", "surface form": "places"}, {"URI": "http://dbpedia.org/ontology/flag", "surface form": "died"}]}, {"id": "1132", "question": [{"language": "en", "string": "Who is the developer of Dart (programming language) ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Dart_(programming_language)> <http://dbpedia.org/property/developer> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Google"}}, "entities": [{"URI": "http://dbpedia.org/resource/Dart_(programming_language)", "surface form": "Dart (programming language)"}], "relations": [{"URI": "http://dbpedia.org/ontology/developer", "surface form": "developer"}]}, {"id": "1133", "question": [{"language": "en", "string": "Which house has published books about Jazz?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/nonFictionSubject> <http://dbpedia.org/resource/Jazz> . ?x <http://dbpedia.org/ontology/publisher> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Book>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Penguin_Books"}}, "entities": [{"URI": "http://dbpedia.org/resource/Jazz", "surface form": "Jazz"}], "relations": [{"URI": "http://dbpedia.org/ontology/house", "surface form": "house"}, {"URI": "http://dbpedia.org/ontology/author", "surface form": "published"}, {"URI": "http://dbpedia.org/ontology/title", "surface form": "books"}]}, {"id": "1134", "question": [{"language": "en", "string": "Which person naratted The Incredible Hulk and also the writer of Tales of Suspense ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/The_Incredible_Hulk_(1982_TV_series)> <http://dbpedia.org/property/narrated> ?uri. <http://dbpedia.org/resource/Tales_of_Suspense> <http://dbpedia.org/property/writers> ?uri} "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Stan_Lee"}}, "entities": [{"URI": "http://dbpedia.org/resource/The_Trial_of_the_Incredible_Hulk", "surface form": "The Incredible Hulk"}, {"URI": "http://dbpedia.org/resource/Tales_of_Suspense", "surface form": "Tales of Suspense"}], "relations": [{"URI": "http://dbpedia.org/property/type", "surface form": "person"}, {"URI": "http://dbpedia.org/property/narrated", "surface form": "naratted"}, {"URI": "http://dbpedia.org/ontology/writer", "surface form": "writer"}]}, {"id": "1135", "question": [{"language": "en", "string": "How many companies have built concrete bridges?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/material> <http://dbpedia.org/resource/Concrete> . ?x <http://dbpedia.org/ontology/builder> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "27"}}, "entities": [{"URI": "http://dbpedia.org/resource/Companies_listed_on_the_New_York_Stock_Exchange_(J)", "surface form": "companies"}], "relations": [{"URI": "http://dbpedia.org/ontology/numberBuilt", "surface form": "built"}, {"URI": "http://dbpedia.org/ontology/material", "surface form": "concrete bridges"}]}, {"id": "1136", "question": [{"language": "en", "string": "How many movies have been directed by almunies of Parsons School of Design?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/education> <http://dbpedia.org/resource/Parsons_School_of_Design> . ?uri <http://dbpedia.org/ontology/director> ?x . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/Almunia", "surface form": "almunies"}, {"URI": "http://dbpedia.org/resource/Parsons_School_of_Design", "surface form": "Parsons School of Design"}], "relations": [{"URI": "http://dbpedia.org/ontology/film", "surface form": "movies"}, {"URI": "http://dbpedia.org/ontology/president", "surface form": "directed"}]}, {"id": "1137", "question": [{"language": "en", "string": "Count the number of sport played by the school which also plays Association football ?"}], "query": {"sparql": " SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/sport> <http://dbpedia.org/resource/Association_football> . ?x <http://dbpedia.org/ontology/sport> ?uri }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "1980"}}, "entities": [{"URI": "http://dbpedia.org/resource/Association_football", "surface form": "Association football"}], "relations": [{"URI": "http://dbpedia.org/ontology/sport", "surface form": "sport"}, {"URI": "http://dbpedia.org/ontology/sport", "surface form": "sport"}]}, {"id": "1138", "question": [{"language": "en", "string": "Which countries militaries fought the SFOR battle?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/battles> <http://dbpedia.org/resource/SFOR> . ?x <http://dbpedia.org/ontology/battle> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/MilitaryPerson>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Golan_Heights"}}, "entities": [{"URI": "http://dbpedia.org/resource/List_of_militaries_by_country", "surface form": "countries militaries"}, {"URI": "http://dbpedia.org/resource/SFOR", "surface form": "SFOR"}], "relations": [{"URI": "http://dbpedia.org/ontology/nerve", "surface form": "fought"}, {"URI": "http://dbpedia.org/ontology/battle", "surface form": "battle"}]}, {"id": "1139", "question": [{"language": "en", "string": "List the people died in Hyderabad and are a member of political party ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/deathPlace> <http://dbpedia.org/resource/Hyderabad> . ?x <http://dbpedia.org/ontology/party> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/All_India_Majlis-e-Ittehadul_Muslimeen"}}, "entities": [{"URI": "http://dbpedia.org/resource/Hyderabad", "surface form": "Hyderabad"}], "relations": [{"URI": "http://dbpedia.org/ontology/deathPlace", "surface form": "died in"}, {"URI": "http://dbpedia.org/ontology/party", "surface form": "political party"}]}, {"id": "1140", "question": [{"language": "en", "string": "What is the american football league whose champion is from Kansas City, Missouri?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/city> <http://dbpedia.org/resource/Kansas_City,_Missouri> . ?uri <http://dbpedia.org/property/champion> ?x . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/AmericanFootballLeague>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/American_Football_League"}}, "entities": [{"URI": "http://dbpedia.org/resource/American_Football_League", "surface form": "american football league"}, {"URI": "http://dbpedia.org/resource/Kansas_City,_Missouri", "surface form": "Kansas City, Missouri"}], "relations": [{"URI": "http://dbpedia.org/property/champion", "surface form": "champion"}]}, {"id": "1141", "question": [{"language": "en", "string": "How many thesis were supervised by Ernest Rutherford?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE {?uri <http://dbpedia.org/ontology/doctoralAdvisor> <http://dbpedia.org/resource/Ernest_Rutherford> . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "17"}}, "entities": [{"URI": "http://dbpedia.org/resource/Ernest_Rutherford", "surface form": "Ernest Rutherford"}], "relations": [{"URI": "http://dbpedia.org/ontology/doctoralAdvisor", "surface form": "supervised"}]}, {"id": "1142", "question": [{"language": "en", "string": "Who is the publisher of the comic, one of whose authors is Kentaro Takekuma ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/writers> <http://dbpedia.org/resource/Kentaro_Takekuma> . ?x <http://dbpedia.org/property/publisher> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Comic>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nintendo"}}, "entities": [{"URI": "http://dbpedia.org/resource/Kentaro_Takekuma", "surface form": "Kentaro Takekuma"}], "relations": [{"URI": "http://dbpedia.org/ontology/publisher", "surface form": "publisher"}, {"URI": "http://dbpedia.org/ontology/magazine", "surface form": "comic,"}, {"URI": "http://dbpedia.org/ontology/author", "surface form": "authors"}]}, {"id": "1143", "question": [{"language": "en", "string": "List the scientists whose doctoral advisor is Ernest Rutherford and are known for Manhattan Project?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/doctoralAdvisor> <http://dbpedia.org/resource/Ernest_Rutherford> . ?uri <http://dbpedia.org/property/knownFor> <http://dbpedia.org/resource/Manhattan_Project> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Scientist>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Philip_Burton_Moon"}}, "entities": [{"URI": "http://dbpedia.org/resource/Scientists_for_Global_Responsibility", "surface form": "scientists"}, {"URI": "http://dbpedia.org/resource/Ernest_Rutherford", "surface form": "Ernest Rutherford"}, {"URI": "http://dbpedia.org/resource/Manhattan_Project", "surface form": "Manhattan Project"}], "relations": [{"URI": "http://dbpedia.org/ontology/doctoralAdvisor", "surface form": "doctoral advisor"}]}, {"id": "1144", "question": [{"language": "en", "string": "Where is the garrison of Western Naval Command ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Western_Naval_Command> <http://dbpedia.org/property/garrison> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mumbai"}}, "entities": [{"URI": "http://dbpedia.org/resource/Western_Naval_Command", "surface form": "Western Naval Command"}], "relations": [{"URI": "http://dbpedia.org/ontology/garrison", "surface form": "garrison"}]}, {"id": "1145", "question": [{"language": "en", "string": "Which person's successor is Samsu-iluna?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/successor> <http://dbpedia.org/resource/Samsu-iluna> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Person>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hammurabi"}}, "entities": [{"URI": "http://dbpedia.org/resource/Samsu-iluna", "surface form": "Samsu-iluna"}], "relations": [{"URI": "http://dbpedia.org/ontology/successor", "surface form": "successor"}, {"URI": "http://dbpedia.org/ontology/Person", "surface form": "person"}]}, {"id": "1146", "question": [{"language": "en", "string": "From how many different places did the weapons used in the American Indian wars originate?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/usedInWar> <http://dbpedia.org/resource/American_Indian_Wars> . ?x <http://dbpedia.org/property/origin> ?uri . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Place>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "16"}}, "entities": [{"URI": "http://dbpedia.org/resource/Organization_of_American_States", "surface form": "American Indian wars"}, {"URI": "http://dbpedia.org/resource/American_Indian_Wars", "surface form": "American Indian wars"}], "relations": [{"URI": "http://dbpedia.org/ontology/place", "surface form": "places"}, {"URI": "http://dbpedia.org/ontology/numberOfSeasons", "surface form": "weapons"}, {"URI": "http://dbpedia.org/ontology/result", "surface form": "originate"}, {"URI": "http://dbpedia.org/ontology/country", "surface form": ""}]}, {"id": "1147", "question": [{"language": "en", "string": "How many sports are played in maharashtran schools?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/state> <http://dbpedia.org/resource/Maharashtra> . ?x <http://dbpedia.org/ontology/sport> ?uri . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Sport>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "14"}}, "entities": [{"URI": "http://dbpedia.org/resource/Maharashtra", "surface form": "maharashtra"}], "relations": [{"URI": "http://dbpedia.org/ontology/athletics", "surface form": "sports"}, {"URI": "http://dbpedia.org/ontology/portrayer", "surface form": "played"}]}, {"id": "1148", "question": [{"language": "en", "string": "Where did chancellor served by Rudolf Kirchschlger die?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Rudolf_Kirchschl\u00e4ger> <http://dbpedia.org/property/chancellor> ?x . ?x <http://dbpedia.org/ontology/deathPlace> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vienna"}}, "entities": [{"URI": "http://dbpedia.org/resource/Rudolf_Kirchschl\u00e4ger", "surface form": "Rudolf Kirchschlger"}], "relations": [{"URI": "http://dbpedia.org/ontology/chancellor", "surface form": "chancellor"}, {"URI": "http://dbpedia.org/ontology/regionServed", "surface form": "served"}]}, {"id": "1149", "question": [{"language": "en", "string": "How many owners owned the clubs participating in the Premier leagues of '14?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/season> <http://dbpedia.org/resource/2014\u201315_Premier_League> . ?x <http://dbpedia.org/property/owner> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/2013_National_Premier_Leagues", "surface form": "Premier leagues"}, {"URI": "http://dbpedia.org/resource/14", "surface form": "14"}], "relations": [{"URI": "http://dbpedia.org/property/owner", "surface form": "owners"}, {"URI": "http://dbpedia.org/property/owner", "surface form": "owned"}, {"URI": "http://dbpedia.org/ontology/college", "surface form": "clubs"}, {"URI": "http://dbpedia.org/ontology/interest", "surface form": "participating"}]}, {"id": "1150", "question": [{"language": "en", "string": "How many people live in the Beverly Hills, California?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE {?uri <http://dbpedia.org/ontology/residence> <http://dbpedia.org/resource/Beverly_Hills,_California> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Person>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "2"}}, "entities": [{"URI": "http://dbpedia.org/resource/Beverly_Hills,_California", "surface form": "Beverly Hills, California"}], "relations": [{"URI": "http://dbpedia.org/ontology/residence", "surface form": "live"}]}, {"id": "1151", "question": [{"language": "en", "string": "Name some islands in a pacific archipelago?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/location> <http://dbpedia.org/resource/Pacific_Ocean> . ?uri <http://dbpedia.org/property/archipelago> ?x . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Island>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dall_Island"}}, "entities": [{"URI": "http://dbpedia.org/resource/Pacific_Ocean", "surface form": "pacific"}], "relations": [{"URI": "http://dbpedia.org/ontology/name", "surface form": "name"}, {"URI": "http://dbpedia.org/ontology/numberOfIslands", "surface form": "islands"}, {"URI": "http://dbpedia.org/ontology/archipelago", "surface form": "pacific archipelago"}]}, {"id": "1152", "question": [{"language": "en", "string": "For how many movies have the music composer composed music, who have collaborated with Yes ?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/associatedMusicalArtist> <http://dbpedia.org/resource/Yes_(band)> . ?uri <http://dbpedia.org/ontology/musicComposer> ?x . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "17"}}, "entities": [{"URI": "http://dbpedia.org/resource/Yes_(band)", "surface form": "Yes"}], "relations": [{"URI": "http://dbpedia.org/ontology/picture", "surface form": "movies"}, {"URI": "http://dbpedia.org/ontology/musicSubgenre", "surface form": "music composer"}, {"URI": "http://dbpedia.org/ontology/musicComposer", "surface form": "composed"}, {"URI": "http://dbpedia.org/ontology/musicSubgenre", "surface form": "music,"}, {"URI": "http://dbpedia.org/ontology/band", "surface form": "collaborated"}]}, {"id": "1153", "question": [{"language": "en", "string": "Name the driver who had a pole finish in 1989 Portuguese Grand Prix ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/1989_Portuguese_Grand_Prix> <http://dbpedia.org/ontology/poleDriver> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ayrton_Senna"}}, "entities": [{"URI": "http://dbpedia.org/resource/1989_Portuguese_Grand_Prix", "surface form": "1989 Portuguese Grand Prix"}], "relations": [{"URI": "http://dbpedia.org/ontology/name", "surface form": "name"}, {"URI": "http://dbpedia.org/ontology/poleDriver", "surface form": "driver"}, {"URI": "http://dbpedia.org/ontology/poleDriver", "surface form": "pole finish"}]}, {"id": "1154", "question": [{"language": "en", "string": "In how many areas do the networks broadcast, which also broadcasts in North Carolina?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/broadcastArea> <http://dbpedia.org/resource/North_Carolina> . ?x <http://dbpedia.org/property/area> ?uri . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Place>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "5"}}, "entities": [{"URI": "http://dbpedia.org/resource/North_Carolina", "surface form": "North Carolina"}], "relations": [{"URI": "http://dbpedia.org/ontology/state", "surface form": "networks broadcast,"}, {"URI": "http://dbpedia.org/ontology/state", "surface form": "broadcasts"}]}, {"id": "1155", "question": [{"language": "en", "string": "Name the sovereign state of Wallington railway station ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Wallington_railway_station> <http://dbpedia.org/ontology/country> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/United_Kingdom"}}, "entities": [{"URI": "http://dbpedia.org/resource/Wallington_railway_station", "surface form": "Wallington railway station"}], "relations": [{"URI": "http://dbpedia.org/property/name", "surface form": "name"}, {"URI": "http://dbpedia.org/ontology/country", "surface form": "sovereign"}]}, {"id": "1156", "question": [{"language": "en", "string": "what region is governed by Mario Olivero?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/leader> <http://dbpedia.org/resource/Mario_Oliverio> } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/2014_Calabrian_regional_election"}}, "entities": [{"URI": "http://dbpedia.org/resource/Mario_Oliverio", "surface form": "Mario Olivero"}], "relations": [{"URI": "http://dbpedia.org/ontology/leader", "surface form": "governed"}]}, {"id": "1157", "question": [{"language": "en", "string": "What is the total number of regions served by the companies which also serves Australia?"}], "query": {"sparql": " SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/regionServed> <http://dbpedia.org/resource/Australia> . ?x <http://dbpedia.org/ontology/regionServed> ?uri }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "1935"}}, "entities": [{"URI": "http://dbpedia.org/resource/Companies_listed_on_the_New_York_Stock_Exchange_(J)", "surface form": "companies"}, {"URI": "http://dbpedia.org/resource/Australia", "surface form": "Australia"}], "relations": [{"URI": "http://dbpedia.org/ontology/populationTotal", "surface form": "total"}, {"URI": "http://dbpedia.org/property/region", "surface form": "regions"}, {"URI": "http://dbpedia.org/ontology/regionServed", "surface form": "served"}, {"URI": "http://dbpedia.org/ontology/chain", "surface form": "serves"}]}, {"id": "1158", "question": [{"language": "en", "string": "What is the birth city of the Salford City F.C players ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/team> <http://dbpedia.org/resource/Salford_City_F.C.> . ?x <http://dbpedia.org/ontology/birthPlace> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/SoccerPlayer>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Algiers"}}, "entities": [{"URI": "http://dbpedia.org/resource/Salford_City_F.C.", "surface form": "Salford City F.C"}], "relations": [{"URI": "http://dbpedia.org/ontology/city", "surface form": "birth city"}]}, {"id": "1159", "question": [{"language": "en", "string": "Who are the maintainers of the bridges which cross the pandaruan river?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/crosses> <http://dbpedia.org/resource/Pandaruan_River> . ?x <http://dbpedia.org/ontology/maintainedBy> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Bridge>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Brunei"}}, "entities": [{"URI": "http://dbpedia.org/resource/Pandaruan_River", "surface form": "pandaruan river"}], "relations": [{"URI": "http://dbpedia.org/ontology/maintainedBy", "surface form": "maintainers"}, {"URI": "http://dbpedia.org/ontology/thumbnail", "surface form": "bridges"}, {"URI": "http://dbpedia.org/ontology/hybrid", "surface form": "cross"}, {"URI": "http://dbpedia.org/ontology/river", "surface form": "pandaruan river"}]}, {"id": "1160", "question": [{"language": "en", "string": "List the area of radio stations whose sister station is WBCQ-FM?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/WBCQ-FM> <http://dbpedia.org/property/sisterStations> ?x . ?x <http://dbpedia.org/property/area> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Asia"}}, "entities": [{"URI": "http://dbpedia.org/resource/WBCQ-FM", "surface form": "WBCQ-FM"}], "relations": [{"URI": "http://dbpedia.org/ontology/area", "surface form": "area"}, {"URI": "http://dbpedia.org/property/sisterStations", "surface form": "radio stations"}, {"URI": "http://dbpedia.org/ontology/sisterStation", "surface form": "sister station"}]}, {"id": "1161", "question": [{"language": "en", "string": "Which school did Robbie Diack attend?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Robbie_Diack> <http://dbpedia.org/property/school> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Michaelhouse"}}, "entities": [{"URI": "http://dbpedia.org/resource/Robbie_Diack", "surface form": "Robbie Diack"}], "relations": [{"URI": "http://dbpedia.org/ontology/school", "surface form": "school"}, {"URI": "http://dbpedia.org/ontology/address", "surface form": "attend"}]}, {"id": "1162", "question": [{"language": "en", "string": "How many companies have manufactured the rockets launched from the Cape Canaveral Air Force Station?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/launchSite> <http://dbpedia.org/resource/Cape_Canaveral_Air_Force_Station> . ?x <http://dbpedia.org/ontology/manufacturer> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/Companies_listed_on_the_New_York_Stock_Exchange_(J)", "surface form": "companies"}, {"URI": "http://dbpedia.org/resource/Cape_Canaveral_Air_Force_Station", "surface form": "Cape Canaveral Air Force Station"}], "relations": [{"URI": "http://dbpedia.org/ontology/launchSite", "surface form": "launched"}, {"URI": "http://dbpedia.org/ontology/manufacturer", "surface form": "manufactured"}]}, {"id": "1163", "question": [{"language": "en", "string": "What is the sea connected to Kaliningrad and Gdask?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/cities> <http://dbpedia.org/resource/Kaliningrad> . ?uri <http://dbpedia.org/property/cities> <http://dbpedia.org/resource/Gda\u0144sk> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Sea>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Baltic_Sea"}}, "entities": [{"URI": "http://dbpedia.org/resource/Kaliningrad_Zoo", "surface form": "Kaliningrad and Gdask"}], "relations": [{"URI": "http://dbpedia.org/ontology/seatingCapacity", "surface form": "sea"}, {"URI": "http://dbpedia.org/ontology/related", "surface form": "connected"}]}, {"id": "1164", "question": [{"language": "en", "string": "Name the agency of Election Commission of Thailand ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Election_Commission_of_Thailand> <http://dbpedia.org/property/agencyName> ?uri } "}, "answers": {"uri": {"type": "literal", "xml:lang": "en", "value": "Election Commission"}}, "entities": [{"URI": "http://dbpedia.org/resource/Election_Commission_of_Thailand", "surface form": "Election Commission of Thailand"}], "relations": [{"URI": "http://dbpedia.org/ontology/name", "surface form": "name"}, {"URI": "http://dbpedia.org/ontology/agency", "surface form": "agency"}]}, {"id": "1165", "question": [{"language": "en", "string": "In which country did the planes designed by Ursula Hanle originate?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/designer> <http://dbpedia.org/resource/Ursula_H\u00e4nle> . ?x <http://dbpedia.org/property/nationalOrigin> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Aircraft>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/West_Germany"}}, "entities": [{"URI": "http://dbpedia.org/resource/Ursula_H\u00e4nle", "surface form": "Ursula Hanle"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": "country"}, {"URI": "http://dbpedia.org/ontology/founder", "surface form": "planes"}, {"URI": "http://dbpedia.org/ontology/architect", "surface form": "designed"}, {"URI": "http://dbpedia.org/ontology/engineer", "surface form": "originate"}]}, {"id": "1166", "question": [{"language": "en", "string": "what are some units udner the US department of navy?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/commandStructure> <http://dbpedia.org/resource/United_States_Department_of_the_Navy> } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Assault_Craft_Unit_5"}}, "entities": [{"URI": "http://dbpedia.org/resource/United_States_Department_of_the_Navy", "surface form": "US department of navy"}], "relations": [{"URI": "http://dbpedia.org/ontology/commandStructure", "surface form": "units udner"}]}, {"id": "1167", "question": [{"language": "en", "string": "What did other artists associated with the Shirelles make?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/associatedBand> <http://dbpedia.org/resource/The_Shirelles> . ?x <http://dbpedia.org/ontology/occupation> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Artist>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chess"}}, "entities": [{"URI": "http://dbpedia.org/resource/Boys_(The_Shirelles_song)", "surface form": "Shirelles"}], "relations": [{"URI": "http://dbpedia.org/property/artist", "surface form": "artists"}, {"URI": "http://dbpedia.org/ontology/associatedBand", "surface form": "associated"}]}, {"id": "1168", "question": [{"language": "en", "string": "Which sitcoms are made by a company headquartered in NYC?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/headquarter> <http://dbpedia.org/resource/New_York_City> . ?uri <http://dbpedia.org/ontology/company> ?x . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/America's_Most_Smartest_Model"}}, "entities": [{"URI": "http://dbpedia.org/resource/New_York_City", "surface form": "NYC"}], "relations": [{"URI": "http://dbpedia.org/ontology/series", "surface form": "sitcoms"}, {"URI": "http://dbpedia.org/ontology/company", "surface form": "company"}, {"URI": "http://dbpedia.org/ontology/headquarter", "surface form": "headquartered"}]}, {"id": "1169", "question": [{"language": "en", "string": "List the children of the parent of Marvin Bush."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Marvin_Bush> <http://dbpedia.org/ontology/parent> ?x . ?x <http://dbpedia.org/property/children> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/George_W._Bush"}}, "entities": [{"URI": "http://dbpedia.org/resource/Marvin_Bush", "surface form": "Marvin Bush"}], "relations": [{"URI": "http://dbpedia.org/property/children", "surface form": "children"}, {"URI": "http://dbpedia.org/ontology/parent", "surface form": "parent"}]}, {"id": "1170", "question": [{"language": "en", "string": "List down all the cast members of Tony n' Tina's Wedding ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Tony_n'_Tina's_Wedding> <http://dbpedia.org/property/starring> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Adrian_Grenier"}}, "entities": [{"URI": "http://dbpedia.org/resource/Heart_'n'_Soul_(Tina_Charles_album)", "surface form": "Tony n' Tina"}, {"URI": "http://dbpedia.org/resource/Blood_Wedding", "surface form": " Wedding"}], "relations": [{"URI": "http://dbpedia.org/ontology/genre", "surface form": "cast members"}]}, {"id": "1171", "question": [{"language": "en", "string": "What is the airline company has its headquarters in Dublin Airport?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/headquarters> <http://dbpedia.org/resource/Dublin_Airport> } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Airport_Police_(Ireland)"}}, "entities": [{"URI": "http://dbpedia.org/resource/Dublin_Airport", "surface form": "Dublin Airport"}], "relations": [{"URI": "http://dbpedia.org/property/headquarters", "surface form": "headquarters"}]}, {"id": "1172", "question": [{"language": "en", "string": "Where was the Temptation Waits recorded?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Temptation_Waits> <http://dbpedia.org/ontology/recordedIn> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Madison,_Wisconsin"}}, "entities": [{"URI": "http://dbpedia.org/resource/Temptation_Waits", "surface form": "Temptation Waits"}], "relations": [{"URI": "http://dbpedia.org/ontology/recordedIn", "surface form": "recorded"}]}, {"id": "1173", "question": [{"language": "en", "string": "Some movies whose screenplay is done by american born people?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/birthPlace> <http://dbpedia.org/resource/United_States> . ?uri <http://dbpedia.org/property/screenplay> ?x . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Johnny_Belinda_(1948_film)"}}, "entities": [{"URI": "http://dbpedia.org/resource/Screenplay", "surface form": "screenplay"}, {"URI": "http://dbpedia.org/resource/American", "surface form": "american"}], "relations": [{"URI": "http://dbpedia.org/ontology/film", "surface form": "movies"}, {"URI": "http://dbpedia.org/ontology/birthPlace", "surface form": "born"}]}, {"id": "1174", "question": [{"language": "en", "string": "List the relatives of clay Aiken ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/relatives> <http://dbpedia.org/resource/Clay_Aiken> . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kenneth_Parcell"}}, "entities": [{"URI": "http://dbpedia.org/resource/Clay_Aiken", "surface form": "clay Aiken"}], "relations": [{"URI": "http://dbpedia.org/property/relatives", "surface form": "relatives"}]}, {"id": "1175", "question": [{"language": "en", "string": "List the relatives of the children of Jon Voight ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Jon_Voight> <http://dbpedia.org/property/children> ?x . ?x <http://dbpedia.org/ontology/relative> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/James_Haven"}}, "entities": [{"URI": "http://dbpedia.org/resource/Jon_Voight", "surface form": "Jon Voight"}], "relations": [{"URI": "http://dbpedia.org/property/children", "surface form": "children"}, {"URI": "http://dbpedia.org/ontology/relative", "surface form": "relative"}]}, {"id": "1176", "question": [{"language": "en", "string": "List all areas served by the radio station serving South carolina ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/area> <http://dbpedia.org/resource/South_Carolina> . ?x <http://dbpedia.org/property/area> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/RadioStation>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gaffney,_South_Carolina"}}, "entities": [{"URI": "http://dbpedia.org/resource/South_Carolina", "surface form": "South carolina"}], "relations": [{"URI": "http://dbpedia.org/ontology/regionServed", "surface form": "served"}, {"URI": "http://dbpedia.org/ontology/place", "surface form": "radio station"}, {"URI": "http://dbpedia.org/ontology/service", "surface form": "serving"}]}, {"id": "1177", "question": [{"language": "en", "string": "Which work is both Neil Cross and Lars Pearson both known for ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Neil_Cross> <http://dbpedia.org/ontology/notableWork> ?uri. <http://dbpedia.org/resource/Lars_Pearson> <http://dbpedia.org/ontology/notableWork> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Doctor_Who"}}, "entities": [{"URI": "http://dbpedia.org/resource/Neil_Cross", "surface form": "Neil Cross"}, {"URI": "http://dbpedia.org/resource/Lars_Pearson", "surface form": "Lars Pearson"}], "relations": [{"URI": "http://dbpedia.org/ontology/notableWork", "surface form": "work"}, {"URI": "http://dbpedia.org/ontology/notableWork", "surface form": "work"}]}, {"id": "1178", "question": [{"language": "en", "string": "which award has been won by Claudia Moro?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Claudia_Moro> <http://dbpedia.org/property/title> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Miss_Spain_2008"}}, "entities": [{"URI": "http://dbpedia.org/resource/Claudia_Moro", "surface form": "Claudia Moro"}], "relations": [{"URI": "http://dbpedia.org/ontology/award", "surface form": "award"}, {"URI": "http://dbpedia.org/ontology/city", "surface form": "won"}]}, {"id": "1179", "question": [{"language": "en", "string": "What is the country whose leader was once Valentina Matviyenko?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/leader> <http://dbpedia.org/resource/Valentina_Matviyenko> . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Federal_Assembly_(Russia)__Federal_Assembly__1"}}, "entities": [{"URI": "http://dbpedia.org/resource/Valentina_Matviyenko", "surface form": "Valentina Matviyenko"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": "country"}, {"URI": "http://dbpedia.org/ontology/leader", "surface form": "leader"}]}, {"id": "1180", "question": [{"language": "en", "string": "Whose units are responsible for close air support?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/role> <http://dbpedia.org/resource/Close_air_support> . ?uri <http://dbpedia.org/ontology/militaryUnit> ?x . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dean_S._Laird"}}, "entities": [{"URI": "http://dbpedia.org/resource/Responsible_position", "surface form": "responsible"}, {"URI": "http://dbpedia.org/resource/Close_air_support", "surface form": "close air support"}], "relations": [{"URI": "http://dbpedia.org/ontology/team", "surface form": "units"}]}, {"id": "1181", "question": [{"language": "en", "string": "What is the address of Federal Reserve Bank Building?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Federal_Reserve_Bank_Building_(Seattle)> <http://dbpedia.org/property/address> ?uri } "}, "answers": {"uri": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "10152"}}, "entities": [{"URI": "http://dbpedia.org/resource/Federal_Reserve_Bank_Building_(Seattle)", "surface form": "Federal Reserve Bank Building"}], "relations": [{"URI": "http://dbpedia.org/ontology/address", "surface form": "address"}]}, {"id": "1182", "question": [{"language": "en", "string": "What are the kind of games one can play on windows?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/computingPlatform> <http://dbpedia.org/resource/Microsoft_Windows> . ?x <http://dbpedia.org/ontology/genre> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/VideoGame>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Adventure_game"}}, "entities": [{"URI": "http://dbpedia.org/resource/Microsoft_Windows", "surface form": "windows"}], "relations": [{"URI": "http://dbpedia.org/ontology/games", "surface form": "games"}, {"URI": "http://dbpedia.org/ontology/starring", "surface form": "play"}, {"URI": "http://dbpedia.org/ontology/show", "surface form": "windows"}]}, {"id": "1183", "question": [{"language": "en", "string": "Which artists have co-starred with Kris Kristofferson?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/associatedActs> <http://dbpedia.org/resource/Kris_Kristofferson> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Artist>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Marilyn_Sellars"}}, "entities": [{"URI": "http://dbpedia.org/resource/Kris_Kristofferson", "surface form": "Kris Kristofferson"}], "relations": [{"URI": "http://dbpedia.org/property/artist", "surface form": "artists"}, {"URI": "http://dbpedia.org/ontology/country", "surface form": "co-starred"}]}, {"id": "1184", "question": [{"language": "en", "string": "List the software using C++ as programming language and licence is Software as a service?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/programmingLanguage> <http://dbpedia.org/resource/C++> . ?uri <http://dbpedia.org/ontology/license> <http://dbpedia.org/resource/Software_as_a_service> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Software>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Adobe_Character_Animator"}}, "entities": [{"URI": "http://dbpedia.org/resource/Rietveld_(software)", "surface form": "software"}, {"URI": "http://dbpedia.org/resource/C++", "surface form": "C++"}, {"URI": "http://dbpedia.org/resource/Rietveld_(software)", "surface form": "Software"}], "relations": [{"URI": "http://dbpedia.org/ontology/language", "surface form": "programming language"}, {"URI": "http://dbpedia.org/ontology/license", "surface form": "licence"}, {"URI": "http://dbpedia.org/ontology/industry", "surface form": "service"}]}, {"id": "1185", "question": [{"language": "en", "string": "List the countries through which European rout E39 and E8 passes ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/European_route_E39> <http://dbpedia.org/ontology/county> ?uri. <http://dbpedia.org/resource/European_route_E8> <http://dbpedia.org/ontology/county> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Norway"}}, "entities": [{"URI": "http://dbpedia.org/resource/Countries_of_the_United_Kingdom", "surface form": "countries"}, {"URI": "http://dbpedia.org/resource/E39", "surface form": "E39"}, {"URI": "http://dbpedia.org/resource/Europe", "surface form": "European rout"}, {"URI": "http://dbpedia.org/resource/Rout", "surface form": "European rout"}, {"URI": "http://dbpedia.org/resource/E8", "surface form": "E8"}], "relations": [{"URI": "http://dbpedia.org/property/pages", "surface form": "passes"}, {"URI": "http://dbpedia.org/ontology/country", "surface form": ""}]}, {"id": "1186", "question": [{"language": "en", "string": "Who are the writer of the singles whose music genre is Rhythm and blues ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/genre> <http://dbpedia.org/resource/Rhythm_and_blues> . ?x <http://dbpedia.org/ontology/writer> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Single>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Elvis_Presley"}}, "entities": [{"URI": "http://dbpedia.org/resource/Rhythm_and_blues", "surface form": "Rhythm and blues"}], "relations": [{"URI": "http://dbpedia.org/ontology/writer", "surface form": "writer"}, {"URI": "http://dbpedia.org/ontology/associate", "surface form": "singles"}, {"URI": "http://dbpedia.org/ontology/genre", "surface form": "music genre"}, {"URI": "http://dbpedia.org/ontology/gross", "surface form": "blues"}]}, {"id": "1187", "question": [{"language": "en", "string": "What are the awards won by the film editor of The Search?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/The_Search_(2014_film)> <http://dbpedia.org/ontology/editing> ?x . ?x <http://dbpedia.org/property/awards> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Academy_Award"}}, "entities": [{"URI": "http://dbpedia.org/resource/The_Search_(2014_film)", "surface form": "The Search"}], "relations": [{"URI": "http://dbpedia.org/ontology/editing", "surface form": "editor"}, {"URI": "http://dbpedia.org/property/awards", "surface form": "awards"}]}, {"id": "1188", "question": [{"language": "en", "string": "Give me some series related to the one which had Yasmin Paige in them."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/starring> <http://dbpedia.org/resource/Yasmin_Paige> . ?uri <http://dbpedia.org/ontology/related> ?x . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sarah_Jane's_Alien_Files"}}, "entities": [{"URI": "http://dbpedia.org/resource/Yasmin_Paige", "surface form": "Yasmin Paige"}], "relations": [{"URI": "http://dbpedia.org/ontology/series", "surface form": "series"}, {"URI": "http://dbpedia.org/ontology/related", "surface form": "related"}]}, {"id": "1189", "question": [{"language": "en", "string": "Count the number of shows whose creators are Jerry Seinfeld and Larry David?"}], "query": {"sparql": " SELECT DISTINCT COUNT(?uri) WHERE { ?uri <http://dbpedia.org/ontology/creator> <http://dbpedia.org/resource/Jerry_Seinfeld> . ?uri <http://dbpedia.org/ontology/creator> <http://dbpedia.org/resource/Larry_David>} "}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "7"}}, "entities": [{"URI": "http://dbpedia.org/resource/Jerry_Seinfeld", "surface form": "Jerry Seinfeld"}, {"URI": "http://dbpedia.org/resource/Larry_David", "surface form": "Larry David"}], "relations": [{"URI": "http://dbpedia.org/ontology/creator", "surface form": "creator"}, {"URI": "http://dbpedia.org/ontology/creator", "surface form": "creator"}]}, {"id": "1190", "question": [{"language": "en", "string": "How many TV shows have executive producer as Steven Moffat ?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE {?uri <http://dbpedia.org/ontology/executiveProducer> <http://dbpedia.org/resource/Steven_Moffat> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "41"}}, "entities": [{"URI": "http://dbpedia.org/resource/Tv_test_pattern", "surface form": "TV"}, {"URI": "http://dbpedia.org/resource/Steven_Moffat", "surface form": "Steven Moffat"}], "relations": [{"URI": "http://dbpedia.org/ontology/executiveProducer", "surface form": "executive producer"}, {"URI": "http://dbpedia.org/ontology/TelevisionShow", "surface form": "shows"}]}, {"id": "1191", "question": [{"language": "en", "string": "How many relatives are there of veterans of operation Barbarossa?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/battle> <http://dbpedia.org/resource/Operation_Barbarossa> . ?x <http://dbpedia.org/ontology/relation> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "21"}}, "entities": [{"URI": "http://dbpedia.org/resource/Veterans_Memorial_Bridge_(Chattanooga)", "surface form": "veterans"}, {"URI": "http://dbpedia.org/resource/Operation_Barbarossa", "surface form": "operation Barbarossa"}], "relations": [{"URI": "http://dbpedia.org/ontology/languageFamily", "surface form": "relatives"}]}, {"id": "1192", "question": [{"language": "en", "string": "Which famous political figures are relatives to George Madison?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/George_Madison> <http://dbpedia.org/ontology/relation> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/James_Madison"}}, "entities": [{"URI": "http://dbpedia.org/resource/Famous", "surface form": "famous political figures"}, {"URI": "http://dbpedia.org/resource/George_Madison", "surface form": "George Madison"}], "relations": [{"URI": "http://dbpedia.org/ontology/relation", "surface form": "relatives"}]}, {"id": "1193", "question": [{"language": "en", "string": "List the shows whose company's successor is Amblin Television."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/successor> <http://dbpedia.org/resource/Amblin_Television> . ?uri <http://dbpedia.org/ontology/company> ?x . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Arsenio_(TV_series)"}}, "entities": [{"URI": "http://dbpedia.org/resource/Amblin_Television", "surface form": "Amblin Television"}], "relations": [{"URI": "http://dbpedia.org/ontology/place", "surface form": "shows"}, {"URI": "http://dbpedia.org/ontology/company", "surface form": "company"}, {"URI": "http://dbpedia.org/ontology/successor", "surface form": " successor"}]}, {"id": "1194", "question": [{"language": "en", "string": "How many shows are made by the channel whose predecessor was the Comedy Channel?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/predecessor> <http://dbpedia.org/resource/The_Comedy_Channel_(United_States)> . ?uri <http://dbpedia.org/property/network> ?x . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/The_Comedy_Channel_(United_States)", "surface form": "the Comedy Channel"}], "relations": [{"URI": "http://dbpedia.org/ontology/place", "surface form": "shows"}, {"URI": "http://dbpedia.org/ontology/channel", "surface form": "channel"}, {"URI": "http://dbpedia.org/ontology/predecessor", "surface form": "predecessor"}]}, {"id": "1195", "question": [{"language": "en", "string": "List of people who were the first one to ascend a mountain in the Cathedral range?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/mountainRange> <http://dbpedia.org/resource/Cathedral_Range> . ?x <http://dbpedia.org/ontology/firstAscentPerson> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Mountain>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fran\u00e7ois_E._Matthes"}}, "entities": [{"URI": "http://dbpedia.org/resource/Cathedral_Range", "surface form": "Cathedral range"}], "relations": [{"URI": "http://dbpedia.org/property/top", "surface form": "ascend"}, {"URI": "http://dbpedia.org/ontology/elevation", "surface form": "mountain"}]}, {"id": "1196", "question": [{"language": "en", "string": "Who has written the mary poppins musical?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Mary_Poppins_(musical)> <http://dbpedia.org/ontology/author> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Julian_Fellowes"}}, "entities": [{"URI": "http://dbpedia.org/resource/Mary_Poppins_(film)", "surface form": "mary poppins musical"}], "relations": [{"URI": "http://dbpedia.org/ontology/author", "surface form": "written"}]}, {"id": "1197", "question": [{"language": "en", "string": "Which newspaper is owned by people living in Oslo?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/location> <http://dbpedia.org/resource/Oslo> . ?uri <http://dbpedia.org/property/owners> ?x . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Morgenbladet"}}, "entities": [{"URI": "http://dbpedia.org/resource/Oslo", "surface form": "Oslo"}], "relations": [{"URI": "http://dbpedia.org/property/journal", "surface form": "newspaper"}, {"URI": "http://dbpedia.org/ontology/owner", "surface form": "owned"}, {"URI": "http://dbpedia.org/ontology/person", "surface form": "living"}]}, {"id": "1198", "question": [{"language": "en", "string": "Who made the engine whose predecessor is the SHO V6?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/predecessor> <http://dbpedia.org/resource/Ford_SHO_V6_engine> . ?x <http://dbpedia.org/ontology/manufacturer> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Engine>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ford_Motor_Company"}}, "entities": [{"URI": "http://dbpedia.org/resource/Sho", "surface form": "SHO"}, {"URI": "http://dbpedia.org/resource/V6_engine", "surface form": "V6"}, {"URI": "http://dbpedia.org/resource/V6_engine", "surface form": "V6"}, {"URI": "http://dbpedia.org/resource/Sho", "surface form": "SHO"}], "relations": [{"URI": "http://dbpedia.org/ontology/engine", "surface form": "engine"}, {"URI": "http://dbpedia.org/ontology/predecessor", "surface form": "predecessor"}]}, {"id": "1199", "question": [{"language": "en", "string": "For how many different teams have Ontarians been drafted ?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/placeOfBirth> <http://dbpedia.org/resource/Ontario> . ?x <http://dbpedia.org/ontology/draftTeam> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/Ontario", "surface form": "Ontaria"}], "relations": [{"URI": "http://dbpedia.org/ontology/numberOfTeams", "surface form": "teams"}, {"URI": "http://dbpedia.org/ontology/draft", "surface form": "drafted"}]}, {"id": "1200", "question": [{"language": "en", "string": "Name the university of Alexandre Tichonov ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Alexandre_Tichonov> <http://dbpedia.org/property/university> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Moscow"}}, "entities": [{"URI": "http://dbpedia.org/resource/Alexandre_Tichonov", "surface form": "Alexandre Tichonov"}], "relations": [{"URI": "http://dbpedia.org/property/name", "surface form": "name"}, {"URI": "http://dbpedia.org/ontology/university", "surface form": "university"}]}, {"id": "1201", "question": [{"language": "en", "string": "Over how many cities did the Bellaton MMA, Season 11 take place?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { <http://dbpedia.org/resource/Bellator_MMA:_Season_Eleven> <http://dbpedia.org/property/city> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/MMA_Live", "surface form": "MMA,"}, {"URI": "http://dbpedia.org/resource/NCIS_(season_11)", "surface form": "Bellaton Season 11"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": "cities"}, {"URI": "http://dbpedia.org/ontology/place", "surface form": "place"}]}, {"id": "1202", "question": [{"language": "en", "string": "Whose academic advisor works at the St George's Hospital?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/workInstitutions> <http://dbpedia.org/resource/St_George's_Hospital> . ?uri <http://dbpedia.org/ontology/academicAdvisor> ?x . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Edward_Jenner"}}, "entities": [{"URI": "http://dbpedia.org/resource/St_George's_Hospital", "surface form": "St George's Hospital"}], "relations": [{"URI": "http://dbpedia.org/ontology/abstract", "surface form": "academic advisor"}, {"URI": "http://dbpedia.org/ontology/language", "surface form": "works"}]}, {"id": "1203", "question": [{"language": "en", "string": "Count the number of people who graduated from universities affiliated with the NCAA."}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/athletics> <http://dbpedia.org/resource/National_Collegiate_Athletic_Association> . ?uri <http://dbpedia.org/property/education> ?x . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Person>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/Universities_South_Africa", "surface form": "universities"}, {"URI": "http://dbpedia.org/resource/National_Collegiate_Athletic_Association_(Philippines)", "surface form": "NCAA"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": "count"}, {"URI": "http://dbpedia.org/ontology/effectiveRadiatedPower", "surface form": "graduated"}, {"URI": "http://dbpedia.org/ontology/league", "surface form": "affiliated"}]}, {"id": "1204", "question": [{"language": "en", "string": "How many characters were made by Paul Dini?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE {?uri <http://dbpedia.org/property/creators> <http://dbpedia.org/resource/Paul_Dini> . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "15"}}, "entities": [{"URI": "http://dbpedia.org/resource/Paul_Dini", "surface form": "Paul Dini"}], "relations": [{"URI": "http://dbpedia.org/property/creators", "surface form": "made by"}]}, {"id": "1205", "question": [{"language": "en", "string": "How many molluscas are there whose families are Buccinidae and Buccinoidea?"}], "query": {"sparql": " SELECT DISTINCT COUNT(?uri) WHERE { ?uri <http://dbpedia.org/ontology/family> <http://dbpedia.org/resource/Buccinidae> . ?uri <http://dbpedia.org/ontology/family> <http://dbpedia.org/resource/Buccinoidea>} "}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "282"}}, "entities": [{"URI": "http://dbpedia.org/resource/Mollusca", "surface form": "Molluscas"}, {"URI": "http://dbpedia.org/resource/Buccinidae", "surface form": "Buccinidae and Buccinoidea"}], "relations": [{"URI": "http://dbpedia.org/ontology/established", "surface form": "families"}]}, {"id": "1206", "question": [{"language": "en", "string": "List the newspapers which has headquarters in Stockholm?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/headquarters> <http://dbpedia.org/resource/Stockholm> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Newspaper>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dagens_Nyheter"}}, "entities": [{"URI": "http://dbpedia.org/resource/Stockholm", "surface form": "Stockholm"}], "relations": [{"URI": "http://dbpedia.org/ontology/title", "surface form": "newspapers"}, {"URI": "http://dbpedia.org/ontology/headquarter", "surface form": "headquarters"}]}, {"id": "1207", "question": [{"language": "en", "string": "what are some players of England national football team?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/nationalteam> <http://dbpedia.org/resource/England_national_football_team> } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Allan_Clarke_(footballer)"}}, "entities": [{"URI": "http://dbpedia.org/resource/England_national_football_team", "surface form": "England national football team"}], "relations": [{"URI": "http://dbpedia.org/property/nationalteam", "surface form": "national team"}]}, {"id": "1208", "question": [{"language": "en", "string": "Which genre of books does the writer of The Many Hands write?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/The_Many_Hands> <http://dbpedia.org/property/author> ?x . ?x <http://dbpedia.org/ontology/genre> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Social_realism"}}, "entities": [{"URI": "http://dbpedia.org/resource/The_Many_Hands", "surface form": "The Many Hands"}], "relations": [{"URI": "http://dbpedia.org/ontology/genre", "surface form": "genre"}, {"URI": "http://dbpedia.org/ontology/volume", "surface form": "books"}, {"URI": "http://dbpedia.org/ontology/writer", "surface form": "writer"}, {"URI": "http://dbpedia.org/ontology/abstract", "surface form": "write"}]}, {"id": "1209", "question": [{"language": "en", "string": "Where did Aghasalim Childagh die?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Aghasalim_Childagh> <http://dbpedia.org/property/deathDate> ?uri } "}, "answers": {"uri": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#date", "value": "2008-04-08"}}, "entities": [{"URI": "http://dbpedia.org/resource/Aghasalim_Childagh", "surface form": "Aghasalim Childagh"}], "relations": [{"URI": "http://dbpedia.org/ontology/deathDate", "surface form": "die"}]}, {"id": "1210", "question": [{"language": "en", "string": "Give me a count of airlines whose hub airport is Los Angeles International Airport?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE {?uri <http://dbpedia.org/ontology/hubAirport> <http://dbpedia.org/resource/Los_Angeles_International_Airport> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Airline>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "24"}}, "entities": [{"URI": "http://dbpedia.org/resource/Los_Angeles_International_Airport", "surface form": "Los Angeles International Airport"}], "relations": [{"URI": "http://dbpedia.org/ontology/hubAirport", "surface form": "hub airport"}, {"URI": "http://dbpedia.org/ontology/Airline", "surface form": "airline"}]}, {"id": "1211", "question": [{"language": "en", "string": "Where is the successor of john waldo from?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/successor> <http://dbpedia.org/resource/John_B._Waldo> . ?x <http://dbpedia.org/property/state> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Oregon"}}, "entities": [{"URI": "http://dbpedia.org/resource/John_B._Waldo", "surface form": "john waldo"}], "relations": [{"URI": "http://dbpedia.org/ontology/successor", "surface form": "successor"}]}, {"id": "1212", "question": [{"language": "en", "string": "How many awards have screenwriters won?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/occupation> <http://dbpedia.org/resource/Screenwriter> . ?x <http://dbpedia.org/ontology/award> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "545"}}, "entities": [{"URI": "http://dbpedia.org/resource/Screenwriter", "surface form": "screenwriters"}], "relations": [{"URI": "http://dbpedia.org/ontology/award", "surface form": "awards"}, {"URI": "http://dbpedia.org/ontology/award", "surface form": "won"}]}, {"id": "1213", "question": [{"language": "en", "string": "What are the houses of the Parliament Security Services and Parliament of India ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Parliament_Security_Services> <http://dbpedia.org/property/houses> ?uri. <http://dbpedia.org/resource/Parliament_of_India> <http://dbpedia.org/property/houses> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rajya_Sabha"}}, "entities": [{"URI": "http://dbpedia.org/resource/Parliament_Security_Services", "surface form": "Parliament Security Services"}, {"URI": "http://dbpedia.org/resource/Parliament_of_India", "surface form": "Parliament of India"}], "relations": [{"URI": "http://dbpedia.org/property/houses", "surface form": "houses"}, {"URI": "http://dbpedia.org/property/houses", "surface form": "houses"}]}, {"id": "1214", "question": [{"language": "en", "string": "How many owners are there of things located in Alabama?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/city> <http://dbpedia.org/resource/Alabama> . ?x <http://dbpedia.org/ontology/owner> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "13"}}, "entities": [{"URI": "http://dbpedia.org/resource/Alabama", "surface form": "Alabama"}], "relations": [{"URI": "http://dbpedia.org/ontology/city", "surface form": "in"}, {"URI": "http://dbpedia.org/ontology/owner", "surface form": "owners"}]}, {"id": "1215", "question": [{"language": "en", "string": "Which writer of A literary Nightmare also extended the work of The Apple tree ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/The_Apple_Tree> <http://dbpedia.org/ontology/basedOn> ?uri. <http://dbpedia.org/resource/A_Literary_Nightmare> <http://dbpedia.org/ontology/author> ?uri} "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mark_Twain"}}, "entities": [{"URI": "http://dbpedia.org/resource/A", "surface form": "A"}, {"URI": "http://dbpedia.org/resource/A_Literary_Nightmare", "surface form": "literary Nightmare"}, {"URI": "http://dbpedia.org/resource/The_Apple_Tree", "surface form": "The Apple tree"}], "relations": [{"URI": "http://dbpedia.org/ontology/writer", "surface form": "writer"}, {"URI": "http://dbpedia.org/ontology/languageFamily", "surface form": "extended"}, {"URI": "http://dbpedia.org/property/book", "surface form": "work"}]}, {"id": "1216", "question": [{"language": "en", "string": "Who collaborated with Johnny Cash and Kris Kristofferson ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/associatedActs> <http://dbpedia.org/resource/Johnny_Cash> . ?uri <http://dbpedia.org/property/associatedActs> <http://dbpedia.org/resource/Kris_Kristofferson> . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Norman_Blake_(American_musician)"}}, "entities": [{"URI": "http://dbpedia.org/resource/Johnny_Cash", "surface form": "Johnny Cash"}, {"URI": "http://dbpedia.org/resource/Kris_Kristofferson", "surface form": "Kris Kristofferson"}], "relations": [{"URI": "http://dbpedia.org/ontology/band", "surface form": "collaborated"}]}, {"id": "1217", "question": [{"language": "en", "string": "What is the television show whose opening theme is Where Everybody Knows Your Name?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/openingTheme> <http://dbpedia.org/resource/Where_Everybody_Knows_Your_Name> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cheers"}}, "entities": [{"URI": "http://dbpedia.org/resource/Where_Everybody_Knows_Your_Name", "surface form": "Where Everybody"}, {"URI": "http://dbpedia.org/resource/Your_Name", "surface form": "Your Name"}], "relations": [{"URI": "http://dbpedia.org/ontology/transmission", "surface form": "television show"}, {"URI": "http://dbpedia.org/ontology/openingTheme", "surface form": "theme"}, {"URI": "http://dbpedia.org/property/knows", "surface form": "Knows"}]}, {"id": "1218", "question": [{"language": "en", "string": "How many companies were founded in Denton, texas?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/part> <http://dbpedia.org/resource/Denton_County,_Texas> . ?uri <http://dbpedia.org/ontology/foundationPlace> ?x . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Company>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/Denton_County,_Texas", "surface form": "Denton, texas"}], "relations": [{"URI": "http://dbpedia.org/ontology/foundingYear", "surface form": "founded"}]}, {"id": "1219", "question": [{"language": "en", "string": "Where are the shrines of the saints who were beatified by Pope Pius XI?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/beatifiedBy> <http://dbpedia.org/resource/Pope_Pius_XI> . ?x <http://dbpedia.org/ontology/majorShrine> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Saint>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Espace_Bernadette_Soubirous_Nevers"}}, "entities": [{"URI": "http://dbpedia.org/resource/Pope_Pius_XI", "surface form": "Pope Pius XI"}], "relations": [{"URI": "http://dbpedia.org/ontology/chain", "surface form": "shrines"}, {"URI": "http://dbpedia.org/ontology/saint", "surface form": "saints"}, {"URI": "http://dbpedia.org/property/beatifiedBy", "surface form": "beatified"}]}, {"id": "1220", "question": [{"language": "en", "string": "Foxy Brown was associated with which band?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/associatedBand> <http://dbpedia.org/resource/Foxy_Brown_(rapper)> } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Amerie"}}, "entities": [{"URI": "http://dbpedia.org/resource/Foxy_Brown_(rapper)", "surface form": "Foxy Brown"}], "relations": [{"URI": "http://dbpedia.org/ontology/associatedBand", "surface form": "associated"}, {"URI": "http://dbpedia.org/ontology/band", "surface form": "band"}]}, {"id": "1221", "question": [{"language": "en", "string": "Of how many battles is Chickasaw Campaign of 1736 consisted?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Chickasaw_Campaign_of_1736> <http://dbpedia.org/property/combatant> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/France"}}, "entities": [{"URI": "http://dbpedia.org/resource/Chickasaw_Campaign_of_1736", "surface form": "Chickasaw Campaign of 1736 "}], "relations": [{"URI": "http://dbpedia.org/ontology/combatant", "surface form": "battles"}, {"URI": "http://dbpedia.org/property/convicted", "surface form": "consisted"}]}, {"id": "1222", "question": [{"language": "en", "string": "What kind of things are on the radio stations affiliated with the Baltimore Ravens?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/affiliations> <http://dbpedia.org/resource/Baltimore_Ravens> . ?x <http://dbpedia.org/ontology/programmeFormat> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/RadioStation>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sports_radio"}}, "entities": [{"URI": "http://dbpedia.org/resource/Baltimore_Ravens", "surface form": "Baltimore Ravens"}], "relations": [{"URI": "http://dbpedia.org/property/stations", "surface form": "radio stations"}, {"URI": "http://dbpedia.org/ontology/related", "surface form": "affiliated"}]}, {"id": "1223", "question": [{"language": "en", "string": "Of what all has David Ian Salter been an editor of?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/editing> <http://dbpedia.org/resource/David_Ian_Salter> } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Addams_Family_(2019_film)"}}, "entities": [{"URI": "http://dbpedia.org/resource/David_Ian_Salter", "surface form": "David Ian Salter"}], "relations": [{"URI": "http://dbpedia.org/ontology/editing", "surface form": "editor"}]}, {"id": "1224", "question": [{"language": "en", "string": "How many "}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE {?uri <http://dbpedia.org/property/team> <http://dbpedia.org/resource/Chicago_Bulls> . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "462"}}, "entities": [], "relations": []}, {"id": "1225", "question": [{"language": "en", "string": "Name the river whose mouth mountain is Essex and river mouth is North Sea?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/mouthMountain> <http://dbpedia.org/resource/Essex> . ?uri <http://dbpedia.org/ontology/riverMouth> <http://dbpedia.org/resource/North_Sea> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/River>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/River_Thames"}}, "entities": [{"URI": "http://dbpedia.org/resource/Essex", "surface form": "Essex"}, {"URI": "http://dbpedia.org/resource/North_Sea", "surface form": "North Sea"}], "relations": [{"URI": "http://dbpedia.org/property/name", "surface form": "name"}, {"URI": "http://dbpedia.org/ontology/river", "surface form": "river"}, {"URI": "http://dbpedia.org/ontology/elevation", "surface form": "mouth mountain"}, {"URI": "http://dbpedia.org/ontology/mouthMountain", "surface form": "river mouth"}]}, {"id": "1226", "question": [{"language": "en", "string": "In how many countries do the rivers start which end at the Caspian Sea?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/riverMouth> <http://dbpedia.org/resource/Caspian_Sea> . ?x <http://dbpedia.org/ontology/sourceCountry> ?uri . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Country>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/Countries_of_the_United_Kingdom", "surface form": "countries"}, {"URI": "http://dbpedia.org/resource/Caspian_Sea", "surface form": "Caspian Sea"}], "relations": [{"URI": "http://dbpedia.org/ontology/riverMouth", "surface form": "rivers"}, {"URI": "http://dbpedia.org/ontology/origin", "surface form": "start"}, {"URI": "http://dbpedia.org/ontology/purpose", "surface form": "end"}]}, {"id": "1227", "question": [{"language": "en", "string": "What award has been given to Roy Walker as well as Walt Disney?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Roy_Walker_(production_designer)> <http://dbpedia.org/ontology/award> ?uri. <http://dbpedia.org/resource/Walt_Disney> <http://dbpedia.org/ontology/award> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Academy_Awards"}}, "entities": [{"URI": "http://dbpedia.org/resource/Roy_Walker_(production_designer)", "surface form": "Roy Walker"}, {"URI": "http://dbpedia.org/resource/Walt_Disney", "surface form": "Walt Disney"}], "relations": [{"URI": "http://dbpedia.org/ontology/award", "surface form": "award"}]}, {"id": "1228", "question": [{"language": "en", "string": "Give the total number of places to which airlines go, who also go to Glasgow?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/targetAirport> <http://dbpedia.org/resource/Glasgow_Airport> . ?x <http://dbpedia.org/property/destinations> ?uri . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Place>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "8"}}, "entities": [{"URI": "http://dbpedia.org/resource/Glasgow_Airport", "surface form": "Glasgow"}], "relations": [{"URI": "http://dbpedia.org/ontology/populationTotal", "surface form": "total"}, {"URI": "http://dbpedia.org/ontology/position", "surface form": "places"}, {"URI": "http://dbpedia.org/ontology/part", "surface form": "airlines go,"}]}, {"id": "1229", "question": [{"language": "en", "string": "What is the death place of the Marina Pankova and Viktor Ulyanich?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Marina_Pankova> <http://dbpedia.org/ontology/deathPlace> ?uri. <http://dbpedia.org/resource/Viktor_Ulyanich> <http://dbpedia.org/ontology/deathPlace> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Moscow"}}, "entities": [{"URI": "http://dbpedia.org/resource/Marina_Pankova", "surface form": "Marina Pankova"}, {"URI": "http://dbpedia.org/resource/Viktor_Ulyanich", "surface form": "Viktor Ulyanich"}], "relations": [{"URI": "http://dbpedia.org/ontology/deathPlace", "surface form": "death place"}]}, {"id": "1230", "question": [{"language": "en", "string": "Who was the PM under which William Deane served?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/William_Deane> <http://dbpedia.org/ontology/primeMinister> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/John_Howard"}}, "entities": [{"URI": "http://dbpedia.org/resource/PM", "surface form": "PM"}, {"URI": "http://dbpedia.org/resource/William_Deane", "surface form": "under which William Deane"}], "relations": [{"URI": "http://dbpedia.org/ontology/primeMinister", "surface form": "PM"}]}, {"id": "1231", "question": [{"language": "en", "string": "What products are made by Tehran based companies?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/location> <http://dbpedia.org/resource/Tehran> . ?x <http://dbpedia.org/ontology/product> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Company>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mergers_and_acquisitions"}}, "entities": [{"URI": "http://dbpedia.org/resource/Tehran", "surface form": "Tehran"}, {"URI": "http://dbpedia.org/resource/Companies_listed_on_the_New_York_Stock_Exchange_(J)", "surface form": "companies"}], "relations": [{"URI": "http://dbpedia.org/property/products", "surface form": "products"}, {"URI": "http://dbpedia.org/property/based", "surface form": "based"}]}, {"id": "1232", "question": [{"language": "en", "string": "Count number of people who follow a religion which has an important office in Gold Base ?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/headquarters> <http://dbpedia.org/resource/Gold_Base> . ?uri <http://dbpedia.org/ontology/religion> ?x . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Person>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/Gold_Base", "surface form": "Gold Base"}], "relations": [{"URI": "http://dbpedia.org/ontology/type", "surface form": "count"}, {"URI": "http://dbpedia.org/ontology/course", "surface form": "follow"}, {"URI": "http://dbpedia.org/ontology/religion", "surface form": "religion"}, {"URI": "http://dbpedia.org/ontology/office", "surface form": "office"}]}, {"id": "1233", "question": [{"language": "en", "string": "In which areas can we find the networks owned by the govt of Mauritius?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/owningCompany> <http://dbpedia.org/resource/Government_of_Mauritius> . ?x <http://dbpedia.org/property/broadcastArea> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/BroadcastNetwork>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mauritius"}}, "entities": [{"URI": "http://dbpedia.org/resource/Government_of_Mauritius", "surface form": "Mauritius"}], "relations": [{"URI": "http://dbpedia.org/ontology/network", "surface form": "networks"}, {"URI": "http://dbpedia.org/ontology/owner", "surface form": "owned"}]}, {"id": "1234", "question": [{"language": "en", "string": "What is the city nearest to the historic place whose architect is Joseph Dion?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/architect> <http://dbpedia.org/resource/Joseph_Dion> . ?x <http://dbpedia.org/ontology/nearestCity> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/HistoricPlace>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Arapahoe_County,_Colorado"}}, "entities": [{"URI": "http://dbpedia.org/resource/Joseph_Dion", "surface form": "Joseph Dion"}], "relations": [{"URI": "http://dbpedia.org/ontology/locationCity", "surface form": "city nearest"}, {"URI": "http://dbpedia.org/ontology/position", "surface form": "historic place"}, {"URI": "http://dbpedia.org/ontology/architect", "surface form": "architect"}]}, {"id": "1235", "question": [{"language": "en", "string": "Who is the father of Edith Vonnegut and is also a writer?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/child> <http://dbpedia.org/resource/Edith_Vonnegut> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Writer>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kurt_Vonnegut"}}, "entities": [{"URI": "http://dbpedia.org/resource/Kurt_Vonnegut", "surface form": "Edith Vonnegut"}], "relations": [{"URI": "http://dbpedia.org/ontology/child", "surface form": "father"}]}, {"id": "1236", "question": [{"language": "en", "string": "How many basketball players studied in the Midland College?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE {?uri <http://dbpedia.org/ontology/college> <http://dbpedia.org/resource/Midland_College> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/BasketballPlayer>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "24"}}, "entities": [{"URI": "http://dbpedia.org/resource/National_Basketball_Players_Association", "surface form": "basketball players"}, {"URI": "http://dbpedia.org/resource/Midland_College", "surface form": "Midland College"}], "relations": [{"URI": "http://dbpedia.org/ontology/college", "surface form": "College"}, {"URI": "http://dbpedia.org/ontology/BasketballPlayer", "surface form": "basketball player"}]}, {"id": "1237", "question": [{"language": "en", "string": "List all the collaborators of the artist which has collaborated with sanremo Music Festival ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/associatedMusicalArtist> <http://dbpedia.org/resource/Sanremo_Music_Festival> . ?x <http://dbpedia.org/ontology/associatedMusicalArtist> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Artist>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Al_Bano_and_Romina_Power"}}, "entities": [{"URI": "http://dbpedia.org/resource/Sanremo_Music_Festival", "surface form": "sanremo Music Festival"}], "relations": [{"URI": "http://dbpedia.org/ontology/associate", "surface form": "collaborators"}, {"URI": "http://dbpedia.org/ontology/artist", "surface form": "artist"}, {"URI": "http://dbpedia.org/ontology/band", "surface form": "collaborated"}]}, {"id": "1238", "question": [{"language": "en", "string": "Which actors have performed in plays performed in New York?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/place> <http://dbpedia.org/resource/New_York_City> . ?x <http://dbpedia.org/property/starring> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Play>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Adrian_Grenier"}}, "entities": [{"URI": "http://dbpedia.org/resource/New_York", "surface form": "New York"}], "relations": [{"URI": "http://dbpedia.org/ontology/award", "surface form": "actors"}, {"URI": "http://dbpedia.org/ontology/artist", "surface form": "performed"}, {"URI": "http://dbpedia.org/ontology/plays", "surface form": "plays"}, {"URI": "http://dbpedia.org/ontology/artist", "surface form": "performed"}]}, {"id": "1239", "question": [{"language": "en", "string": "Who is the editor of Hearth and Home ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Hearth_and_Home> <http://dbpedia.org/ontology/editor> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Harriet_Beecher_Stowe"}}, "entities": [{"URI": "http://dbpedia.org/resource/Hearth_and_Home", "surface form": "Hearth and Home"}], "relations": [{"URI": "http://dbpedia.org/ontology/editor", "surface form": "editor"}]}, {"id": "1240", "question": [{"language": "en", "string": "List the books by the authors buried in the Convent of the Barefoot Trinitarians?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/restingPlace> <http://dbpedia.org/resource/Convent_of_the_Barefoot_Trinitarians> . ?uri <http://dbpedia.org/ontology/author> ?x . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Book>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/La_Galatea"}}, "entities": [{"URI": "http://dbpedia.org/resource/Convent_of_the_Barefoot_Trinitarians", "surface form": "Convent of the Barefoot Trinitarians"}], "relations": [{"URI": "http://dbpedia.org/ontology/restingPlace", "surface form": "buried"}, {"URI": "http://dbpedia.org/ontology/author", "surface form": "authors"}]}, {"id": "1241", "question": [{"language": "en", "string": "How many game series exist for iOS?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/computingPlatform> <http://dbpedia.org/resource/IOS> . ?x <http://dbpedia.org/ontology/series> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "631"}}, "entities": [{"URI": "http://dbpedia.org/resource/IOS", "surface form": "iOS"}], "relations": [{"URI": "http://dbpedia.org/property/target", "surface form": "game series"}, {"URI": "http://dbpedia.org/property/last", "surface form": "exist"}]}, {"id": "1242", "question": [{"language": "en", "string": "Which awards did the creator of A Barrel of Laughs, a Vale of Tears won ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/A_Barrel_of_Laughs,_a_Vale_of_Tears> <http://dbpedia.org/ontology/author> ?x . ?x <http://dbpedia.org/ontology/award> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/ComicsCreator>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/List_of_Eisner_Award_winners"}}, "entities": [{"URI": "http://dbpedia.org/resource/A", "surface form": "A"}, {"URI": "http://dbpedia.org/resource/A_Barrel_of_Laughs,_a_Vale_of_Tears", "surface form": "Barrel of Laughs,"}, {"URI": "http://dbpedia.org/resource/Vale_of_tears", "surface form": "Vale of Tears"}], "relations": [{"URI": "http://dbpedia.org/ontology/budget", "surface form": "awards"}, {"URI": "http://dbpedia.org/property/producer", "surface form": "creator"}, {"URI": "http://dbpedia.org/ontology/award", "surface form": "won"}]}, {"id": "1243", "question": [{"language": "en", "string": "In how many different places were the people born who are members of National Museum of Racing and Hall of Fame?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/honours> <http://dbpedia.org/resource/National_Museum_of_Racing_and_Hall_of_Fame> . ?x <http://dbpedia.org/property/birthPlace> ?uri . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Place>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "118"}}, "entities": [{"URI": "http://dbpedia.org/resource/National_Museum_of_Racing_and_Hall_of_Fame", "surface form": " National Museum of Racing and Hall of Fame"}], "relations": [{"URI": "http://dbpedia.org/ontology/district", "surface form": "places"}, {"URI": "http://dbpedia.org/ontology/river", "surface form": "born"}, {"URI": "http://dbpedia.org/ontology/membership", "surface form": "members"}]}, {"id": "1244", "question": [{"language": "en", "string": "Which hockey teams have had people playing as Defenceman?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/position> <http://dbpedia.org/resource/Defenceman> . ?x <http://dbpedia.org/property/playedFor> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/IceHockeyPlayer>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Quebec_Nordiques"}}, "entities": [{"URI": "http://dbpedia.org/resource/Defenceman", "surface form": "Defenceman"}], "relations": [{"URI": "http://dbpedia.org/ontology/jockey", "surface form": "hockey"}, {"URI": "http://dbpedia.org/ontology/numberOfTeams", "surface form": "teams"}, {"URI": "http://dbpedia.org/ontology/field", "surface form": "playing"}]}, {"id": "1245", "question": [{"language": "en", "string": "which president was served by Joseph Stiglitz?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Joseph_Stiglitz> <http://dbpedia.org/property/president> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/James_Wolfensohn"}}, "entities": [{"URI": "http://dbpedia.org/resource/Joseph_Stiglitz", "surface form": "Joseph Stiglitz"}], "relations": [{"URI": "http://dbpedia.org/ontology/president", "surface form": "president"}, {"URI": "http://dbpedia.org/ontology/regionServed", "surface form": "served"}]}, {"id": "1246", "question": [{"language": "en", "string": "Name the people whose residence is Beverly Hills, California?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/residence> <http://dbpedia.org/resource/Beverly_Hills,_California> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Person>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Naomi_Osaka"}}, "entities": [{"URI": "http://dbpedia.org/resource/Beverly_Hills,_California", "surface form": "Beverly Hills, California"}], "relations": [{"URI": "http://dbpedia.org/property/name", "surface form": "name"}, {"URI": "http://dbpedia.org/ontology/residence", "surface form": "residence"}]}, {"id": "1247", "question": [{"language": "en", "string": "What product is made by Sony and Foxconn togather?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/manufacturer> <http://dbpedia.org/resource/Sony> . ?uri <http://dbpedia.org/ontology/manufacturer> <http://dbpedia.org/resource/Foxconn> . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/PlayStation_3"}}, "entities": [{"URI": "http://dbpedia.org/resource/Sony", "surface form": "Sony"}, {"URI": "http://dbpedia.org/resource/Foxconn", "surface form": "Foxconn togather"}], "relations": [{"URI": "http://dbpedia.org/ontology/manufacturer", "surface form": "made by"}, {"URI": "http://dbpedia.org/ontology/manufacturer", "surface form": "made by"}]}, {"id": "1248", "question": [{"language": "en", "string": "Which city has radio stations which are Religious ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/format> <http://dbpedia.org/resource/Religion> . ?x <http://dbpedia.org/property/city> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/RadioStation>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nashville,_Tennessee"}}, "entities": [{"URI": "http://dbpedia.org/resource/Religion", "surface form": "Religiou"}], "relations": [{"URI": "http://dbpedia.org/ontology/city", "surface form": "city"}, {"URI": "http://dbpedia.org/ontology/numberOfStations", "surface form": "radio stations"}]}, {"id": "1249", "question": [{"language": "en", "string": "Who operates the Ganz UV?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Ganz_UV> <http://dbpedia.org/ontology/operator> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Budapest"}}, "entities": [{"URI": "http://dbpedia.org/resource/Ganz_UV", "surface form": "UV"}, {"URI": "http://dbpedia.org/resource/Nancy_Ganz", "surface form": "Ganz"}], "relations": [{"URI": "http://dbpedia.org/ontology/operator", "surface form": "operates"}]}, {"id": "1250", "question": [{"language": "en", "string": "What is the state of Umatilla language which is also the state of James K. Kelly ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/James_K._Kelly> <http://dbpedia.org/property/state> ?uri. <http://dbpedia.org/resource/Umatilla_language> <http://dbpedia.org/property/region> ?uri} "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Oregon"}}, "entities": [{"URI": "http://dbpedia.org/resource/Umatilla_language", "surface form": "Umatilla language"}, {"URI": "http://dbpedia.org/resource/K", "surface form": "K"}, {"URI": "http://dbpedia.org/resource/616_Elly", "surface form": "James elly"}], "relations": []}, {"id": "1251", "question": [{"language": "en", "string": "Where has GARAGE recorded its singles?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/producer> <http://dbpedia.org/resource/Garbage_(band)> . ?x <http://dbpedia.org/ontology/recordedIn> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Single>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Smart_Studios"}}, "entities": [{"URI": "http://dbpedia.org/resource/Garbage_(band)", "surface form": "GARAGE"}], "relations": [{"URI": "http://dbpedia.org/ontology/background", "surface form": "recorded"}, {"URI": "http://dbpedia.org/ontology/slogan", "surface form": "singles"}]}, {"id": "1252", "question": [{"language": "en", "string": "How many players participated in the 2004-05 FC Barcelona season?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { <http://dbpedia.org/resource/2004\u201305_FC_Barcelona_season> <http://dbpedia.org/property/name> ?uri . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/SoccerPlayer>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "28"}}, "entities": [{"URI": "http://dbpedia.org/resource/FC", "surface form": "FC"}, {"URI": "http://dbpedia.org/resource/2004\u201305_FC_Barcelona_season", "surface form": "2004-05 Barcelona season"}], "relations": [{"URI": "http://dbpedia.org/ontology/participant", "surface form": "players"}, {"URI": "http://dbpedia.org/ontology/participant", "surface form": "participated"}]}, {"id": "1253", "question": [{"language": "en", "string": "Whose mam is Bertrada of Laon?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/mother> <http://dbpedia.org/resource/Bertrada_of_Laon> } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Charlemagne"}}, "entities": [{"URI": "http://dbpedia.org/resource/Bertrada_of_Laon", "surface form": "Bertrada of Laon"}], "relations": [{"URI": "http://dbpedia.org/property/mother", "surface form": "mam"}]}, {"id": "1254", "question": [{"language": "en", "string": "Give me a list of all the people driving at pole positions in the Grand Prixes where Renault was a first team?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/firstTeam> <http://dbpedia.org/resource/Renault_in_Formula_One> . ?x <http://dbpedia.org/ontology/poleDriver> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/GrandPrix>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Damon_Hill"}}, "entities": [{"URI": "http://dbpedia.org/resource/Renault_6P", "surface form": "Grand Prixes where Renault"}], "relations": [{"URI": "http://dbpedia.org/property/power", "surface form": "driving"}, {"URI": "http://dbpedia.org/ontology/poleDriver", "surface form": "pole positions"}, {"URI": "http://dbpedia.org/ontology/team", "surface form": "team"}]}, {"id": "1255", "question": [{"language": "en", "string": "What are the non-fiction topics in the books whose authors is Terry Pratchett?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/author> <http://dbpedia.org/resource/Terry_Pratchett> . ?x <http://dbpedia.org/ontology/nonFictionSubject> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Book>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cat_behavior"}}, "entities": [{"URI": "http://dbpedia.org/resource/Terry_Pratchett", "surface form": "Terry Pratchett"}], "relations": [{"URI": "http://dbpedia.org/ontology/abstract", "surface form": "non-fiction topics"}, {"URI": "http://dbpedia.org/property/books", "surface form": "books"}, {"URI": "http://dbpedia.org/ontology/author", "surface form": "authors"}]}, {"id": "1256", "question": [{"language": "en", "string": "Which railway line goes through the stations which are a part of the North Caucasus railway?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/type> <http://dbpedia.org/resource/North_Caucasus_Railway> . ?x <http://dbpedia.org/ontology/servingRailwayLine> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Station>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Krasnodar"}}, "entities": [{"URI": "http://dbpedia.org/resource/North_Caucasus_Railway", "surface form": "North Caucasus railway"}], "relations": [{"URI": "http://dbpedia.org/ontology/servingRailwayLine", "surface form": "railway"}, {"URI": "http://dbpedia.org/ontology/place", "surface form": "stations"}]}, {"id": "1257", "question": [{"language": "en", "string": "What location country of AH141 is also the nation of malaysia Junior hockey league ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/AH141> <http://dbpedia.org/ontology/county> ?uri. <http://dbpedia.org/resource/Malaysia_Junior_Hockey_League> <http://dbpedia.org/ontology/country> ?uri} "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Malaysia"}}, "entities": [{"URI": "http://dbpedia.org/resource/AH141", "surface form": "AH141"}, {"URI": "http://dbpedia.org/resource/Malaysia_Junior_Hockey_League", "surface form": "malaysia Junior hockey league"}], "relations": [{"URI": "http://dbpedia.org/ontology/county", "surface form": "country"}, {"URI": "http://dbpedia.org/ontology/country", "surface form": "country"}]}, {"id": "1258", "question": [{"language": "en", "string": "How many artists are signed up with Celluloid Records?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE {?uri <http://dbpedia.org/property/label> <http://dbpedia.org/resource/Celluloid_Records> . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "29"}}, "entities": [{"URI": "http://dbpedia.org/resource/Celluloid_Records", "surface form": "Celluloid Records"}], "relations": [{"URI": "http://dbpedia.org/property/artist", "surface form": "artists"}, {"URI": "http://dbpedia.org/ontology/movement", "surface form": "signed"}]}, {"id": "1259", "question": [{"language": "en", "string": "Henry McDaniel's trained horses have won which awards?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/trainer> <http://dbpedia.org/resource/Henry_McDaniel_(racehorse_trainer)> . ?x <http://dbpedia.org/ontology/honours> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Horse>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Blood-Horse_magazine_List_of_the_Top_100_U.S._Racehorses_of_the_20th_Century"}}, "entities": [{"URI": "http://dbpedia.org/resource/Henry_McDaniel_(racehorse_trainer)", "surface form": "Henry McDaniel"}], "relations": [{"URI": "http://dbpedia.org/ontology/coach", "surface form": "trained"}, {"URI": "http://dbpedia.org/ontology/staff", "surface form": "horses"}, {"URI": "http://dbpedia.org/ontology/award", "surface form": "won"}, {"URI": "http://dbpedia.org/ontology/award", "surface form": "awards"}]}, {"id": "1260", "question": [{"language": "en", "string": "What were the occupations of Marcus Floyd?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Marcus_Floyd> <http://dbpedia.org/ontology/occupation> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Football_League"}}, "entities": [{"URI": "http://dbpedia.org/resource/Marcus_Floyd", "surface form": "Marcus Floyd"}], "relations": [{"URI": "http://dbpedia.org/ontology/occupation", "surface form": "occupation"}]}, {"id": "1261", "question": [{"language": "en", "string": "With whom is the institution of David Charles affiliated?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/David_Charles_(physician)> <http://dbpedia.org/property/workInstitutions> ?x . ?x <http://dbpedia.org/property/affiliation> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vanderbilt_University"}}, "entities": [{"URI": "http://dbpedia.org/resource/David_Charles_(physician)", "surface form": "David Charles"}], "relations": [{"URI": "http://dbpedia.org/ontology/institution", "surface form": "institution"}, {"URI": "http://dbpedia.org/ontology/related", "surface form": "affiliated"}]}, {"id": "1262", "question": [{"language": "en", "string": "From how many coutries do companies come, which are headquartered in the Klang Valley?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/headquarters> <http://dbpedia.org/resource/Klang_Valley> . ?x <http://dbpedia.org/property/country> ?uri . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Country>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/Klang_Valley", "surface form": "Klang Valley"}], "relations": [{"URI": "http://dbpedia.org/property/headquarters", "surface form": "headquarter"}, {"URI": "http://dbpedia.org/property/country", "surface form": "country"}]}, {"id": "1263", "question": [{"language": "en", "string": "Who is the builder of the bridge owned by Tabriz ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/owner> <http://dbpedia.org/resource/Tabriz> . ?x <http://dbpedia.org/ontology/builder> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Bridge>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/France"}}, "entities": [{"URI": "http://dbpedia.org/resource/Tabriz", "surface form": "Tabriz"}], "relations": [{"URI": "http://dbpedia.org/ontology/builder", "surface form": "builder"}, {"URI": "http://dbpedia.org/ontology/abstract", "surface form": "bridge"}, {"URI": "http://dbpedia.org/ontology/owner", "surface form": "owned"}]}, {"id": "1264", "question": [{"language": "en", "string": "Who are the golf players whose college is Arizona State Sun Devils?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/college> <http://dbpedia.org/resource/Arizona_State_Sun_Devils> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/GolfPlayer>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Anna_Nordqvist"}}, "entities": [{"URI": "http://dbpedia.org/resource/The_Golf_Players", "surface form": "golf players"}, {"URI": "http://dbpedia.org/resource/Arizona_State_Sun_Devils", "surface form": "Arizona State Sun Devils"}], "relations": [{"URI": "http://dbpedia.org/ontology/college", "surface form": "college"}, {"URI": "http://dbpedia.org/ontology/GolfPlayer", "surface form": "golf player"}]}, {"id": "1265", "question": [{"language": "en", "string": "How many local authorities manage mixed gender schools?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/gender> <http://dbpedia.org/resource/Mixed-sex_education> . ?x <http://dbpedia.org/ontology/localAuthority> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/Mixed-sex_education", "surface form": "mixed"}], "relations": [{"URI": "http://dbpedia.org/ontology/state", "surface form": "local authorities"}, {"URI": "http://dbpedia.org/ontology/head", "surface form": "manage"}]}, {"id": "1266", "question": [{"language": "en", "string": "List everything in which saxophone players have been casted."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/instrument> <http://dbpedia.org/resource/Saxophone> . ?uri <http://dbpedia.org/property/starring> ?x . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Lawrence_Welk_Show"}}, "entities": [{"URI": "http://dbpedia.org/resource/Saxophone", "surface form": "saxophone players"}], "relations": [{"URI": "http://dbpedia.org/ontology/class", "surface form": "casted"}]}, {"id": "1267", "question": [{"language": "en", "string": "In which city is Corringham railway station located?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Corringham_railway_station> <http://dbpedia.org/property/borough> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Essex"}}, "entities": [{"URI": "http://dbpedia.org/resource/Corringham_railway_station", "surface form": "Corringham railway station"}], "relations": [{"URI": "http://dbpedia.org/ontology/city", "surface form": "city"}, {"URI": "http://dbpedia.org/ontology/position", "surface form": "located"}]}, {"id": "1268", "question": [{"language": "en", "string": "Which school teams are there in schools of Arlington Heights, Illinois?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/city> <http://dbpedia.org/resource/Arlington_Heights,_Illinois> . ?x <http://dbpedia.org/property/teamName> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/School>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cardinal_(bird)"}}, "entities": [{"URI": "http://dbpedia.org/resource/Arlington_Heights,_Illinois", "surface form": "Arlington Heights, Illinois"}], "relations": [{"URI": "http://dbpedia.org/property/style", "surface form": "school teams"}, {"URI": "http://dbpedia.org/ontology/discipline", "surface form": "schools"}]}, {"id": "1269", "question": [{"language": "en", "string": "Who is the person whose opponent's father is Newman Haynes Clanton?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/parent> <http://dbpedia.org/resource/Newman_Haynes_Clanton> . ?uri <http://dbpedia.org/ontology/opponent> ?x . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Wyatt_Earp"}}, "entities": [{"URI": "http://dbpedia.org/resource/Newman_Haynes_Clanton", "surface form": "Newman Haynes Clanton"}], "relations": [{"URI": "http://dbpedia.org/ontology/person", "surface form": "person"}, {"URI": "http://dbpedia.org/ontology/opponent", "surface form": "opponent"}, {"URI": "http://dbpedia.org/ontology/parent", "surface form": " father"}]}, {"id": "1270", "question": [{"language": "en", "string": "What games are played in Protestant schools?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/schooltype> <http://dbpedia.org/resource/Protestantism> . ?x <http://dbpedia.org/ontology/sport> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/School>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tennis"}}, "entities": [{"URI": "http://dbpedia.org/resource/Doveton_Corrie_Protestant_Schools_Association", "surface form": "Protestant schools"}], "relations": [{"URI": "http://dbpedia.org/ontology/games", "surface form": "games"}, {"URI": "http://dbpedia.org/ontology/portrayer", "surface form": "played"}]}, {"id": "1271", "question": [{"language": "en", "string": "What company is the distributor of Bombay Sapphire?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Bombay_Sapphire> <http://dbpedia.org/property/distributor> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bacardi"}}, "entities": [{"URI": "http://dbpedia.org/resource/Bombay_Sapphire", "surface form": "Bombay Sapphire"}], "relations": [{"URI": "http://dbpedia.org/ontology/company", "surface form": "company"}, {"URI": "http://dbpedia.org/ontology/distributor", "surface form": "distributor"}]}, {"id": "1272", "question": [{"language": "en", "string": "Which stockholder of yale Repertory Theatre was training center of William Anthony ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/William_Anthony_(artist)> <http://dbpedia.org/ontology/training> ?uri. <http://dbpedia.org/resource/Yale_Repertory_Theatre> <http://dbpedia.org/property/owner> ?uri} "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Yale_University"}}, "entities": [{"URI": "http://dbpedia.org/resource/William_Anthony_(artist)", "surface form": "William Anthony"}, {"URI": "http://dbpedia.org/resource/Yale_Repertory_Theatre", "surface form": "yale Repertory Theatre"}], "relations": [{"URI": "http://dbpedia.org/ontology/training", "surface form": "training"}, {"URI": "http://dbpedia.org/property/owner", "surface form": "stockholder"}]}, {"id": "1273", "question": [{"language": "en", "string": "Name the common institution of the Erica Frank and Douglass North?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Erica_Frank> <http://dbpedia.org/ontology/institution> ?uri. <http://dbpedia.org/resource/Douglass_North> <http://dbpedia.org/ontology/institution> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Stanford_University"}}, "entities": [{"URI": "http://dbpedia.org/resource/Erica_Frank", "surface form": "Erica Frank"}, {"URI": "http://dbpedia.org/resource/Douglass_North", "surface form": "Douglass North"}], "relations": [{"URI": "http://dbpedia.org/property/name", "surface form": "name"}, {"URI": "http://dbpedia.org/ontology/institution", "surface form": "common institution"}]}, {"id": "1274", "question": [{"language": "en", "string": "List the ingredients of Kaszanka?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Kaszanka> <http://dbpedia.org/ontology/ingredient> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Marjoram"}}, "entities": [{"URI": "http://dbpedia.org/resource/Kaszanka", "surface form": "Kaszanka"}], "relations": [{"URI": "http://dbpedia.org/ontology/ingredient", "surface form": "ingredients"}]}, {"id": "1275", "question": [{"language": "en", "string": "List the language of Kunsten Museum of moder art Aalborg ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/KUNSTEN_Museum_of_Modern_Art_Aalborg> <http://dbpedia.org/ontology/language> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Denmark"}}, "entities": [{"URI": "http://dbpedia.org/resource/KUNSTEN_Museum_of_Modern_Art_Aalborg", "surface form": "Kunsten Museum of moder art Aalborg"}], "relations": [{"URI": "http://dbpedia.org/ontology/language", "surface form": "language"}]}, {"id": "1276", "question": [{"language": "en", "string": "Who directed the haunted house and alice in wonderland?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Alice's_Wonderland> <http://dbpedia.org/ontology/director> ?uri. <http://dbpedia.org/resource/The_Haunted_House_(1929_film)> <http://dbpedia.org/ontology/director> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Walt_Disney"}}, "entities": [{"URI": "http://dbpedia.org/resource/Wonderland", "surface form": "Wonderland"}], "relations": [{"URI": "http://dbpedia.org/ontology/director", "surface form": "directed"}, {"URI": "http://dbpedia.org/ontology/director", "surface form": "directed"}]}, {"id": "1277", "question": [{"language": "en", "string": "To which persons is Ron Cyrus a relative?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/relatives> <http://dbpedia.org/resource/Ron_Cyrus> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Person>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Brandi_Cyrus"}}, "entities": [{"URI": "http://dbpedia.org/resource/Ron_Cyrus", "surface form": "Ron Cyrus"}], "relations": [{"URI": "http://dbpedia.org/property/relatives", "surface form": "relative"}, {"URI": "http://dbpedia.org/ontology/Person", "surface form": "person"}]}, {"id": "1278", "question": [{"language": "en", "string": "How many services are there of the companies whose services is Web hosting service ?"}], "query": {"sparql": " SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/services> <http://dbpedia.org/resource/Web_hosting_service> . ?x <http://dbpedia.org/property/services> ?uri }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "38"}}, "entities": [{"URI": "http://dbpedia.org/resource/Web_hosting_service", "surface form": "Web hosting service"}], "relations": [{"URI": "http://dbpedia.org/property/services", "surface form": "services"}, {"URI": "http://dbpedia.org/property/services", "surface form": "services"}]}, {"id": "1279", "question": [{"language": "en", "string": "Which location country of Ennejma Ezzahra is also the origin of Boga ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Boga_(soft_drink)> <http://dbpedia.org/property/origin> ?uri. <http://dbpedia.org/resource/Ennejma_Ezzahra> <http://dbpedia.org/property/locationCountry> ?uri} "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tunisia"}}, "entities": [{"URI": "http://dbpedia.org/resource/Boga_(soft_drink)", "surface form": "Boga"}, {"URI": "http://dbpedia.org/resource/Ennejma_Ezzahra", "surface form": "Ennejma Ezzahra"}], "relations": [{"URI": "http://dbpedia.org/property/origin", "surface form": "origin"}, {"URI": "http://dbpedia.org/property/locationCountry", "surface form": "location country"}]}, {"id": "1280", "question": [{"language": "en", "string": "Who have been the manager of national team of Spain?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/nationalteam> <http://dbpedia.org/resource/Spain_national_football_team> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/SoccerManager>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alvarito"}}, "entities": [{"URI": "http://dbpedia.org/resource/Spain_national_football_team", "surface form": "national team of Spain"}], "relations": [{"URI": "http://dbpedia.org/property/nationalteam", "surface form": "national team"}, {"URI": "http://dbpedia.org/ontology/SoccerManager", "surface form": "manager"}]}, {"id": "1281", "question": [{"language": "en", "string": "Who is a successor of Kingship whose parents were Julius Caesar?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/parent> <http://dbpedia.org/resource/Julius_Caesar> . ?x <http://dbpedia.org/ontology/successor> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Royalty>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tiberius"}}, "entities": [{"URI": "http://dbpedia.org/resource/Kingship_and_kingdom_of_God", "surface form": "Kingship"}, {"URI": "http://dbpedia.org/resource/Julius_Caesar", "surface form": "Julius Caesar"}], "relations": [{"URI": "http://dbpedia.org/ontology/successor", "surface form": "successor"}, {"URI": "http://dbpedia.org/ontology/parent", "surface form": "parents"}]}, {"id": "1282", "question": [{"language": "en", "string": "How many organizations work for Environmentalism?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE {?uri <http://dbpedia.org/property/purpose> <http://dbpedia.org/resource/Environmentalism> . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "32"}}, "entities": [{"URI": "http://dbpedia.org/resource/Environmentalism", "surface form": "Environmentalism"}], "relations": [{"URI": "http://dbpedia.org/property/purpose", "surface form": "work"}]}, {"id": "1283", "question": [{"language": "en", "string": "Who is the predecessor of Voere ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Voere> <http://dbpedia.org/ontology/predecessor> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/West_Germany"}}, "entities": [{"URI": "http://dbpedia.org/resource/Voere", "surface form": "Voere"}], "relations": [{"URI": "http://dbpedia.org/ontology/predecessor", "surface form": "predecessor"}]}, {"id": "1284", "question": [{"language": "en", "string": "Which movies did Mark Steven edit?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/editing> <http://dbpedia.org/resource/Mark_Stevens_(film_editor)> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Freddy_vs._Jason"}}, "entities": [{"URI": "http://dbpedia.org/resource/Mark_Stevens_(film_editor)", "surface form": "Mark Steven"}], "relations": [{"URI": "http://dbpedia.org/property/editing", "surface form": "edit"}, {"URI": "http://dbpedia.org/ontology/Film", "surface form": "movie"}]}, {"id": "1285", "question": [{"language": "en", "string": "How many more teams have rented the stadium used by Raptors 905?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { <http://dbpedia.org/resource/Raptors_905> <http://dbpedia.org/property/arena> ?x . ?x <http://dbpedia.org/ontology/tenant> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Stadium>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/Raptors_905", "surface form": "Raptors 905"}], "relations": [{"URI": "http://dbpedia.org/property/team", "surface form": "teams"}, {"URI": "http://dbpedia.org/ontology/tenant", "surface form": "rented"}, {"URI": "http://dbpedia.org/ontology/stadium", "surface form": "stadium"}]}, {"id": "1286", "question": [{"language": "en", "string": "Count the wars in which people awarded with the Croix de guerre fought."}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/awards> <http://dbpedia.org/resource/Croix_de_guerre_1939\u20131945_(France)> . ?x <http://dbpedia.org/property/battles> ?uri . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/MilitaryConflict>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "146"}}, "entities": [{"URI": "http://dbpedia.org/resource/Croix_de_Guerre", "surface form": "Croix de guerre"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": "count"}, {"URI": "http://dbpedia.org/property/battles", "surface form": "wars"}, {"URI": "http://dbpedia.org/ontology/award", "surface form": "awarded"}, {"URI": "http://dbpedia.org/ontology/type", "surface form": "fought"}]}, {"id": "1287", "question": [{"language": "en", "string": "Which first driver of European Grand Prix 1993 is also finished first in 1985 Portuguese Grand Prix ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/1993_European_Grand_Prix> <http://dbpedia.org/property/firstDriver> ?uri. <http://dbpedia.org/resource/1985_Portuguese_Grand_Prix> <http://dbpedia.org/property/firstDriver> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ayrton_Senna"}}, "entities": [{"URI": "http://dbpedia.org/resource/1993_European_Grand_Prix", "surface form": "european grand prix"}, {"URI": "http://dbpedia.org/resource/1985_Portuguese_Grand_Prix", "surface form": "1985 Portuguese Grand Prix"}], "relations": [{"URI": "http://dbpedia.org/ontology/poleDriver", "surface form": "driver"}, {"URI": "http://dbpedia.org/ontology/part", "surface form": "finished"}, {"URI": "http://dbpedia.org/ontology/country", "surface form": ""}]}, {"id": "1288", "question": [{"language": "en", "string": "How many have been awarded by the Royal Society?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE {?uri <http://dbpedia.org/property/awards> <http://dbpedia.org/resource/Royal_Society> . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "9"}}, "entities": [{"URI": "http://dbpedia.org/resource/Royal_Society", "surface form": "Royal Society"}], "relations": [{"URI": "http://dbpedia.org/property/awards", "surface form": "awarded"}]}, {"id": "1289", "question": [{"language": "en", "string": "From how many different cities have people gone to the Illinois Fighting Illini men's basketball?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/college> <http://dbpedia.org/resource/Illinois_Fighting_Illini_men's_basketball> . ?x <http://dbpedia.org/property/placeOfBirth> ?uri . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Place>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/Illinois_Fighting_Illini", "surface form": "Illinois Fighting Illini men"}, {"URI": "http://dbpedia.org/resource/Basketball_TV", "surface form": " basketball"}], "relations": [{"URI": "http://dbpedia.org/ontology/city", "surface form": "cities"}]}, {"id": "1290", "question": [{"language": "en", "string": "who manufactures the SHO V8?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Ford_SHO_V8_engine> <http://dbpedia.org/ontology/manufacturer> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ford_Motor_Company"}}, "entities": [{"URI": "http://dbpedia.org/resource/Ford_SHO_V8_engine", "surface form": "sho v8"}], "relations": [{"URI": "http://dbpedia.org/ontology/manufacturer", "surface form": "manufactures"}]}, {"id": "1291", "question": [{"language": "en", "string": "What is the television show whose opening theme's album is Cheers?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/album> <http://dbpedia.org/resource/Cheers> . ?uri <http://dbpedia.org/ontology/openingTheme> ?x . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cheers"}}, "entities": [{"URI": "http://dbpedia.org/resource/Cheers", "surface form": "Cheers"}], "relations": [{"URI": "http://dbpedia.org/property/television", "surface form": "television show"}, {"URI": "http://dbpedia.org/ontology/openingTheme", "surface form": "theme"}, {"URI": "http://dbpedia.org/ontology/album", "surface form": " album"}]}, {"id": "1292", "question": [{"language": "en", "string": "What sports are played in schools in Vashi?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/city> <http://dbpedia.org/resource/Vashi> . ?x <http://dbpedia.org/ontology/sport> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/School>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Association_football"}}, "entities": [{"URI": "http://dbpedia.org/resource/Vashi", "surface form": "Vashi"}], "relations": [{"URI": "http://dbpedia.org/ontology/athletics", "surface form": "sports"}, {"URI": "http://dbpedia.org/ontology/portrayer", "surface form": "played"}, {"URI": "http://dbpedia.org/ontology/discipline", "surface form": "schools"}]}, {"id": "1293", "question": [{"language": "en", "string": "Where are the agencies headquartered at, which are under the Colorado Dept of Natural Resources?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/parentOrganisation> <http://dbpedia.org/resource/Colorado_Department_of_Natural_Resources> . ?x <http://dbpedia.org/property/headquarters> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/GovernmentAgency>}"}, "answers": {"uri": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "6060"}}, "entities": [{"URI": "http://dbpedia.org/resource/Agencies_of_the_European_Union", "surface form": "agencies"}, {"URI": "http://dbpedia.org/resource/Natural_Resources", "surface form": "Colorado Dept of Natural Resources"}], "relations": [{"URI": "http://dbpedia.org/ontology/headquarter", "surface form": "headquartered"}, {"URI": "http://dbpedia.org/ontology/service", "surface form": "at,"}]}, {"id": "1294", "question": [{"language": "en", "string": "What is the genre for the developer of Interplay Entertainment?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/developer> <http://dbpedia.org/resource/Interplay_Entertainment> . ?x <http://dbpedia.org/ontology/genre> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Interactive_fiction"}}, "entities": [{"URI": "http://dbpedia.org/resource/Interplay_Entertainment", "surface form": "Interplay Entertainment"}], "relations": [{"URI": "http://dbpedia.org/ontology/genre", "surface form": "genre"}, {"URI": "http://dbpedia.org/ontology/developer", "surface form": "developer"}]}, {"id": "1295", "question": [{"language": "en", "string": "What is the TV Show whose theme is composed by someone signed up with Prawn Song Records?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/recordLabel> <http://dbpedia.org/resource/Prawn_Song_Records> . ?uri <http://dbpedia.org/property/themeMusicComposer> ?x . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/South_Park"}}, "entities": [{"URI": "http://dbpedia.org/resource/Tv_test_pattern", "surface form": "TV"}, {"URI": "http://dbpedia.org/resource/Show", "surface form": "Show"}, {"URI": "http://dbpedia.org/resource/Prawn_Song_Records", "surface form": "Prawn Song Records"}], "relations": [{"URI": "http://dbpedia.org/ontology/openingTheme", "surface form": "theme"}, {"URI": "http://dbpedia.org/ontology/musicComposer", "surface form": "composed"}, {"URI": "http://dbpedia.org/ontology/movement", "surface form": "signed"}]}, {"id": "1296", "question": [{"language": "en", "string": "Name the team of Michael springer ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Michael_Springer> <http://dbpedia.org/property/team> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Syracuse_University"}}, "entities": [{"URI": "http://dbpedia.org/resource/Michael_Springer", "surface form": "Michael springer"}], "relations": [{"URI": "http://dbpedia.org/property/name", "surface form": "name"}, {"URI": "http://dbpedia.org/ontology/team", "surface form": "team"}]}, {"id": "1297", "question": [{"language": "en", "string": "In which television shows have Steven Moffat served as an executive producer?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/executiveProducer> <http://dbpedia.org/resource/Steven_Moffat> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Amy's_Choice_(Doctor_Who)"}}, "entities": [{"URI": "http://dbpedia.org/resource/Steven_Moffat", "surface form": "Steven Moffat"}], "relations": [{"URI": "http://dbpedia.org/ontology/executiveProducer", "surface form": "executive producer"}, {"URI": "http://dbpedia.org/ontology/TelevisionShow", "surface form": "television shows"}]}, {"id": "1298", "question": [{"language": "en", "string": "What belongs to the families of Buccinidae and Buccinoidea?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/family> <http://dbpedia.org/resource/Buccinidae> . ?uri <http://dbpedia.org/ontology/family> <http://dbpedia.org/resource/Buccinoidea> . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Aeneator_attenuatus"}}, "entities": [{"URI": "http://dbpedia.org/resource/Buccinidae", "surface form": "Buccinidae"}, {"URI": "http://dbpedia.org/resource/Buccinoidea", "surface form": "Buccinoidea"}], "relations": [{"URI": "http://dbpedia.org/ontology/family", "surface form": "families"}, {"URI": "http://dbpedia.org/ontology/family", "surface form": "families"}]}, {"id": "1299", "question": [{"language": "en", "string": "What are the broadcast areas of Mauritius Broadcasting Corporation?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Mauritius_Broadcasting_Corporation> <http://dbpedia.org/property/broadcastArea> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mauritius"}}, "entities": [{"URI": "http://dbpedia.org/resource/Mauritius_Broadcasting_Corporation", "surface form": "Mauritius Broadcasting Corporation"}], "relations": [{"URI": "http://dbpedia.org/ontology/broadcastArea", "surface form": "broadcast"}]}, {"id": "1300", "question": [{"language": "en", "string": "Where was Henri, Duke of Rohan laid to rest?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Henri,_Duke_of_Rohan> <http://dbpedia.org/ontology/placeOfBurial> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Geneva"}}, "entities": [{"URI": "http://dbpedia.org/resource/Henri,_Duke_of_Rohan", "surface form": "Henri, Duke of Rohan"}], "relations": [{"URI": "http://dbpedia.org/ontology/placeOfBurial", "surface form": "rest"}]}, {"id": "1301", "question": [{"language": "en", "string": "What are the movies whose cinematographer is Gregg Toland?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/cinematography> <http://dbpedia.org/resource/Gregg_Toland> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dead_End_(1937_film)"}}, "entities": [{"URI": "http://dbpedia.org/resource/Cinematographer", "surface form": "cinematographer"}, {"URI": "http://dbpedia.org/resource/Gregg_Toland", "surface form": "Gregg Toland"}], "relations": [{"URI": "http://dbpedia.org/ontology/film", "surface form": "movies"}]}, {"id": "1302", "question": [{"language": "en", "string": "In how many different highschools have people schooled in Penn State Nittany Lions football studied?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/school> <http://dbpedia.org/resource/Penn_State_Nittany_Lions_football> . ?x <http://dbpedia.org/property/highschool> ?uri . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/EducationalInstitution>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "8"}}, "entities": [{"URI": "http://dbpedia.org/resource/Penn_State_Nittany_Lions_football", "surface form": "Penn State Nittany Lions football"}], "relations": [{"URI": "http://dbpedia.org/ontology/highschool", "surface form": "highschools"}, {"URI": "http://dbpedia.org/ontology/university", "surface form": "schooled"}, {"URI": "http://dbpedia.org/ontology/course", "surface form": "studied"}]}, {"id": "1303", "question": [{"language": "en", "string": "How many different people hold authority over the members of Balanidae family?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/family> <http://dbpedia.org/resource/Balanidae> . ?x <http://dbpedia.org/ontology/binomialAuthority> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/Balanidae", "surface form": "Balanidae family"}], "relations": [{"URI": "http://dbpedia.org/ontology/family", "surface form": "family"}, {"URI": "http://dbpedia.org/ontology/binomialAuthority", "surface form": "authority"}]}, {"id": "1304", "question": [{"language": "en", "string": "Which offices were held by the politicians who held their allegiance to the union of american civil war?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/allegiance> <http://dbpedia.org/resource/Union_(American_Civil_War)> . ?x <http://dbpedia.org/property/office> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/OfficeHolder>}"}, "answers": {"uri": {"type": "literal", "xml:lang": "en", "value": "Governor of Ohio"}}, "entities": [{"URI": "http://dbpedia.org/resource/Union_(American_Civil_War)", "surface form": "union"}], "relations": [{"URI": "http://dbpedia.org/ontology/commander", "surface form": "offices"}, {"URI": "http://dbpedia.org/ontology/office", "surface form": "held"}, {"URI": "http://dbpedia.org/ontology/office", "surface form": "held"}, {"URI": "http://dbpedia.org/ontology/allegiance", "surface form": "allegiance"}, {"URI": "http://dbpedia.org/ontology/league", "surface form": "union"}]}, {"id": "1305", "question": [{"language": "en", "string": "Who is the american football player whose highschool is Ringgold High School (Pennsylvania)?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/highschool> <http://dbpedia.org/resource/Ringgold_High_School_(Pennsylvania)> } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Scott_Zolak"}}, "entities": [{"URI": "http://dbpedia.org/resource/James_Walker_(American_football_player)", "surface form": "american football player"}, {"URI": "http://dbpedia.org/resource/Ringgold_High_School_(Pennsylvania)", "surface form": "Ringgold High School (Pennsylvania)"}], "relations": [{"URI": "http://dbpedia.org/ontology/highschool", "surface form": "highschool"}]}, {"id": "1306", "question": [{"language": "en", "string": "Count the total number of conflicts people who were part of conflict in afghanisthan ?"}], "query": {"sparql": " SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/battle> <http://dbpedia.org/resource/Afghanistan> . ?x <http://dbpedia.org/ontology/battle> ?uri }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "232"}}, "entities": [{"URI": "http://dbpedia.org/resource/Afghanistan", "surface form": "Afghanisthan"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": "count"}, {"URI": "http://dbpedia.org/ontology/populationTotal", "surface form": "total"}, {"URI": "http://dbpedia.org/ontology/battle", "surface form": "conflicts"}, {"URI": "http://dbpedia.org/ontology/battle", "surface form": "conflict"}]}, {"id": "1307", "question": [{"language": "en", "string": "Kendall Jenner has how many relatives?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { <http://dbpedia.org/resource/Kendall_Jenner> <http://dbpedia.org/property/relatives> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "1"}}, "entities": [{"URI": "http://dbpedia.org/resource/Kendall_Jenner", "surface form": "Kendall jenner"}], "relations": [{"URI": "http://dbpedia.org/property/relatives", "surface form": "relatives"}]}, {"id": "1308", "question": [{"language": "en", "string": "Where do the CNN employees typically graduate from?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/employer> <http://dbpedia.org/resource/CNN> . ?x <http://dbpedia.org/ontology/almaMater> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/St._Thomas_University_School_of_Law"}}, "entities": [{"URI": "http://dbpedia.org/resource/CNN", "surface form": "CNN"}], "relations": [{"URI": "http://dbpedia.org/ontology/employer", "surface form": "employees"}, {"URI": "http://dbpedia.org/ontology/almaMater", "surface form": "graduate"}]}, {"id": "1309", "question": [{"language": "en", "string": "What other destinations do airlines go to, whose flights also come to Glasgow?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/targetAirport> <http://dbpedia.org/resource/Glasgow_Airport> . ?x <http://dbpedia.org/property/destinations> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Airline>}"}, "answers": {"uri": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "30"}}, "entities": [{"URI": "http://dbpedia.org/resource/Glasgow_Airport", "surface form": "Glasgow"}], "relations": [{"URI": "http://dbpedia.org/ontology/icaoAirlineCode", "surface form": "airlines"}, {"URI": "http://dbpedia.org/ontology/address", "surface form": "to,"}, {"URI": "http://dbpedia.org/ontology/suborbitalFlights", "surface form": "flights"}]}, {"id": "1310", "question": [{"language": "en", "string": "What is the location town of First Church of Christ, Scientist (Pittsburgh) ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/First_Church_of_Christ,_Scientist_(Pittsburgh)> <http://dbpedia.org/property/locationTown> ?uri } "}, "answers": {"uri": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "635"}}, "entities": [{"URI": "http://dbpedia.org/resource/First_Church_of_Christ,_Scientist_(Pittsburgh)", "surface form": "First Church of Christ, Scientist (Pittsburgh)"}], "relations": [{"URI": "http://dbpedia.org/ontology/location", "surface form": "location town"}]}, {"id": "1311", "question": [{"language": "en", "string": "Bridges over what can carry vehicles?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/carries> <http://dbpedia.org/resource/Motor_vehicle> . ?x <http://dbpedia.org/property/crosses> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Bridge>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Euphrates"}}, "entities": [], "relations": [{"URI": "http://dbpedia.org/ontology/thumbnail", "surface form": "bridges"}, {"URI": "http://dbpedia.org/ontology/channel", "surface form": "carry"}, {"URI": "http://dbpedia.org/ontology/numberOfVehicles", "surface form": "vehicles"}]}, {"id": "1312", "question": [{"language": "en", "string": "Where is the spouse of Henry Bourchier of Essex buried?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/spouse> <http://dbpedia.org/resource/Henry_Bourchier,_1st_Earl_of_Essex> . ?x <http://dbpedia.org/property/placeOfBurial> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Essex"}}, "entities": [{"URI": "http://dbpedia.org/resource/Henry_Bourchier,_1st_Earl_of_Essex", "surface form": "Henry Bourchier of Essex"}], "relations": [{"URI": "http://dbpedia.org/ontology/spouse", "surface form": "spouse"}, {"URI": "http://dbpedia.org/ontology/weight", "surface form": "buried"}]}, {"id": "1313", "question": [{"language": "en", "string": "What shows are on the networks which are from the United States?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/locationCountry> <http://dbpedia.org/resource/United_States> . ?uri <http://dbpedia.org/property/network> ?x . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/1969_(TV_series)"}}, "entities": [{"URI": "http://dbpedia.org/resource/United_States", "surface form": "United States"}], "relations": [{"URI": "http://dbpedia.org/ontology/place", "surface form": "shows"}, {"URI": "http://dbpedia.org/ontology/network", "surface form": "networks"}]}, {"id": "1314", "question": [{"language": "en", "string": "Name the movies distributed by Cinema International Corporation and edited by Hulian Doyle ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/distributor> <http://dbpedia.org/resource/Cinema_International_Corporation> . ?uri <http://dbpedia.org/property/editing> <http://dbpedia.org/resource/Julian_Doyle_(filmmaker)> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Monty_Python's_Life_of_Brian"}}, "entities": [{"URI": "http://dbpedia.org/resource/Cinema_International_Corporation", "surface form": "Cinema International Corporation"}, {"URI": "http://dbpedia.org/resource/Willie_Doyle", "surface form": "Hulian Doyle"}], "relations": [{"URI": "http://dbpedia.org/property/name", "surface form": "name"}, {"URI": "http://dbpedia.org/ontology/film", "surface form": "movies"}, {"URI": "http://dbpedia.org/ontology/distributor", "surface form": "distributed"}, {"URI": "http://dbpedia.org/ontology/editor", "surface form": "edited"}]}, {"id": "1315", "question": [{"language": "en", "string": "What is the province of Rouen Business School ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Rouen_Business_School> <http://dbpedia.org/property/province> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Normandy"}}, "entities": [{"URI": "http://dbpedia.org/resource/Rouen_Business_School", "surface form": "Rouen Business School"}], "relations": [{"URI": "http://dbpedia.org/ontology/province", "surface form": "province"}]}, {"id": "1316", "question": [{"language": "en", "string": "List some songwriters whose work has been recorded in Miami?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/recordedIn> <http://dbpedia.org/resource/Miami> . ?x <http://dbpedia.org/property/writer> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Work>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mario_Winans"}}, "entities": [{"URI": "http://dbpedia.org/resource/Miami", "surface form": "Miami"}], "relations": [{"URI": "http://dbpedia.org/ontology/composer", "surface form": "songwriters"}, {"URI": "http://dbpedia.org/ontology/part", "surface form": "work"}, {"URI": "http://dbpedia.org/ontology/recordedIn", "surface form": "recorded"}]}, {"id": "1317", "question": [{"language": "en", "string": "who are the managers of england national under 20 football team?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/managerclubs> <http://dbpedia.org/resource/England_national_under-20_football_team> } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Andy_Edwards_(footballer,_born_1971)"}}, "entities": [{"URI": "http://dbpedia.org/resource/England_national_under-20_football_team", "surface form": "england national under 20 football team"}], "relations": [{"URI": "http://dbpedia.org/property/managerclubs", "surface form": "managers"}]}, {"id": "1318", "question": [{"language": "en", "string": "What is the total number of relgions followed by people born in Bangkok?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/birthPlace> <http://dbpedia.org/resource/Bangkok> . ?x <http://dbpedia.org/ontology/religion> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "3"}}, "entities": [{"URI": "http://dbpedia.org/resource/Bangkok", "surface form": "Bangkok"}], "relations": [{"URI": "http://dbpedia.org/ontology/populationTotal", "surface form": "total"}, {"URI": "http://dbpedia.org/property/religion", "surface form": "relgions"}, {"URI": "http://dbpedia.org/ontology/birthPlace", "surface form": "born"}]}, {"id": "1319", "question": [{"language": "en", "string": "What is the city whose mayor is Anne Hidalgo?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/mayor> <http://dbpedia.org/resource/Anne_Hidalgo> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Settlement>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Paris"}}, "entities": [{"URI": "http://dbpedia.org/resource/Anne_Hidalgo", "surface form": "Anne Hidalgo"}], "relations": [{"URI": "http://dbpedia.org/ontology/city", "surface form": "city"}, {"URI": "http://dbpedia.org/ontology/mayor", "surface form": "mayor"}]}, {"id": "1320", "question": [{"language": "en", "string": "Which musical artist collaborated with Tony Allen (musician) and label is Victor Entertainment?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/associatedMusicalArtist> <http://dbpedia.org/resource/Tony_Allen_(musician)> . ?uri <http://dbpedia.org/property/label> <http://dbpedia.org/resource/Victor_Entertainment> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/MusicalArtist>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fela_Kuti"}}, "entities": [{"URI": "http://dbpedia.org/resource/Tony_Allen_(musician)", "surface form": "Tony Allen (musician)"}, {"URI": "http://dbpedia.org/resource/Victor_Entertainment", "surface form": "Victor Entertainment"}], "relations": [{"URI": "http://dbpedia.org/ontology/artist", "surface form": "musical artist"}, {"URI": "http://dbpedia.org/ontology/team", "surface form": "collaborated"}, {"URI": "http://dbpedia.org/property/label", "surface form": "label"}]}, {"id": "1321", "question": [{"language": "en", "string": "In how many different places have US people died?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/placeOfBirth> <http://dbpedia.org/resource/United_States> . ?x <http://dbpedia.org/ontology/deathPlace> ?uri . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Location>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/United_States", "surface form": "US"}], "relations": [{"URI": "http://dbpedia.org/property/height", "surface form": "places"}, {"URI": "http://dbpedia.org/ontology/flag", "surface form": "died"}]}, {"id": "1322", "question": [{"language": "en", "string": "Count the number of software which runs on Microsoft Windows and mac OS ?"}], "query": {"sparql": " SELECT DISTINCT COUNT(?uri) WHERE { ?uri <http://dbpedia.org/ontology/operatingSystem> <http://dbpedia.org/resource/Microsoft_Windows> . ?uri <http://dbpedia.org/ontology/operatingSystem> <http://dbpedia.org/resource/Mac_OS>} "}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/Software", "surface form": "software"}, {"URI": "http://dbpedia.org/resource/Microsoft_Windows", "surface form": "Microsoft Windows"}, {"URI": "http://dbpedia.org/resource/OS", "surface form": "OS"}], "relations": [{"URI": "http://dbpedia.org/ontology/type", "surface form": "count"}, {"URI": "http://dbpedia.org/ontology/series", "surface form": "runs"}, {"URI": "http://dbpedia.org/ontology/person", "surface form": "mac"}]}, {"id": "1323", "question": [{"language": "en", "string": "What is the common race of the Martin Molony and race of the Coneygree ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Martin_Molony> <http://dbpedia.org/ontology/race> ?uri. <http://dbpedia.org/resource/Coneygree> <http://dbpedia.org/property/race> ?uri} "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cheltenham_Gold_Cup"}}, "entities": [{"URI": "http://dbpedia.org/resource/Martin_Molony", "surface form": "Martin Molony"}, {"URI": "http://dbpedia.org/resource/Coneygree", "surface form": "Coneygree"}], "relations": [{"URI": "http://dbpedia.org/ontology/race", "surface form": "common race"}, {"URI": "http://dbpedia.org/ontology/race", "surface form": "race"}]}, {"id": "1324", "question": [{"language": "en", "string": "Which countries led by Elizabeth II?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/leaderName> <http://dbpedia.org/resource/Elizabeth_II> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Country>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Akrotiri_and_Dhekelia"}}, "entities": [{"URI": "http://dbpedia.org/resource/Elizabeth_II", "surface form": "Elizabeth II"}], "relations": [{"URI": "http://dbpedia.org/property/leaderName", "surface form": "led"}, {"URI": "http://dbpedia.org/ontology/Country", "surface form": "countries"}]}, {"id": "1325", "question": [{"language": "en", "string": "What is the purpose of Maharashtra Chess Association ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Maharashtra_Chess_Association> <http://dbpedia.org/property/purpose> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chess"}}, "entities": [{"URI": "http://dbpedia.org/resource/Maharashtra_Chess_Association", "surface form": "Maharashtra Chess Association"}], "relations": [{"URI": "http://dbpedia.org/ontology/purpose", "surface form": "purpose"}]}, {"id": "1326", "question": [{"language": "en", "string": "What is the draft team of the ice hockey players whose position is Centre ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/position> <http://dbpedia.org/resource/Centre_(ice_hockey)> . ?x <http://dbpedia.org/ontology/draftTeam> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/IceHockeyPlayer>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tampa_Bay_Lightning"}}, "entities": [{"URI": "http://dbpedia.org/resource/Centre_(ice_hockey)", "surface form": "Centre"}], "relations": [{"URI": "http://dbpedia.org/ontology/draftTeam", "surface form": "draft team"}, {"URI": "http://dbpedia.org/ontology/position", "surface form": "position"}]}, {"id": "1327", "question": [{"language": "en", "string": "What is the total number of religions that politicians have followed?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/profession> <http://dbpedia.org/resource/Politician> . ?x <http://dbpedia.org/ontology/religion> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/Politicians_of_The_Wire", "surface form": "politicians"}], "relations": [{"URI": "http://dbpedia.org/ontology/populationTotal", "surface form": "total"}, {"URI": "http://dbpedia.org/ontology/religion", "surface form": "religions"}]}, {"id": "1328", "question": [{"language": "en", "string": "What sports team's arena is The Palace of Auburn Hills"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/arena> <http://dbpedia.org/resource/The_Palace_of_Auburn_Hills> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/SportsTeam>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Detroit_Shock"}}, "entities": [{"URI": "http://dbpedia.org/resource/The_Palace_of_Auburn_Hills", "surface form": "The Palace of Auburn Hills"}], "relations": [{"URI": "http://dbpedia.org/property/arena", "surface form": "arena"}, {"URI": "http://dbpedia.org/ontology/SportsTeam", "surface form": "sports team"}]}, {"id": "1329", "question": [{"language": "en", "string": "Name the TV show whose company is Playtone and written by Graham Yost?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/company> <http://dbpedia.org/resource/Playtone> . ?uri <http://dbpedia.org/property/writer> <http://dbpedia.org/resource/Graham_Yost> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Pacific_(miniseries)"}}, "entities": [{"URI": "http://dbpedia.org/resource/Tv_test_pattern", "surface form": "TV"}, {"URI": "http://dbpedia.org/resource/Playtone", "surface form": "Playtone"}, {"URI": "http://dbpedia.org/resource/Graham_Yost", "surface form": "Graham Yost"}], "relations": [{"URI": "http://dbpedia.org/property/name", "surface form": "name"}, {"URI": "http://dbpedia.org/ontology/show", "surface form": "show"}, {"URI": "http://dbpedia.org/ontology/company", "surface form": "company"}, {"URI": "http://dbpedia.org/ontology/writer", "surface form": "written"}]}, {"id": "1330", "question": [{"language": "en", "string": "Where are the politicians buried who succeeded George Whitefield Davis?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/predecessor> <http://dbpedia.org/resource/George_Whitefield_Davis> . ?x <http://dbpedia.org/property/restingplace> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/OfficeHolder>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lincoln,_Nebraska"}}, "entities": [{"URI": "http://dbpedia.org/resource/Politicians_of_The_Wire", "surface form": "politicians"}, {"URI": "http://dbpedia.org/resource/George_Whitefield_Davis", "surface form": "George Whitefield Davis"}], "relations": [{"URI": "http://dbpedia.org/ontology/genre", "surface form": "buried"}, {"URI": "http://dbpedia.org/ontology/successor", "surface form": "succeeded"}]}, {"id": "1331", "question": [{"language": "en", "string": "What is the fictional character which belongs to families of Darth Vader and Padm Amidala?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/family> <http://dbpedia.org/resource/Darth_Vader> . ?uri <http://dbpedia.org/property/family> <http://dbpedia.org/resource/Padm\u00e9_Amidala> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/FictionalCharacter>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mara_Jade"}}, "entities": [{"URI": "http://dbpedia.org/resource/Darth_Vader", "surface form": "Darth Vader"}, {"URI": "http://dbpedia.org/resource/Padm\u00e9_Amidala", "surface form": "Padm Amidala"}], "relations": [{"URI": "http://dbpedia.org/ontology/description", "surface form": "fictional character"}, {"URI": "http://dbpedia.org/property/longs", "surface form": "belongs"}, {"URI": "http://dbpedia.org/ontology/established", "surface form": "families"}]}, {"id": "1332", "question": [{"language": "en", "string": "Count the number of other services of the companies which provides the Microsoft Azure as service ?"}], "query": {"sparql": " SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/services> <http://dbpedia.org/resource/Microsoft_Azure> . ?x <http://dbpedia.org/property/services> ?uri }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/Bluegrass_companies", "surface form": "companies"}, {"URI": "http://dbpedia.org/resource/Microsoft_Azure", "surface form": "Microsoft Azure"}], "relations": [{"URI": "http://dbpedia.org/property/services", "surface form": "services"}, {"URI": "http://dbpedia.org/property/services", "surface form": "services"}]}, {"id": "1333", "question": [{"language": "en", "string": "How many first drivers have participated when Scuderia Ferrari was a first team?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/firstTeam> <http://dbpedia.org/resource/Scuderia_Ferrari> . ?x <http://dbpedia.org/ontology/firstDriver> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "320"}}, "entities": [{"URI": "http://dbpedia.org/resource/Scuderia_Ferrari", "surface form": "Scuderia Ferrari"}], "relations": [{"URI": "http://dbpedia.org/property/firstTeam", "surface form": "first team"}, {"URI": "http://dbpedia.org/ontology/firstDriver", "surface form": "first driver"}]}, {"id": "1334", "question": [{"language": "en", "string": "In how many countries are people born who play cricket?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/occupation> <http://dbpedia.org/resource/Cricket> . ?x <http://dbpedia.org/ontology/stateOfOrigin> ?uri . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Country>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "4"}}, "entities": [{"URI": "http://dbpedia.org/resource/Countries_of_the_United_Kingdom", "surface form": "countries"}], "relations": [{"URI": "http://dbpedia.org/ontology/birthPlace", "surface form": "born"}, {"URI": "http://dbpedia.org/ontology/starring", "surface form": "play"}, {"URI": "http://dbpedia.org/ontology/spike", "surface form": "cricket"}]}, {"id": "1335", "question": [{"language": "en", "string": "What are the towns who have Thesaban system?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/settlementType> <http://dbpedia.org/resource/Thesaban> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Town>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Samut_Songkhram"}}, "entities": [{"URI": "http://dbpedia.org/resource/Thesaban", "surface form": "Thesaban"}], "relations": [{"URI": "http://dbpedia.org/ontology/city", "surface form": "towns"}]}, {"id": "1336", "question": [{"language": "en", "string": "In how many different wars have people graduated from the Army Command and General staff college fought?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/almaMater> <http://dbpedia.org/resource/United_States_Army_Command_and_General_Staff_College> . ?x <http://dbpedia.org/property/battles> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "36"}}, "entities": [{"URI": "http://dbpedia.org/resource/Army_Contracting_Command", "surface form": "Army Command"}, {"URI": "http://dbpedia.org/resource/Staff_college", "surface form": "General staff college"}], "relations": [{"URI": "http://dbpedia.org/property/battles", "surface form": "wars"}, {"URI": "http://dbpedia.org/ontology/effectiveRadiatedPower", "surface form": "graduated"}, {"URI": "http://dbpedia.org/ontology/type", "surface form": "fought"}]}, {"id": "1337", "question": [{"language": "en", "string": "Which video game's artist is Hiroji Kiyotake and computing platform is Virtual Console?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/artist> <http://dbpedia.org/resource/Hiroji_Kiyotake> . ?uri <http://dbpedia.org/ontology/computingPlatform> <http://dbpedia.org/resource/Virtual_Console> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/VideoGame>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Wario_Land_II"}}, "entities": [{"URI": "http://dbpedia.org/resource/Hiroji_Kiyotake", "surface form": "Hiroji Kiyotake"}, {"URI": "http://dbpedia.org/resource/Virtual_Console", "surface form": "Virtual Console"}], "relations": [{"URI": "http://dbpedia.org/ontology/gameArtist", "surface form": "video game"}, {"URI": "http://dbpedia.org/ontology/gameArtist", "surface form": " artist"}, {"URI": "http://dbpedia.org/ontology/computingPlatform", "surface form": "computing"}, {"URI": "http://dbpedia.org/property/platform", "surface form": "platform"}]}, {"id": "1338", "question": [{"language": "en", "string": "Name a basketball player with teams as Chicago Bulls and Phoenix Suns?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/team> <http://dbpedia.org/resource/Chicago_Bulls> . ?uri <http://dbpedia.org/ontology/team> <http://dbpedia.org/resource/Phoenix_Suns> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/BasketballPlayer>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mark_Bryant_(basketball)"}}, "entities": [{"URI": "http://dbpedia.org/resource/Chicago_Bulls", "surface form": "Chicago Bulls"}, {"URI": "http://dbpedia.org/resource/Phoenix_Suns", "surface form": "Phoenix Suns"}], "relations": [{"URI": "http://dbpedia.org/property/name", "surface form": "name"}, {"URI": "http://dbpedia.org/ontology/coach", "surface form": "basketball player"}, {"URI": "http://dbpedia.org/property/team", "surface form": "teams"}]}, {"id": "1339", "question": [{"language": "en", "string": "What is the home stadium of Kenya's women national football team ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Kenya_women's_national_football_team> <http://dbpedia.org/property/homeStadium> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kenya"}}, "entities": [{"URI": "http://dbpedia.org/resource/Kenya_women's_national_football_team", "surface form": "Kenya's women national football team"}], "relations": [{"URI": "http://dbpedia.org/property/homeStadium", "surface form": "home stadium"}]}, {"id": "1340", "question": [{"language": "en", "string": "What is the award which is presented by Swedish Academy?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/presenter> <http://dbpedia.org/resource/Swedish_Academy> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Award>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/1972_Nobel_Prize_in_Literature"}}, "entities": [{"URI": "http://dbpedia.org/resource/Sweden", "surface form": "Swedish Academy"}, {"URI": "http://dbpedia.org/resource/Swedish_Academy", "surface form": "Swedish Academy"}], "relations": [{"URI": "http://dbpedia.org/property/presenter", "surface form": "presented"}, {"URI": "http://dbpedia.org/ontology/Award", "surface form": "award"}]}, {"id": "1341", "question": [{"language": "en", "string": "Where was the company who is the operator of Harihar Airport founded ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Harihar_Airport> <http://dbpedia.org/ontology/operator> ?x . ?x <http://dbpedia.org/property/foundation> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Company>}"}, "answers": {"uri": {"type": "literal", "xml:lang": "en", "value": "in Gwalior"}}, "entities": [{"URI": "http://dbpedia.org/resource/Harihar_Airport", "surface form": "Harihar Airport"}], "relations": [{"URI": "http://dbpedia.org/ontology/company", "surface form": "company"}, {"URI": "http://dbpedia.org/ontology/operator", "surface form": "operator"}, {"URI": "http://dbpedia.org/ontology/leader", "surface form": "founded"}]}, {"id": "1342", "question": [{"language": "en", "string": "Who are the people whose phD advisor was Harry Harlow?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/doctoralAdvisor> <http://dbpedia.org/resource/Harry_Harlow> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Person>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gerald_E._McClearn"}}, "entities": [{"URI": "http://dbpedia.org/resource/Harry_Harlow", "surface form": "phD advisor was Harry Harlow"}], "relations": [{"URI": "http://dbpedia.org/ontology/doctoralAdvisor", "surface form": "phD advisor"}]}, {"id": "1343", "question": [{"language": "en", "string": "What is the county seat of Moscow Governorate ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Moscow_Governorate> <http://dbpedia.org/ontology/capital> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Moscow"}}, "entities": [{"URI": "http://dbpedia.org/resource/Moscow_Governorate", "surface form": "Moscow Governorate"}], "relations": [{"URI": "http://dbpedia.org/ontology/capital", "surface form": "county seat"}]}, {"id": "1344", "question": [{"language": "en", "string": "What are some books whose cover illustration is designed by Marshall Arisman?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/coverArtist> <http://dbpedia.org/resource/Marshall_Arisman> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Book>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/American_Psycho"}}, "entities": [{"URI": "http://dbpedia.org/resource/Marshall_Arisman", "surface form": "Marshall Arisman"}], "relations": [{"URI": "http://dbpedia.org/ontology/title", "surface form": "books"}, {"URI": "http://dbpedia.org/ontology/coverArtist", "surface form": "cover illustration"}, {"URI": "http://dbpedia.org/ontology/architect", "surface form": "designed"}]}, {"id": "1345", "question": [{"language": "en", "string": "Momoko Kchi has acted in which movie ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/starring> <http://dbpedia.org/resource/Momoko_K\u014dchi> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Half_Human"}}, "entities": [{"URI": "http://dbpedia.org/resource/Momoko_K\u014dchi", "surface form": "Momoko Kchi"}], "relations": [{"URI": "http://dbpedia.org/ontology/starring", "surface form": "in"}, {"URI": "http://dbpedia.org/ontology/Film", "surface form": "movie"}]}, {"id": "1346", "question": [{"language": "en", "string": "What are some cars similar to the ones assembled at Toluca?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/assembly> <http://dbpedia.org/resource/Toluca> . ?x <http://dbpedia.org/property/related> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Automobile>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chevrolet_Express"}}, "entities": [{"URI": "http://dbpedia.org/resource/Toluca", "surface form": "Toluca"}], "relations": [{"URI": "http://dbpedia.org/ontology/management", "surface form": "cars"}, {"URI": "http://dbpedia.org/property/assembly", "surface form": "assembled"}]}, {"id": "1347", "question": [{"language": "en", "string": "Michael Deeley produce how many movies?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE {?uri <http://dbpedia.org/ontology/producer> <http://dbpedia.org/resource/Michael_Deeley> . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "11"}}, "entities": [{"URI": "http://dbpedia.org/resource/Michael_Deeley", "surface form": "michael Deeley"}], "relations": [{"URI": "http://dbpedia.org/ontology/producer", "surface form": "produce"}, {"URI": "http://dbpedia.org/ontology/film", "surface form": "movies"}]}, {"id": "1348", "question": [{"language": "en", "string": "How many food items have an ingredient from the Sapindales family?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/order> <http://dbpedia.org/resource/Sapindales> . ?uri <http://dbpedia.org/ontology/ingredient> ?x . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Food>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "7"}}, "entities": [{"URI": "http://dbpedia.org/resource/Sapindales", "surface form": "Sapindales family"}], "relations": [{"URI": "http://dbpedia.org/ontology/material", "surface form": "food items"}, {"URI": "http://dbpedia.org/ontology/ingredient", "surface form": "ingredient"}]}, {"id": "1349", "question": [{"language": "en", "string": "Where did anton ausserer die?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Anton_Ausserer> <http://dbpedia.org/property/deathPlace> ?uri } "}, "answers": {"uri": {"type": "literal", "xml:lang": "en", "value": "Graz, Austria"}}, "entities": [{"URI": "http://dbpedia.org/resource/Anton_Ausserer", "surface form": "Anton ausserer"}], "relations": [{"URI": "http://dbpedia.org/property/deathPlace", "surface form": "die"}]}, {"id": "1350", "question": [{"language": "en", "string": "How many teams have used the stadium which hosted the WCW mayhem?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { <http://dbpedia.org/resource/WCW_Mayhem> <http://dbpedia.org/property/venue> ?x . ?x <http://dbpedia.org/ontology/tenant> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Stadium>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/WCW_Mayhem", "surface form": "WCW mayhem"}], "relations": [{"URI": "http://dbpedia.org/ontology/numberOfTeams", "surface form": "teams"}, {"URI": "http://dbpedia.org/ontology/stadium", "surface form": "stadium"}, {"URI": "http://dbpedia.org/ontology/thumbnail", "surface form": "hosted"}, {"URI": "http://dbpedia.org/ontology/employer", "surface form": "mayhem"}]}, {"id": "1351", "question": [{"language": "en", "string": "Who are in the liang chow club?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/club> <http://dbpedia.org/resource/Liang_Chow> } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Shawn_Johnson_East"}}, "entities": [{"URI": "http://dbpedia.org/resource/Liang_Chow", "surface form": "liang chow club"}], "relations": []}, {"id": "1352", "question": [{"language": "en", "string": "In how many countries does the Zurich Affoltern am Albis Zug line go?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/line> <http://dbpedia.org/resource/Z\u00fcrich\u2013Affoltern_am_Albis\u2013Zug_railway_line> . ?x <http://dbpedia.org/ontology/country> ?uri . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Country>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "9"}}, "entities": [{"URI": "http://dbpedia.org/resource/Countries_of_the_United_Kingdom", "surface form": "countries"}, {"URI": "http://dbpedia.org/resource/Affoltern_am_Albis", "surface form": "Zurich Affoltern am Albis Zug"}], "relations": []}, {"id": "1353", "question": [{"language": "en", "string": "How many movies did Joel Schumacher direct?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE {?uri <http://dbpedia.org/ontology/director> <http://dbpedia.org/resource/Joel_Schumacher> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "23"}}, "entities": [{"URI": "http://dbpedia.org/resource/Joel_Schumacher", "surface form": "Joel Schumacher direct"}], "relations": [{"URI": "http://dbpedia.org/ontology/director", "surface form": "direct"}, {"URI": "http://dbpedia.org/ontology/Film", "surface form": "movie"}]}, {"id": "1354", "question": [{"language": "en", "string": "In how many places did Julian Leow Beng Kim study?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { <http://dbpedia.org/resource/Julian_Leow_Beng_Kim> <http://dbpedia.org/property/almaMater> ?uri . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/University>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "3"}}, "entities": [{"URI": "http://dbpedia.org/resource/Julian_Leow_Beng_Kim", "surface form": "Julian Leow Beng Kim study"}], "relations": [{"URI": "http://dbpedia.org/property/almaMater", "surface form": "study"}]}, {"id": "1355", "question": [{"language": "en", "string": "Which Stanley Kubrick's movie has music by Laurie Johnson?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/director> <http://dbpedia.org/resource/Stanley_Kubrick> . ?uri <http://dbpedia.org/property/music> <http://dbpedia.org/resource/Laurie_Johnson> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dr._Strangelove"}}, "entities": [{"URI": "http://dbpedia.org/resource/Stanley_Kubrick", "surface form": "Stanley Kubrick"}, {"URI": "http://dbpedia.org/resource/Laurie_Johnson", "surface form": "Laurie Johnson"}], "relations": [{"URI": "http://dbpedia.org/ontology/picture", "surface form": " movie"}, {"URI": "http://dbpedia.org/ontology/musicComposer", "surface form": "music"}]}, {"id": "1356", "question": [{"language": "en", "string": "How many movies were directed by the graduate of Burbank High School ?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/education> <http://dbpedia.org/resource/Burbank_High_School_(Burbank,_California)> . ?uri <http://dbpedia.org/property/director> ?x . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "22"}}, "entities": [{"URI": "http://dbpedia.org/resource/Burbank_High_School_(Burbank,_California)", "surface form": "Burbank High School"}], "relations": [{"URI": "http://dbpedia.org/ontology/film", "surface form": "movies"}, {"URI": "http://dbpedia.org/ontology/principal", "surface form": "directed"}, {"URI": "http://dbpedia.org/ontology/numberOfGraduateStudents", "surface form": "graduate"}]}, {"id": "1357", "question": [{"language": "en", "string": "What is the type of Vesak ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Vesak> <http://dbpedia.org/ontology/type> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Buddhism"}}, "entities": [{"URI": "http://dbpedia.org/resource/Vesak", "surface form": "Vesak"}], "relations": [{"URI": "http://dbpedia.org/ontology/type", "surface form": "type"}]}, {"id": "1358", "question": [{"language": "en", "string": "Count all the scientologists."}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE {?uri <http://dbpedia.org/ontology/religion> <http://dbpedia.org/resource/Scientology> . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "1"}}, "entities": [{"URI": "http://dbpedia.org/resource/List_of_Scientologists", "surface form": "Scientologists"}], "relations": [{"URI": "http://dbpedia.org/ontology/time", "surface form": "count"}]}, {"id": "1359", "question": [{"language": "en", "string": "Laozi has authored which books ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/author> <http://dbpedia.org/resource/Laozi> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Book>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tao_Te_Ching"}}, "entities": [{"URI": "http://dbpedia.org/resource/Laozi", "surface form": "laozi"}], "relations": [{"URI": "http://dbpedia.org/property/author", "surface form": "authored"}, {"URI": "http://dbpedia.org/ontology/volume", "surface form": "books"}]}, {"id": "1360", "question": [{"language": "en", "string": "List the awards won by the fashion designer which have been recognized by Tennessee State Museum ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/award> <http://dbpedia.org/resource/Tennessee_State_Museum> . ?x <http://dbpedia.org/ontology/award> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/FashionDesigner>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tennessee"}}, "entities": [{"URI": "http://dbpedia.org/resource/Tennessee_State_Museum", "surface form": "Tennessee State Museum"}], "relations": [{"URI": "http://dbpedia.org/ontology/award", "surface form": "awards"}, {"URI": "http://dbpedia.org/ontology/city", "surface form": "won"}, {"URI": "http://dbpedia.org/ontology/architect", "surface form": "fashion designer"}, {"URI": "http://dbpedia.org/property/established", "surface form": "recognized"}]}, {"id": "1361", "question": [{"language": "en", "string": "What is the nationality of Newin Chidchob ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Newin_Chidchob> <http://dbpedia.org/property/nationality> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Thailand"}}, "entities": [{"URI": "http://dbpedia.org/resource/Newin_Chidchob", "surface form": "Newin Chidchob"}], "relations": [{"URI": "http://dbpedia.org/ontology/nationality", "surface form": "nationality"}]}, {"id": "1362", "question": [{"language": "en", "string": "Which awards did the parents of Anna Bergman win ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Anna_Bergman> <http://dbpedia.org/ontology/parent> ?x . ?x <http://dbpedia.org/property/awards> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Goethe_Prize"}}, "entities": [{"URI": "http://dbpedia.org/resource/Anna_Bergman", "surface form": "Anna Bergman"}], "relations": [{"URI": "http://dbpedia.org/ontology/parent", "surface form": "parent"}, {"URI": "http://dbpedia.org/property/awards", "surface form": "awards"}]}, {"id": "1363", "question": [{"language": "en", "string": "How many schools have a bison as their mascot?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE {?uri <http://dbpedia.org/property/mascot> <http://dbpedia.org/resource/Bison> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/School>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "10"}}, "entities": [{"URI": "http://dbpedia.org/resource/Bison", "surface form": "bison"}], "relations": [{"URI": "http://dbpedia.org/property/mascot", "surface form": "mascot"}, {"URI": "http://dbpedia.org/ontology/School", "surface form": "school"}]}, {"id": "1364", "question": [{"language": "en", "string": "Who is the head coach of 2009-10 Middlesbrough F.C. season ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/2009\u201310_Middlesbrough_F.C._season> <http://dbpedia.org/ontology/manager> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gareth_Southgate"}}, "entities": [{"URI": "http://dbpedia.org/resource/FC", "surface form": "FC"}, {"URI": "http://dbpedia.org/resource/2009\u201310_Middlesbrough_F.C._season", "surface form": "2009-10 Middlesbrough season"}], "relations": [{"URI": "http://dbpedia.org/ontology/manager", "surface form": "head coach"}]}, {"id": "1365", "question": [{"language": "en", "string": "How many factions have fought in wars where Francois Marie Le Marchand de Lignery was involved?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { <http://dbpedia.org/resource/Fran\u00e7ois-Marie_Le_Marchand_de_Lignery> <http://dbpedia.org/ontology/battle> ?x . ?x <http://dbpedia.org/property/combatant> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/MilitaryConflict>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "35"}}, "entities": [{"URI": "http://dbpedia.org/resource/Fran\u00e7ois-Marie_Le_Marchand_de_Lignery", "surface form": "Francois Marie Le Marchand de Lignery"}], "relations": [{"URI": "http://dbpedia.org/ontology/movement", "surface form": "factions"}, {"URI": "http://dbpedia.org/ontology/type", "surface form": "fought"}, {"URI": "http://dbpedia.org/property/battles", "surface form": "wars"}, {"URI": "http://dbpedia.org/ontology/date", "surface form": "involved"}]}, {"id": "1366", "question": [{"language": "en", "string": "What are some people who are on the board of companies founded in NY?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/foundation> <http://dbpedia.org/resource/New_York_City> . ?uri <http://dbpedia.org/ontology/board> ?x . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Person>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/William_M._Jennings"}}, "entities": [{"URI": "http://dbpedia.org/resource/Companies_listed_on_the_New_York_Stock_Exchange_(J)", "surface form": "companies"}, {"URI": "http://dbpedia.org/resource/New_York", "surface form": "NY"}], "relations": [{"URI": "http://dbpedia.org/ontology/board", "surface form": "board"}, {"URI": "http://dbpedia.org/ontology/foundingYear", "surface form": "founded"}]}, {"id": "1367", "question": [{"language": "en", "string": "Give me a count of musicians who play an instrument developed by George Beauchamp ?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/keyPeople> <http://dbpedia.org/resource/George_Beauchamp> . ?uri <http://dbpedia.org/ontology/instrument> ?x . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/MusicalArtist>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/Musicians_Institute", "surface form": "musicians"}, {"URI": "http://dbpedia.org/resource/George_Beauchamp", "surface form": "George Beauchamp"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": "count"}, {"URI": "http://dbpedia.org/ontology/field", "surface form": "play"}, {"URI": "http://dbpedia.org/ontology/instrument", "surface form": "instrument"}, {"URI": "http://dbpedia.org/ontology/leader", "surface form": "developed"}]}, {"id": "1368", "question": [{"language": "en", "string": "In how many places have the companies started in Newcastle worked?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/foundationPlace> <http://dbpedia.org/resource/City_of_Newcastle> . ?x <http://dbpedia.org/ontology/regionServed> ?uri . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Place>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/Companies_listed_on_the_New_York_Stock_Exchange_(J)", "surface form": "companies"}, {"URI": "http://dbpedia.org/resource/Newcastle", "surface form": "Newcastle"}], "relations": [{"URI": "http://dbpedia.org/ontology/district", "surface form": "places"}, {"URI": "http://dbpedia.org/ontology/origin", "surface form": "started"}, {"URI": "http://dbpedia.org/ontology/operator", "surface form": "worked"}]}, {"id": "1369", "question": [{"language": "en", "string": "What are the musicals of the people died in California?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/deathPlace> <http://dbpedia.org/resource/California> . ?uri <http://dbpedia.org/property/music> ?x . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Musical>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/A_Spoonful_of_Sherman"}}, "entities": [{"URI": "http://dbpedia.org/resource/California", "surface form": "California"}], "relations": [{"URI": "http://dbpedia.org/ontology/musicalArtist", "surface form": "musicals"}, {"URI": "http://dbpedia.org/ontology/flag", "surface form": "died"}]}, {"id": "1370", "question": [{"language": "en", "string": "What sport has made Eric Schiller famous, and has employed Craig Van Tibury?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Craig_Van_Tilbury> <http://dbpedia.org/ontology/occupation> ?uri. <http://dbpedia.org/resource/Eric_Schiller> <http://dbpedia.org/ontology/knownFor> ?uri} "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chess"}}, "entities": [{"URI": "http://dbpedia.org/resource/Craig_Van_Tilbury", "surface form": "Craig Van Tibury"}, {"URI": "http://dbpedia.org/resource/Eric_Schiller", "surface form": "Eric Schiller"}], "relations": [{"URI": "http://dbpedia.org/ontology/occupation", "surface form": "employed"}, {"URI": "http://dbpedia.org/ontology/knownFor", "surface form": "famous"}]}, {"id": "1371", "question": [{"language": "en", "string": "Which pole driver of 1989 Portuguese Grand Prix was also the first driver of 1993 European Grand Prix ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/1993_European_Grand_Prix> <http://dbpedia.org/property/firstDriver> ?uri. <http://dbpedia.org/resource/1989_Portuguese_Grand_Prix> <http://dbpedia.org/ontology/poleDriver> ?uri} "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ayrton_Senna"}}, "entities": [{"URI": "http://dbpedia.org/resource/1989_Portuguese_Grand_Prix", "surface form": "1989 Portuguese Grand Prix"}, {"URI": "http://dbpedia.org/resource/1993_European_Grand_Prix", "surface form": "1993 European Grand Prix"}], "relations": [{"URI": "http://dbpedia.org/property/firstDriver", "surface form": "first driver"}, {"URI": "http://dbpedia.org/ontology/poleDriver", "surface form": "pole driver"}]}, {"id": "1372", "question": [{"language": "en", "string": "Where is the T.I. Ahmadiyya Girls Senior High School?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/T.I._Ahmadiyya_Girls_Senior_High_School,_Asokore> <http://dbpedia.org/ontology/denomination> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ahmadiyya"}}, "entities": [{"URI": "http://dbpedia.org/resource/Ti", "surface form": "TI"}, {"URI": "http://dbpedia.org/resource/T.I._Ahmadiyya_Girls_Senior_High_School,_Asokore", "surface form": "Ahmadiyya Girls Senior High School"}], "relations": []}, {"id": "1373", "question": [{"language": "en", "string": "What are the birth place of the people who are the star of Dhoondte Reh Jaaoge?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Dhoondte_Reh_Jaaoge!_(1998_film)> <http://dbpedia.org/ontology/starring> ?x . ?x <http://dbpedia.org/ontology/birthPlace> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Person>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ahmedabad"}}, "entities": [{"URI": "http://dbpedia.org/resource/Dhoondte_Reh_Jaaoge", "surface form": "Dhoondte Reh Jaaoge"}], "relations": [{"URI": "http://dbpedia.org/ontology/birthDate", "surface form": "birth place"}, {"URI": "http://dbpedia.org/property/name", "surface form": "star"}]}, {"id": "1374", "question": [{"language": "en", "string": "Which software uses windows as it's operating system and is written in C++ ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/operatingSystem> <http://dbpedia.org/resource/Microsoft_Windows> . ?uri <http://dbpedia.org/ontology/programmingLanguage> <http://dbpedia.org/resource/C++> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Software>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/AllJoyn"}}, "entities": [{"URI": "http://dbpedia.org/resource/Software_Publishing_Corporation", "surface form": "software"}, {"URI": "http://dbpedia.org/resource/C++", "surface form": "C++"}], "relations": [{"URI": "http://dbpedia.org/ontology/show", "surface form": "windows"}, {"URI": "http://dbpedia.org/ontology/operatingSystem", "surface form": "operating"}, {"URI": "http://dbpedia.org/property/writtenIn", "surface form": "written"}]}, {"id": "1375", "question": [{"language": "en", "string": "How many maintainers are there of the bridges that can carry motor vehicles over them?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/carries> <http://dbpedia.org/resource/Motor_vehicle> . ?x <http://dbpedia.org/ontology/maintainedBy> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/Motor_vehicle", "surface form": "motor vehicle"}], "relations": [{"URI": "http://dbpedia.org/property/carries", "surface form": "carry"}, {"URI": "http://dbpedia.org/ontology/maintainedBy", "surface form": "maintainer"}]}, {"id": "1376", "question": [{"language": "en", "string": "What currencies are circulated in the countries where people speak French?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/officialLanguage> <http://dbpedia.org/resource/French_language> . ?x <http://dbpedia.org/ontology/currency> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Location>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vanuatu_vatu"}}, "entities": [{"URI": "http://dbpedia.org/resource/French_language", "surface form": "French"}], "relations": [{"URI": "http://dbpedia.org/ontology/language", "surface form": "speak"}, {"URI": "http://dbpedia.org/ontology/country", "surface form": ""}, {"URI": "http://dbpedia.org/ontology/country", "surface form": ""}]}, {"id": "1377", "question": [{"language": "en", "string": "Give the distinct number of other party of the people which have one of the party as Janata Party ?"}], "query": {"sparql": " SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/otherParty> <http://dbpedia.org/resource/Janata_Party> . ?x <http://dbpedia.org/ontology/otherParty> ?uri }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "6"}}, "entities": [{"URI": "http://dbpedia.org/resource/Janata_Party", "surface form": "Janata Party"}], "relations": [{"URI": "http://dbpedia.org/ontology/otherParty", "surface form": "other party"}, {"URI": "http://dbpedia.org/ontology/otherParty", "surface form": "other party"}]}, {"id": "1378", "question": [{"language": "en", "string": "Give me a list of all the buildings which are located in districts governed by John Tory."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/leaderName> <http://dbpedia.org/resource/John_Tory> . ?uri <http://dbpedia.org/ontology/location> ?x . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Building>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alumni_Field_(York_University)"}}, "entities": [{"URI": "http://dbpedia.org/resource/John_Tory", "surface form": "John Tory"}], "relations": [{"URI": "http://dbpedia.org/ontology/production", "surface form": "buildings"}, {"URI": "http://dbpedia.org/ontology/position", "surface form": "located"}, {"URI": "http://dbpedia.org/ontology/province", "surface form": "districts"}, {"URI": "http://dbpedia.org/ontology/director", "surface form": "governed"}]}, {"id": "1379", "question": [{"language": "en", "string": "Which BBC's TV show is related with the Sarah Jane Adventures?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/network> <http://dbpedia.org/resource/BBC_HD> . ?uri <http://dbpedia.org/ontology/related> <http://dbpedia.org/resource/The_Sarah_Jane_Adventures> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Doctor_Who"}}, "entities": [{"URI": "http://dbpedia.org/resource/BBC", "surface form": "BBC"}, {"URI": "http://dbpedia.org/resource/Tv_test_pattern", "surface form": "TV"}, {"URI": "http://dbpedia.org/resource/The_Sarah_Jane_Adventures", "surface form": "Sarah Jane Adventures"}], "relations": [{"URI": "http://dbpedia.org/ontology/show", "surface form": "show"}, {"URI": "http://dbpedia.org/ontology/related", "surface form": "related"}]}, {"id": "1380", "question": [{"language": "en", "string": "Which political party got elected in First Legislative Assembly of Uttar Pradesh ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Martin_Crane> <http://dbpedia.org/property/children> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Niles_Crane"}}, "entities": [{"URI": "http://dbpedia.org/resource/First_Legislative_Assembly_of_Uttar_Pradesh", "surface form": "First Legislative Assembly of Uttar Pradesh"}], "relations": [{"URI": "http://dbpedia.org/property/party", "surface form": "political party"}, {"URI": "http://dbpedia.org/ontology/president", "surface form": "elected"}]}, {"id": "1381", "question": [{"language": "en", "string": "How many organizations own the website to which Jimmy Wales contributes?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/author> <http://dbpedia.org/resource/Jimmy_Wales> . ?x <http://dbpedia.org/ontology/owner> ?uri . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Organisation>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "4"}}, "entities": [{"URI": "http://dbpedia.org/resource/Website", "surface form": "website"}, {"URI": "http://dbpedia.org/resource/Jimmy_Wales", "surface form": "Jimmy Wales"}], "relations": [{"URI": "http://dbpedia.org/ontology/company", "surface form": "organizations"}, {"URI": "http://dbpedia.org/ontology/participant", "surface form": "contributes"}]}, {"id": "1382", "question": [{"language": "en", "string": "Name the notable commanders of Army Group Oberrhein ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Army_Group_Oberrhein_(Germany)> <http://dbpedia.org/property/notableCommanders> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Heinrich_Himmler"}}, "entities": [{"URI": "http://dbpedia.org/resource/Army_Group_Oberrhein_(Germany)", "surface form": "Army Group Oberrhein"}], "relations": [{"URI": "http://dbpedia.org/ontology/name", "surface form": "name"}, {"URI": "http://dbpedia.org/ontology/notableCommander", "surface form": "notable commanders"}]}, {"id": "1383", "question": [{"language": "en", "string": "Name the place of Qaqun ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Qaqun> <http://dbpedia.org/property/place> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Israel"}}, "entities": [{"URI": "http://dbpedia.org/resource/Qaqun", "surface form": "Qaqun"}], "relations": [{"URI": "http://dbpedia.org/ontology/name", "surface form": "name"}, {"URI": "http://dbpedia.org/ontology/place", "surface form": "place"}]}, {"id": "1384", "question": [{"language": "en", "string": "What are the awards won by the film editor of World of Tomorrow ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/World_of_Tomorrow_(film)> <http://dbpedia.org/ontology/editing> ?x . ?x <http://dbpedia.org/ontology/award> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Academy_Awards"}}, "entities": [{"URI": "http://dbpedia.org/resource/World_of_Tomorrow_(film)", "surface form": "World of Tomorrow"}], "relations": [{"URI": "http://dbpedia.org/ontology/editing", "surface form": "editor"}, {"URI": "http://dbpedia.org/ontology/award", "surface form": "awards"}]}, {"id": "1385", "question": [{"language": "en", "string": "Which mountains are contained in Inyo National Forest?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/locatedInArea> <http://dbpedia.org/resource/Inyo_National_Forest> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Mountain>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mammoth_Mountain__Mammoth_Mountain__1"}}, "entities": [{"URI": "http://dbpedia.org/resource/Inyo_National_Forest", "surface form": "Inyo National Forest"}], "relations": [{"URI": "http://dbpedia.org/ontology/locatedInArea", "surface form": "Nation"}, {"URI": "http://dbpedia.org/ontology/Mountain", "surface form": "mountain"}]}, {"id": "1386", "question": [{"language": "en", "string": "Whose children are married to Fredric Joliot-Curie?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/spouse> <http://dbpedia.org/resource/Fr\u00e9d\u00e9ric_Joliot-Curie> . ?uri <http://dbpedia.org/property/children> ?x . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Marie_Curie"}}, "entities": [{"URI": "http://dbpedia.org/resource/Fr\u00e9d\u00e9ric_Joliot-Curie", "surface form": "Fredric Joliot-Curie"}], "relations": [{"URI": "http://dbpedia.org/property/children", "surface form": "children"}, {"URI": "http://dbpedia.org/ontology/spouse", "surface form": "married"}]}, {"id": "1387", "question": [{"language": "en", "string": "Where are the homestadiums of the seasons chaired by Merritt Paulson?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/chairman> <http://dbpedia.org/resource/Merritt_Paulson> . ?x <http://dbpedia.org/ontology/homeStadium> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/SoccerClubSeason>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Portland,_Oregon"}}, "entities": [{"URI": "http://dbpedia.org/resource/Merritt_Paulson", "surface form": "Merritt Paulson"}], "relations": [{"URI": "http://dbpedia.org/ontology/numberOfSeasons", "surface form": "seasons"}, {"URI": "http://dbpedia.org/ontology/chairman", "surface form": "chaired"}]}, {"id": "1388", "question": [{"language": "en", "string": "What is the architecture of First National Bank and Trust Building (Lima, Ohio) ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/First_National_Bank_and_Trust_Building_(Lima,_Ohio)> <http://dbpedia.org/ontology/architecturalStyle> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chicago"}}, "entities": [{"URI": "http://dbpedia.org/resource/First_National_Bank", "surface form": "First National Bank"}, {"URI": "http://dbpedia.org/resource/First_National_Bank_and_Trust_Building_(Lima,_Ohio)", "surface form": "Trust Building (Lima, Ohio)"}], "relations": [{"URI": "http://dbpedia.org/ontology/architecturalStyle", "surface form": "architecture"}]}, {"id": "1389", "question": [{"language": "en", "string": "What are some languages in the italic family of languages?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/languageFamily> <http://dbpedia.org/resource/Italic_languages> } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Amazonic_Spanish"}}, "entities": [], "relations": [{"URI": "http://dbpedia.org/ontology/language", "surface form": "languages"}, {"URI": "http://dbpedia.org/ontology/genus", "surface form": "italic family"}, {"URI": "http://dbpedia.org/ontology/language", "surface form": "languages"}]}, {"id": "1390", "question": [{"language": "en", "string": "Count all the awards which were presented by something located in California."}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/headquarter> <http://dbpedia.org/resource/California> . ?uri <http://dbpedia.org/ontology/presenter> ?x . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Award>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "59"}}, "entities": [{"URI": "http://dbpedia.org/resource/California", "surface form": "California"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": "count"}, {"URI": "http://dbpedia.org/ontology/award", "surface form": "awards"}, {"URI": "http://dbpedia.org/ontology/gross", "surface form": "located"}]}, {"id": "1391", "question": [{"language": "en", "string": "Who all held a position when Gough Whitlam was the prime minister?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/primeMinister> <http://dbpedia.org/resource/Gough_Whitlam> } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Moss_Cass__Tenure__1"}}, "entities": [{"URI": "http://dbpedia.org/resource/Gough_Whitlam", "surface form": "Gough Whitlam"}], "relations": [{"URI": "http://dbpedia.org/ontology/office", "surface form": "held"}, {"URI": "http://dbpedia.org/ontology/position", "surface form": "position"}, {"URI": "http://dbpedia.org/ontology/primeMinister", "surface form": "prime minister"}]}, {"id": "1392", "question": [{"language": "en", "string": "In which part of the world will I find Kim Sawchuk and Vuelta Mexico Telmex?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Kim_Sawchuk> <http://dbpedia.org/property/region> ?uri. <http://dbpedia.org/resource/Vuelta_Mexico_Telmex> <http://dbpedia.org/property/region> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/North_America"}}, "entities": [{"URI": "http://dbpedia.org/resource/I", "surface form": "I"}, {"URI": "http://dbpedia.org/resource/Kim_Sawchuk", "surface form": "find Kim Sawchuk"}, {"URI": "http://dbpedia.org/resource/Vuelta_Mexico_Telmex", "surface form": "Vuelta Mexico Telmex"}], "relations": []}, {"id": "1393", "question": [{"language": "en", "string": "What are the mascots of the teams participating in the Turkish Handball Super League?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/league> <http://dbpedia.org/resource/Turkish_Handball_Super_League> . ?x <http://dbpedia.org/property/mascot> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/SportsTeam>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lion"}}, "entities": [{"URI": "http://dbpedia.org/resource/Turkey", "surface form": "Turkish Handball Super League"}, {"URI": "http://dbpedia.org/resource/Turkish_Handball_Super_League", "surface form": "Turkish Handball Super League"}], "relations": [{"URI": "http://dbpedia.org/ontology/mascot", "surface form": "mascots"}, {"URI": "http://dbpedia.org/property/teams", "surface form": "teams"}, {"URI": "http://dbpedia.org/ontology/part", "surface form": "participating"}, {"URI": "http://dbpedia.org/ontology/country", "surface form": ""}]}, {"id": "1394", "question": [{"language": "en", "string": "Which university was attended by both Richard H Immerman and Franklin W Olin?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Richard_H._Immerman> <http://dbpedia.org/property/education> ?uri. <http://dbpedia.org/resource/Franklin_W._Olin> <http://dbpedia.org/property/education> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cornell_University"}}, "entities": [{"URI": "http://dbpedia.org/resource/Richard_H._Immerman", "surface form": "immerman richard"}, {"URI": "http://dbpedia.org/resource/Franklin_W._Olin", "surface form": "franklin olin"}], "relations": [{"URI": "http://dbpedia.org/property/education", "surface form": "attended"}, {"URI": "http://dbpedia.org/property/education", "surface form": "attended"}]}, {"id": "1395", "question": [{"language": "en", "string": "How many other race are there of the adult (pornographic) actors whose ethnicity is Cherokee ?"}], "query": {"sparql": " SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/ethnicity> <http://dbpedia.org/resource/Cherokee> . ?x <http://dbpedia.org/property/ethnicity> ?uri }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/The_Actors", "surface form": "adult (pornographic) actors"}, {"URI": "http://dbpedia.org/resource/Cherokee", "surface form": "Cherokee"}], "relations": [{"URI": "http://dbpedia.org/ontology/race", "surface form": "race"}, {"URI": "http://dbpedia.org/ontology/ethnicity", "surface form": "ethnicity"}, {"URI": "http://dbpedia.org/ontology/country", "surface form": ""}]}, {"id": "1396", "question": [{"language": "en", "string": "Stockholm is the HQ of how many things?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE {?uri <http://dbpedia.org/property/headquarters> <http://dbpedia.org/resource/Stockholm> . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "111"}}, "entities": [{"URI": "http://dbpedia.org/resource/Stockholm", "surface form": "stockholm"}, {"URI": "http://dbpedia.org/resource/HQ", "surface form": "HQ"}], "relations": [{"URI": "http://dbpedia.org/property/headquarters", "surface form": "HQ"}]}, {"id": "1397", "question": [{"language": "en", "string": "What is a salthill?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Salthill> <http://dbpedia.org/ontology/type> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Galway"}}, "entities": [{"URI": "http://dbpedia.org/resource/Salthill", "surface form": "Salthill"}], "relations": []}, {"id": "1398", "question": [{"language": "en", "string": "What is the sea connected to Oulu and Turku?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/cities> <http://dbpedia.org/resource/Oulu> . ?uri <http://dbpedia.org/property/cities> <http://dbpedia.org/resource/Turku> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Sea>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Baltic_Sea"}}, "entities": [{"URI": "http://dbpedia.org/resource/Oulu_City_Theatre", "surface form": "Oulu and Turku"}], "relations": [{"URI": "http://dbpedia.org/ontology/elevation", "surface form": "sea"}, {"URI": "http://dbpedia.org/ontology/related", "surface form": "connected"}]}, {"id": "1399", "question": [{"language": "en", "string": "In how many regions is the Baco Noir made?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { <http://dbpedia.org/resource/Baco_noir> <http://dbpedia.org/ontology/wineRegion> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "8"}}, "entities": [{"URI": "http://dbpedia.org/resource/Baco_noir", "surface form": "Baco Noir"}], "relations": [{"URI": "http://dbpedia.org/ontology/wineRegion", "surface form": "regions"}]}, {"id": "1400", "question": [{"language": "en", "string": "Where does the Jerusalem Institute of Justice render their services?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Jerusalem_Institute_of_Justice> <http://dbpedia.org/ontology/service> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Israel"}}, "entities": [{"URI": "http://dbpedia.org/resource/Jerusalem_Institute_of_Justice", "surface form": "Jerusalem Institute of Justice"}], "relations": [{"URI": "http://dbpedia.org/ontology/picture", "surface form": "render"}, {"URI": "http://dbpedia.org/ontology/service", "surface form": "services"}]}, {"id": "1401", "question": [{"language": "en", "string": "Who created the stadiums who have been rented by the Boston Red Sox?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/tenant> <http://dbpedia.org/resource/Boston_Red_Sox> . ?x <http://dbpedia.org/property/architect> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Stadium>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Populous_(architects)"}}, "entities": [{"URI": "http://dbpedia.org/resource/Boston_Red_Sox", "surface form": "Boston Red Sox"}], "relations": [{"URI": "http://dbpedia.org/ontology/author", "surface form": "created"}, {"URI": "http://dbpedia.org/ontology/stadium", "surface form": "stadiums"}, {"URI": "http://dbpedia.org/ontology/tenant", "surface form": "rented"}]}, {"id": "1402", "question": [{"language": "en", "string": "List down the commanders of Battle of Fort stephenson ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Battle_of_Fort_Stephenson> <http://dbpedia.org/ontology/commander> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/George_Croghan_(soldier)"}}, "entities": [{"URI": "http://dbpedia.org/resource/Battle_of_Fort_Stephenson", "surface form": "Battle of Fort stephenson"}], "relations": [{"URI": "http://dbpedia.org/ontology/commander", "surface form": "commanders"}]}, {"id": "1403", "question": [{"language": "en", "string": "What is the subject of The Prodigal son ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/The_Prodigal_Son_(play)> <http://dbpedia.org/property/subject> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jesus"}}, "entities": [{"URI": "http://dbpedia.org/resource/The_Prodigal_Son_(play)", "surface form": "The Prodigal son"}], "relations": [{"URI": "http://dbpedia.org/property/subject", "surface form": "subject"}]}, {"id": "1404", "question": [{"language": "en", "string": "ARM Architecture acts as a game platform for how many things?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE {?uri <http://dbpedia.org/ontology/computingPlatform> <http://dbpedia.org/resource/ARM_architecture> . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/ARM_architecture", "surface form": "aRM Architecture"}], "relations": [{"URI": "http://dbpedia.org/ontology/material", "surface form": "acts"}, {"URI": "http://dbpedia.org/ontology/computingPlatform", "surface form": "game platform"}]}, {"id": "1405", "question": [{"language": "en", "string": "Name the work institutions of Andrew Schally?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Andrew_Schally> <http://dbpedia.org/property/workInstitutions> ?uri } "}, "answers": {"uri": {"type": "literal", "xml:lang": "en", "value": "Baylor College of Medicine"}}, "entities": [{"URI": "http://dbpedia.org/resource/Andrew_Schally", "surface form": "Andrew Schally"}], "relations": [{"URI": "http://dbpedia.org/ontology/name", "surface form": "name"}, {"URI": "http://dbpedia.org/property/workInstitutions", "surface form": "work institutions"}]}, {"id": "1406", "question": [{"language": "en", "string": "What is the fictional character which has Clan McDuck and Ludwig Von Draken as relatives?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/relatives> <http://dbpedia.org/resource/Clan_McDuck> . ?uri <http://dbpedia.org/property/relatives> <http://dbpedia.org/resource/Ludwig_Von_Drake> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/FictionalCharacter>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Della_Duck"}}, "entities": [{"URI": "http://dbpedia.org/resource/Clan_McDuck", "surface form": "Clan McDuck"}, {"URI": "http://dbpedia.org/resource/Saab_35_Draken", "surface form": "Ludwig Von Draken"}], "relations": [{"URI": "http://dbpedia.org/ontology/role", "surface form": "fictional character"}, {"URI": "http://dbpedia.org/ontology/relative", "surface form": "relatives"}]}, {"id": "1407", "question": [{"language": "en", "string": "How many games have a composer who worked for the Creatures?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/occupation> <http://dbpedia.org/resource/Creatures_(company)> . ?uri <http://dbpedia.org/property/composer> ?x . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/VideoGame>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/Creatures_(company)", "surface form": "Creatures"}], "relations": [{"URI": "http://dbpedia.org/ontology/games", "surface form": "games"}, {"URI": "http://dbpedia.org/ontology/composer", "surface form": "composer"}, {"URI": "http://dbpedia.org/ontology/operator", "surface form": "worked"}]}, {"id": "1408", "question": [{"language": "en", "string": "How many people have voiced characters sculpted by Clamp?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/creator> <http://dbpedia.org/resource/Clamp_(manga_artists)> . ?x <http://dbpedia.org/ontology/voice> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "48"}}, "entities": [{"URI": "http://dbpedia.org/resource/Clamp_(manga_artists)", "surface form": "Clamp"}], "relations": [{"URI": "http://dbpedia.org/ontology/voice", "surface form": "voiced"}]}, {"id": "1409", "question": [{"language": "en", "string": "Trainees at the national film school of Lodz have received what awards?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/training> <http://dbpedia.org/resource/National_Film_School_in_\u0141\u00f3d\u017a> . ?x <http://dbpedia.org/ontology/award> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Academy_Awards"}}, "entities": [{"URI": "http://dbpedia.org/resource/National_Film_School_in_\u0141\u00f3d\u017a", "surface form": "national film school"}], "relations": [{"URI": "http://dbpedia.org/property/training", "surface form": "received"}, {"URI": "http://dbpedia.org/ontology/award", "surface form": "awards"}]}, {"id": "1410", "question": [{"language": "en", "string": "Who is the scientist whose academic advisor is Franz Brentano?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/academicAdvisor> <http://dbpedia.org/resource/Franz_Brentano> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Scientist>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sigmund_Freud"}}, "entities": [{"URI": "http://dbpedia.org/resource/Scientist", "surface form": "scientist"}, {"URI": "http://dbpedia.org/resource/Franz_Brentano", "surface form": "Franz Brentano"}], "relations": [{"URI": "http://dbpedia.org/ontology/academicAdvisor", "surface form": "academic advisor"}, {"URI": "http://dbpedia.org/ontology/Scientist", "surface form": "scientist"}]}, {"id": "1411", "question": [{"language": "en", "string": "In how many different people are alumini of the University of Oxford working?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/almaMater> <http://dbpedia.org/resource/Worcester_College,_Oxford> . ?x <http://dbpedia.org/ontology/field> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "3"}}, "entities": [{"URI": "http://dbpedia.org/resource/NK_Aluminij", "surface form": "alumini"}, {"URI": "http://dbpedia.org/resource/University_of_Oxford", "surface form": "University of Oxford"}], "relations": [{"URI": "http://dbpedia.org/ontology/training", "surface form": "working"}]}, {"id": "1412", "question": [{"language": "en", "string": "Who is the developer of Montecito Inn ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Montecito_Inn> <http://dbpedia.org/property/developer> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Charlie_Chaplin"}}, "entities": [{"URI": "http://dbpedia.org/resource/Montecito_Inn", "surface form": "Montecito Inn"}], "relations": [{"URI": "http://dbpedia.org/ontology/developer", "surface form": "developer"}]}, {"id": "1413", "question": [{"language": "en", "string": "Where did Paul Jones do his highschool?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Paul_Jones_(American_football)> <http://dbpedia.org/property/highschool> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sto-Rox_High_School"}}, "entities": [{"URI": "http://dbpedia.org/resource/Paul_Jones_(American_football)", "surface form": "Paul Jones"}], "relations": [{"URI": "http://dbpedia.org/ontology/highschool", "surface form": "highschool"}]}, {"id": "1414", "question": [{"language": "en", "string": "For which team did Cam Plante and Doug Acomb both play atleast once?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Cam_Plante> <http://dbpedia.org/property/playedFor> ?uri. <http://dbpedia.org/resource/Doug_Acomb> <http://dbpedia.org/property/playedFor> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Toronto_Maple_Leafs"}}, "entities": [{"URI": "http://dbpedia.org/resource/Cam_Plante", "surface form": "Cam Plante"}, {"URI": "http://dbpedia.org/resource/Doug_Acomb", "surface form": "Doug Acomb"}], "relations": [{"URI": "http://dbpedia.org/property/playedFor", "surface form": "team"}, {"URI": "http://dbpedia.org/property/playedFor", "surface form": "team"}]}, {"id": "1415", "question": [{"language": "en", "string": "What are the shows whose creator has worked as a screenwriter?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/occupation> <http://dbpedia.org/resource/Screenwriting> . ?uri <http://dbpedia.org/ontology/creator> ?x . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/All_Hail_King_Julien"}}, "entities": [{"URI": "http://dbpedia.org/resource/Screenwriting", "surface form": "screenwriter"}], "relations": [{"URI": "http://dbpedia.org/ontology/place", "surface form": "shows"}, {"URI": "http://dbpedia.org/ontology/creator", "surface form": "creator"}, {"URI": "http://dbpedia.org/ontology/operator", "surface form": "worked"}, {"URI": "http://dbpedia.org/ontology/author", "surface form": "screenwriter"}]}, {"id": "1416", "question": [{"language": "en", "string": "To which students did Ernest Rutherford advised to?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/doctoralAdvisor> <http://dbpedia.org/resource/Ernest_Rutherford> . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alexander_McAulay"}}, "entities": [{"URI": "http://dbpedia.org/resource/Ernest_Rutherford", "surface form": "Ernest Rutherford"}], "relations": [{"URI": "http://dbpedia.org/ontology/notableStudent", "surface form": "students"}, {"URI": "http://dbpedia.org/ontology/doctoralAdvisor", "surface form": "advised"}]}, {"id": "1417", "question": [{"language": "en", "string": "Which institution of the Alton Ochsner is the alma mater of the Michael Hahn ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Alton_Ochsner> <http://dbpedia.org/ontology/institution> ?uri. <http://dbpedia.org/resource/Michael_Hahn> <http://dbpedia.org/ontology/almaMater> ?uri} "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tulane_University"}}, "entities": [{"URI": "http://dbpedia.org/resource/Alton_Ochsner", "surface form": "Alton Ochsner"}, {"URI": "http://dbpedia.org/resource/Michael_Hahn", "surface form": "Michael Hahn"}], "relations": [{"URI": "http://dbpedia.org/ontology/institution", "surface form": "institution"}, {"URI": "http://dbpedia.org/ontology/almaMater", "surface form": "alma mater"}]}, {"id": "1418", "question": [{"language": "en", "string": "In how many places was the album of King Crimson recorded?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/artist> <http://dbpedia.org/resource/King_Crimson> . ?x <http://dbpedia.org/ontology/recordedIn> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "2"}}, "entities": [{"URI": "http://dbpedia.org/resource/King_Crimson", "surface form": "King Crimson"}], "relations": [{"URI": "http://dbpedia.org/ontology/height", "surface form": "places"}, {"URI": "http://dbpedia.org/ontology/album", "surface form": "album"}, {"URI": "http://dbpedia.org/property/recorded", "surface form": "recorded"}]}, {"id": "1419", "question": [{"language": "en", "string": "Who is the starring of the movies such that music is by Raamlaxman?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/music> <http://dbpedia.org/resource/Raamlaxman> . ?x <http://dbpedia.org/ontology/starring> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vinod_Mehra"}}, "entities": [{"URI": "http://dbpedia.org/resource/Raamlaxman", "surface form": "Raamlaxman"}], "relations": [{"URI": "http://dbpedia.org/ontology/starring", "surface form": "starring"}, {"URI": "http://dbpedia.org/ontology/film", "surface form": "movies"}, {"URI": "http://dbpedia.org/ontology/musicComposer", "surface form": "music"}]}, {"id": "1420", "question": [{"language": "en", "string": "What are the movies whose cast members are signed up with Point Blank Records?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/label> <http://dbpedia.org/resource/Point_Blank_Records> . ?uri <http://dbpedia.org/property/starring> ?x . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Blues_(film_series)"}}, "entities": [{"URI": "http://dbpedia.org/resource/Point_Blank_Records", "surface form": "Point Blank Records"}], "relations": [{"URI": "http://dbpedia.org/ontology/film", "surface form": "movies"}, {"URI": "http://dbpedia.org/ontology/genre", "surface form": "cast members"}, {"URI": "http://dbpedia.org/ontology/movement", "surface form": "signed"}]}, {"id": "1421", "question": [{"language": "en", "string": "What is the Team Name of the Cristo Rey Jesuit High School (Chicago) and is also the nickname of the Lyons Township High School ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Cristo_Rey_Jesuit_High_School_(Chicago)> <http://dbpedia.org/property/teamName> ?uri. <http://dbpedia.org/resource/Lyons_Township_High_School> <http://dbpedia.org/property/nickname> ?uri} "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lions"}}, "entities": [{"URI": "http://dbpedia.org/resource/Cristo_Rey_Jesuit_High_School_(Chicago)", "surface form": "Team Name of the Cristo Rey Jesuit High School (Chicago) Team Name of the Cristo Rey Jesuit High School (Chicago)"}, {"URI": "http://dbpedia.org/resource/Lyons_Township_High_School", "surface form": "Lyons Township High School"}], "relations": []}, {"id": "1422", "question": [{"language": "en", "string": "What do craig Van tilbury and karen Grigorian do for a living?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Karen_Grigorian> <http://dbpedia.org/ontology/occupation> ?uri. <http://dbpedia.org/resource/Craig_Van_Tilbury> <http://dbpedia.org/ontology/occupation> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chess"}}, "entities": [{"URI": "http://dbpedia.org/resource/Craig_Van_Tilbury", "surface form": "Van tilbury"}, {"URI": "http://dbpedia.org/resource/Karen_Grigorian", "surface form": "Karen grigorian"}], "relations": [{"URI": "http://dbpedia.org/ontology/prominence", "surface form": "craig"}, {"URI": "http://dbpedia.org/ontology/occupation", "surface form": "living"}]}, {"id": "1423", "question": [{"language": "en", "string": "What is the city nearest to the islands in the Northwestern Hawaiian Islands?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/archipelago> <http://dbpedia.org/resource/Northwestern_Hawaiian_Islands> . ?x <http://dbpedia.org/property/nearestCity> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Island>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hawaii"}}, "entities": [{"URI": "http://dbpedia.org/resource/Northwestern_Hawaiian_Islands", "surface form": "Northwestern Hawaiian Islands"}], "relations": [{"URI": "http://dbpedia.org/ontology/place", "surface form": "city nearest"}, {"URI": "http://dbpedia.org/ontology/numberOfIslands", "surface form": "islands"}]}, {"id": "1424", "question": [{"language": "en", "string": "Name the televesion show which has artist named Christopher Franke ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/artist> <http://dbpedia.org/resource/Christopher_Franke> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Babylon_5"}}, "entities": [{"URI": "http://dbpedia.org/resource/The_Show_with_No_Name", "surface form": "name televesion show"}, {"URI": "http://dbpedia.org/resource/Christopher_Franke", "surface form": "Christopher Franke"}], "relations": [{"URI": "http://dbpedia.org/ontology/artist", "surface form": "artist"}]}, {"id": "1425", "question": [{"language": "en", "string": "name the races where bobby beasley took part ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Bobby_Beasley> <http://dbpedia.org/ontology/race> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cheltenham_Gold_Cup"}}, "entities": [{"URI": "http://dbpedia.org/resource/Bobby_Beasley", "surface form": "bobby beasley"}], "relations": [{"URI": "http://dbpedia.org/ontology/race", "surface form": "races"}]}, {"id": "1426", "question": [{"language": "en", "string": "What softwares were created by Apple Productivity Experience Group ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Apple_Productivity_Experience_Group> <http://dbpedia.org/ontology/product> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Remote_Desktop_Protocol"}}, "entities": [{"URI": "http://dbpedia.org/resource/Go_software", "surface form": "softwares"}, {"URI": "http://dbpedia.org/resource/Apple_Productivity_Experience_Group", "surface form": "Apple Productivity Experience Group"}], "relations": [{"URI": "http://dbpedia.org/ontology/product", "surface form": "Product"}]}, {"id": "1427", "question": [{"language": "en", "string": "List all that flows into the north sea?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/North_Sea> <http://dbpedia.org/property/inflow> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Waal_(river)"}}, "entities": [{"URI": "http://dbpedia.org/resource/North_Sea", "surface form": "north sea"}], "relations": [{"URI": "http://dbpedia.org/property/inflow", "surface form": "flows"}]}, {"id": "1428", "question": [{"language": "en", "string": "How many head of agencies were there in Nazi Germany?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/jurisdiction> <http://dbpedia.org/resource/Nazi_Germany> . ?x <http://dbpedia.org/ontology/leader> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "39"}}, "entities": [{"URI": "http://dbpedia.org/resource/Agencies_of_the_European_Union", "surface form": "agencies"}, {"URI": "http://dbpedia.org/resource/Nazi_Germany", "surface form": "Nazi Germany"}], "relations": [{"URI": "http://dbpedia.org/ontology/head", "surface form": "head"}]}, {"id": "1429", "question": [{"language": "en", "string": "List all the notable work of the screen writer who produced Frasier ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/notableWork> <http://dbpedia.org/resource/Frasier> . ?x <http://dbpedia.org/ontology/notableWork> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/ScreenWriter>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Frasier"}}, "entities": [{"URI": "http://dbpedia.org/resource/Frasier", "surface form": "Frasier"}], "relations": [{"URI": "http://dbpedia.org/ontology/notableWork", "surface form": "notable work"}, {"URI": "http://dbpedia.org/ontology/creator", "surface form": "screen writer"}, {"URI": "http://dbpedia.org/ontology/manufacturer", "surface form": "produced"}]}, {"id": "1430", "question": [{"language": "en", "string": "Who employed the person famous for the Boeing fa18ef Super Hornet?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/knownFor> <http://dbpedia.org/resource/Boeing_F/A-18E/F_Super_Hornet> . ?x <http://dbpedia.org/property/employer> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Person>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/McDonnell_Aircraft"}}, "entities": [{"URI": "http://dbpedia.org/resource/Boeing_F/A-18E/F_Super_Hornet", "surface form": "Boeing fa18ef Super Hornet"}], "relations": [{"URI": "http://dbpedia.org/ontology/knownFor", "surface form": "famous for"}, {"URI": "http://dbpedia.org/ontology/employer", "surface form": "employed"}]}, {"id": "1431", "question": [{"language": "en", "string": "List the awards given to the relatives of Gregorios Bernardakis."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Gregorios_Bernardakis> <http://dbpedia.org/ontology/relative> ?x . ?x <http://dbpedia.org/ontology/award> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nobel_Prize"}}, "entities": [{"URI": "http://dbpedia.org/resource/Gregorios_Bernardakis", "surface form": "Gregorios Bernardakis"}], "relations": [{"URI": "http://dbpedia.org/ontology/award", "surface form": "awards"}, {"URI": "http://dbpedia.org/ontology/relative", "surface form": "relatives"}]}, {"id": "1432", "question": [{"language": "en", "string": "What politician's partner is Diana Taylor ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/partner> <http://dbpedia.org/resource/Diana_Taylor_(superintendent)> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Politician>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Michael_Bloomberg"}}, "entities": [{"URI": "http://dbpedia.org/resource/Diana_Taylor_(superintendent)", "surface form": "Diana Taylor"}], "relations": [{"URI": "http://dbpedia.org/ontology/partner", "surface form": "partner"}, {"URI": "http://dbpedia.org/ontology/Politician", "surface form": "politician"}]}, {"id": "1433", "question": [{"language": "en", "string": "Which fields are covered by academic journals in the US?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/country> <http://dbpedia.org/resource/United_States> . ?x <http://dbpedia.org/property/discipline> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/AcademicJournal>}"}, "answers": {"uri": {"type": "literal", "xml:lang": "en", "value": "African-American literature and African-American culture"}}, "entities": [{"URI": "http://dbpedia.org/resource/United_States", "surface form": "US"}], "relations": [{"URI": "http://dbpedia.org/ontology/occupation", "surface form": "fields"}, {"URI": "http://dbpedia.org/property/cover", "surface form": "covered"}, {"URI": "http://dbpedia.org/ontology/abstract", "surface form": "academic journals"}]}, {"id": "1434", "question": [{"language": "en", "string": "Which football players have Newell's Old Boys as youthclub?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/youthclubs> <http://dbpedia.org/resource/Newell's_Old_Boys> } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Andr\u00e9s_Rebottaro"}}, "entities": [{"URI": "http://dbpedia.org/resource/Newell's_Old_Boys", "surface form": "Newell's Old Boys"}], "relations": [{"URI": "http://dbpedia.org/property/youthclubs", "surface form": "youthclub"}]}, {"id": "1435", "question": [{"language": "en", "string": "What are the teams for which Wilfred McDonald played for?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Wilfred_McDonald> <http://dbpedia.org/property/playedFor> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Detroit_Red_Wings"}}, "entities": [{"URI": "http://dbpedia.org/resource/Wilfred_McDonald", "surface form": "Wilfred McDonald"}], "relations": [{"URI": "http://dbpedia.org/property/playedFor", "surface form": "played for"}]}, {"id": "1436", "question": [{"language": "en", "string": "Who is the Artist of the singles whose film genre is Country music ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/genre> <http://dbpedia.org/resource/Country_music> . ?x <http://dbpedia.org/property/artist> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Single>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Randy_Travis"}}, "entities": [{"URI": "http://dbpedia.org/resource/Artist", "surface form": "Artist"}, {"URI": "http://dbpedia.org/resource/Country_music", "surface form": "Country music"}], "relations": [{"URI": "http://dbpedia.org/ontology/purpose", "surface form": "singles"}, {"URI": "http://dbpedia.org/ontology/genre", "surface form": "film genre"}]}, {"id": "1437", "question": [{"language": "en", "string": "Count all those whose youthclub performed at the 14-15 La Liga?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/season> <http://dbpedia.org/resource/2014\u201315_La_Liga> . ?uri <http://dbpedia.org/property/youthclubs> ?x . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Athlete>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/2013\u201314_La_Liga", "surface form": "14-15 La Liga"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": "count"}, {"URI": "http://dbpedia.org/ontology/artist", "surface form": "performed"}]}, {"id": "1438", "question": [{"language": "en", "string": "How many cities are around the sea which flows into the Atlantic?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/inflow> <http://dbpedia.org/resource/Atlantic_Ocean> . ?x <http://dbpedia.org/property/cities> ?uri . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/City>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "29"}}, "entities": [{"URI": "http://dbpedia.org/resource/Atlantic_Ocean", "surface form": "Atlantic"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": "cities"}, {"URI": "http://dbpedia.org/property/shore", "surface form": "sea"}, {"URI": "http://dbpedia.org/ontology/outflow", "surface form": "flows"}]}, {"id": "1439", "question": [{"language": "en", "string": "Who all are starring in the movies where director of photography is John Derek ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/cinematography> <http://dbpedia.org/resource/John_Derek> . ?x <http://dbpedia.org/property/starring> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}"}, "answers": {"uri": {"type": "literal", "xml:lang": "en", "value": ""}}, "entities": [{"URI": "http://dbpedia.org/resource/John_Derek", "surface form": "John Derek"}], "relations": [{"URI": "http://dbpedia.org/ontology/starring", "surface form": "starring"}, {"URI": "http://dbpedia.org/ontology/film", "surface form": "movies"}, {"URI": "http://dbpedia.org/ontology/director", "surface form": "director"}, {"URI": "http://dbpedia.org/ontology/picture", "surface form": "photography"}]}, {"id": "1440", "question": [{"language": "en", "string": "List the import people of Maryland Jockey Club ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Maryland_Jockey_Club> <http://dbpedia.org/property/keyPeople> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/George_Washington"}}, "entities": [{"URI": "http://dbpedia.org/resource/Maryland_Jockey_Club", "surface form": "Maryland Jockey Club"}], "relations": [{"URI": "http://dbpedia.org/ontology/meaning", "surface form": "import"}]}, {"id": "1441", "question": [{"language": "en", "string": "What is the total number of companies who use a language designed by Bjarne Stroustrup?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/designer> <http://dbpedia.org/resource/Bjarne_Stroustrup> . ?uri <http://dbpedia.org/property/programmingLanguage> ?x . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Company>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "41"}}, "entities": [{"URI": "http://dbpedia.org/resource/Companies_listed_on_the_New_York_Stock_Exchange_(J)", "surface form": "companies"}, {"URI": "http://dbpedia.org/resource/Bjarne_Stroustrup", "surface form": "Bjarne Stroustrup"}], "relations": [{"URI": "http://dbpedia.org/ontology/populationTotal", "surface form": "total"}, {"URI": "http://dbpedia.org/ontology/language", "surface form": "language"}, {"URI": "http://dbpedia.org/ontology/author", "surface form": "designed"}]}, {"id": "1442", "question": [{"language": "en", "string": "Who does Cam PLante plays for ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Cam_Plante> <http://dbpedia.org/property/playedFor> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Toronto_Maple_Leafs"}}, "entities": [{"URI": "http://dbpedia.org/resource/Cam_Plante", "surface form": "Cam PLante"}], "relations": [{"URI": "http://dbpedia.org/property/playedFor", "surface form": "plays for"}]}, {"id": "1443", "question": [{"language": "en", "string": "What famous work is derived from the one whose lyrics are written by Inma Gonzales?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/lyrics> <http://dbpedia.org/resource/Inma_Gonz\u00e1lez> . ?x <http://dbpedia.org/ontology/basedOn> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Don_Quixote"}}, "entities": [{"URI": "http://dbpedia.org/resource/Chilly_Gonzales", "surface form": "Inma Gonzales"}], "relations": [{"URI": "http://dbpedia.org/ontology/title", "surface form": "famous work"}, {"URI": "http://dbpedia.org/ontology/derivative", "surface form": "derived"}, {"URI": "http://dbpedia.org/ontology/lyrics", "surface form": "lyrics"}, {"URI": "http://dbpedia.org/ontology/writer", "surface form": "written"}]}, {"id": "1444", "question": [{"language": "en", "string": "How many awards have been given to the ones who died of lung cancer?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/deathCause> <http://dbpedia.org/resource/Lung_cancer> . ?x <http://dbpedia.org/ontology/award> ?uri . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Award>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/Lung_cancer", "surface form": "lung cancer"}], "relations": [{"URI": "http://dbpedia.org/ontology/award", "surface form": "awards"}, {"URI": "http://dbpedia.org/ontology/board", "surface form": "died"}]}, {"id": "1445", "question": [{"language": "en", "string": "Where the children of Ashot Grashi employed at?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/parent> <http://dbpedia.org/resource/Ashot_Grashi> . ?x <http://dbpedia.org/ontology/occupation> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chess"}}, "entities": [{"URI": "http://dbpedia.org/resource/Ashot_Barseghyan", "surface form": "Ashot Grashi"}], "relations": [{"URI": "http://dbpedia.org/ontology/parent", "surface form": "children"}, {"URI": "http://dbpedia.org/ontology/occupation", "surface form": "employed"}]}, {"id": "1446", "question": [{"language": "en", "string": "How many honorary title are there of the scientists who has Australian of the Year award ?"}], "query": {"sparql": " SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/award> <http://dbpedia.org/resource/Australian_of_the_Year> . ?x <http://dbpedia.org/ontology/award> ?uri }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "66"}}, "entities": [{"URI": "http://dbpedia.org/resource/Australian_of_the_Year", "surface form": " Australian of the Year award"}], "relations": [{"URI": "http://dbpedia.org/ontology/leaderTitle", "surface form": "honorary title"}, {"URI": "http://dbpedia.org/ontology/country", "surface form": ""}]}, {"id": "1447", "question": [{"language": "en", "string": "What is the alma mater of K. Terry Dornbush ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/K._Terry_Dornbush> <http://dbpedia.org/property/almaMater> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vanderbilt_University"}}, "entities": [{"URI": "http://dbpedia.org/resource/K", "surface form": "K"}, {"URI": "http://dbpedia.org/resource/K._Terry_Dornbush", "surface form": "Terry Dornbush"}], "relations": [{"URI": "http://dbpedia.org/ontology/almaMater", "surface form": "alma mater"}]}, {"id": "1448", "question": [{"language": "en", "string": "What is the birthplace of the office holder who is the predecessor of Brian Peddle ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Brian_Peddle> <http://dbpedia.org/property/predecessor> ?x . ?x <http://dbpedia.org/property/birthPlace> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/OfficeHolder>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Detroit"}}, "entities": [{"URI": "http://dbpedia.org/resource/Brian_Peddle", "surface form": "Brian Peddle"}], "relations": [{"URI": "http://dbpedia.org/ontology/birthPlace", "surface form": "birthplace"}, {"URI": "http://dbpedia.org/ontology/service", "surface form": "office holder"}, {"URI": "http://dbpedia.org/ontology/predecessor", "surface form": "predecessor"}]}, {"id": "1449", "question": [{"language": "en", "string": "What is the river which comes from Southend-on-Sea mountain?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/mouthMountain> <http://dbpedia.org/resource/Southend-on-Sea> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/River>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/River_Thames"}}, "entities": [{"URI": "http://dbpedia.org/resource/Southend-on-Sea", "surface form": "Southend-on-Sea mountain"}], "relations": [{"URI": "http://dbpedia.org/ontology/river", "surface form": "river"}]}, {"id": "1450", "question": [{"language": "en", "string": "What is the birth location of the advisor of Richard Hofstadter ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Richard_Hofstadter> <http://dbpedia.org/property/doctoralAdvisor> ?x . ?x <http://dbpedia.org/ontology/birthPlace> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Papillion,_Nebraska"}}, "entities": [{"URI": "http://dbpedia.org/resource/Richard_Hofstadter", "surface form": "Richard Hofstadter"}], "relations": [{"URI": "http://dbpedia.org/property/doctoralAdvisor", "surface form": "advisor"}, {"URI": "http://dbpedia.org/ontology/birthPlace", "surface form": "birth location"}]}, {"id": "1451", "question": [{"language": "en", "string": "Who is the prime minister that Michael Jeffery served?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Michael_Jeffery> <http://dbpedia.org/property/primeminister> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kevin_Rudd"}}, "entities": [{"URI": "http://dbpedia.org/resource/Michael_Jeffery", "surface form": "Michael Jeffery"}], "relations": [{"URI": "http://dbpedia.org/property/primeminister", "surface form": "minister prime"}]}, {"id": "1452", "question": [{"language": "en", "string": "How many people are known for Dragons' Den?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE {?uri <http://dbpedia.org/ontology/knownFor> <http://dbpedia.org/resource/Dragons'_Den_(UK_TV_series)> . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/Dragons'_Den_(UK_TV_series)", "surface form": "Dragons' Den"}], "relations": [{"URI": "http://dbpedia.org/ontology/knownFor", "surface form": "known for"}]}, {"id": "1453", "question": [{"language": "en", "string": "How many different writers have written for Jump Square?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/magazine> <http://dbpedia.org/resource/Jump_Square> . ?x <http://dbpedia.org/property/author> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "53"}}, "entities": [{"URI": "http://dbpedia.org/resource/Jump_Square", "surface form": "Jump Square"}], "relations": [{"URI": "http://dbpedia.org/ontology/writer", "surface form": "writers"}, {"URI": "http://dbpedia.org/ontology/writer", "surface form": "written"}]}, {"id": "1454", "question": [{"language": "en", "string": "List the awards given to the important people of Aardman Animations?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Aardman_Animations> <http://dbpedia.org/ontology/keyPerson> ?x . ?x <http://dbpedia.org/ontology/award> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Academy_Awards"}}, "entities": [{"URI": "http://dbpedia.org/resource/Aardman_Animations", "surface form": "Aardman Animations"}], "relations": [{"URI": "http://dbpedia.org/ontology/award", "surface form": "awards"}]}, {"id": "1455", "question": [{"language": "en", "string": "Name the members of European Go Federation?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/European_Go_Federation> <http://dbpedia.org/property/membership> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Denmark"}}, "entities": [{"URI": "http://dbpedia.org/resource/Europe", "surface form": "European Go Federation"}, {"URI": "http://dbpedia.org/resource/European_Go_Federation", "surface form": "European Go Federation"}], "relations": [{"URI": "http://dbpedia.org/property/name", "surface form": "name"}, {"URI": "http://dbpedia.org/ontology/membership", "surface form": "members"}, {"URI": "http://dbpedia.org/ontology/country", "surface form": ""}]}, {"id": "1456", "question": [{"language": "en", "string": "Grey gppse and eristoff is produced by which company?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Grey_Goose_(vodka)> <http://dbpedia.org/property/manufacturer> ?uri. <http://dbpedia.org/resource/Eristoff> <http://dbpedia.org/property/manufacturer> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bacardi"}}, "entities": [{"URI": "http://dbpedia.org/resource/Eristoff", "surface form": "Eristoff"}], "relations": [{"URI": "http://dbpedia.org/ontology/head", "surface form": "grey gppse"}, {"URI": "http://dbpedia.org/ontology/manufacturer", "surface form": "produced"}, {"URI": "http://dbpedia.org/ontology/company", "surface form": "company"}]}, {"id": "1457", "question": [{"language": "en", "string": "What is the order of George Frisbie Hoar?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/George_Frisbie_Hoar> <http://dbpedia.org/property/order> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/United_States_Senate"}}, "entities": [{"URI": "http://dbpedia.org/resource/George_Frisbie_Hoar", "surface form": "George Frisbie Hoar"}], "relations": [{"URI": "http://dbpedia.org/property/order", "surface form": "order"}]}, {"id": "1458", "question": [{"language": "en", "string": " Count the participants of the NBA."}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE {?uri <http://dbpedia.org/ontology/league> <http://dbpedia.org/resource/National_Basketball_Association> . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "896"}}, "entities": [{"URI": "http://dbpedia.org/resource/National_Basketball_Association", "surface form": "NBA"}], "relations": [{"URI": "http://dbpedia.org/ontology/type", "surface form": "Count"}, {"URI": "http://dbpedia.org/ontology/participant", "surface form": "participants"}]}, {"id": "1459", "question": [{"language": "en", "string": "Who has stock in the railway lines managed by Norfolk Southern Railway?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/system> <http://dbpedia.org/resource/Norfolk_Southern_Railway> . ?x <http://dbpedia.org/property/owner> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/RailwayLine>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Norfolk_Southern_Railway"}}, "entities": [{"URI": "http://dbpedia.org/resource/Norfolk_Southern_Railway", "surface form": "Norfolk Southern Railway"}], "relations": [{"URI": "http://dbpedia.org/ontology/languageFamily", "surface form": "stock"}, {"URI": "http://dbpedia.org/ontology/servingRailwayLine", "surface form": "railway lines"}, {"URI": "http://dbpedia.org/ontology/leader", "surface form": "managed"}]}, {"id": "1460", "question": [{"language": "en", "string": "How many writers speak a language belonging to the Germanic kind of languages?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/languageFamily> <http://dbpedia.org/resource/Germanic_languages> . ?uri <http://dbpedia.org/property/language> ?x . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Writer>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "542"}}, "entities": [{"URI": "http://dbpedia.org/resource/Germanic_languages", "surface form": "Germanic"}], "relations": [{"URI": "http://dbpedia.org/ontology/writer", "surface form": "writers"}, {"URI": "http://dbpedia.org/ontology/language", "surface form": "speak"}, {"URI": "http://dbpedia.org/ontology/language", "surface form": "language"}, {"URI": "http://dbpedia.org/ontology/affiliation", "surface form": "belonging"}, {"URI": "http://dbpedia.org/ontology/languageFamily", "surface form": "languages"}]}, {"id": "1461", "question": [{"language": "en", "string": "Enumerate the cars related to the ones assembled in Toluca?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/assembly> <http://dbpedia.org/resource/Toluca> . ?x <http://dbpedia.org/property/related> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "20"}}, "entities": [{"URI": "http://dbpedia.org/resource/Toluca", "surface form": "Toluca"}], "relations": [{"URI": "http://dbpedia.org/property/quote", "surface form": "enumerate"}, {"URI": "http://dbpedia.org/ontology/management", "surface form": "cars"}, {"URI": "http://dbpedia.org/ontology/related", "surface form": "related"}, {"URI": "http://dbpedia.org/property/assembly", "surface form": "assembled"}]}, {"id": "1462", "question": [{"language": "en", "string": "Name the basketball players drafted by Los Angeles Clippers ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/draftTeam> <http://dbpedia.org/resource/Los_Angeles_Clippers> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/BasketballPlayer>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Daniel_Ewing"}}, "entities": [{"URI": "http://dbpedia.org/resource/The_Players_(film)", "surface form": "basketball players"}, {"URI": "http://dbpedia.org/resource/Los_Angeles_Clippers", "surface form": "Los Angeles Clippers"}], "relations": [{"URI": "http://dbpedia.org/property/draftTeam", "surface form": "drafted"}, {"URI": "http://dbpedia.org/ontology/BasketballPlayer", "surface form": "basketball player"}]}, {"id": "1463", "question": [{"language": "en", "string": "Count the number of other product of the banks whose one of the product is Wealth management ?"}], "query": {"sparql": " SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/product> <http://dbpedia.org/resource/Wealth_management> . ?x <http://dbpedia.org/ontology/product> ?uri }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "1199"}}, "entities": [{"URI": "http://dbpedia.org/resource/Wealth_management", "surface form": "Wealth management"}], "relations": [{"URI": "http://dbpedia.org/ontology/type", "surface form": "count"}, {"URI": "http://dbpedia.org/ontology/product", "surface form": "product"}, {"URI": "http://dbpedia.org/ontology/series", "surface form": "banks"}, {"URI": "http://dbpedia.org/ontology/product", "surface form": "product"}]}, {"id": "1464", "question": [{"language": "en", "string": "Under which president was timothy l. woodruff a lieutenant?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/lieutenant> <http://dbpedia.org/resource/Timothy_L._Woodruff> } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Benjamin_Odell_(politician)"}}, "entities": [{"URI": "http://dbpedia.org/resource/Timothy_L._Woodruff", "surface form": "timothy l. woodruff"}], "relations": [{"URI": "http://dbpedia.org/ontology/president", "surface form": "president"}, {"URI": "http://dbpedia.org/ontology/lieutenant", "surface form": "lieutenant"}]}, {"id": "1465", "question": [{"language": "en", "string": "How many have been venerateds in Islam and Judaism?"}], "query": {"sparql": " SELECT DISTINCT COUNT(?uri) WHERE { ?uri <http://dbpedia.org/ontology/veneratedIn> <http://dbpedia.org/resource/Islam> . ?uri <http://dbpedia.org/ontology/veneratedIn> <http://dbpedia.org/resource/Judaism>} "}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "25"}}, "entities": [{"URI": "http://dbpedia.org/resource/Islam", "surface form": "Islam"}, {"URI": "http://dbpedia.org/resource/Judaism", "surface form": "Judaism"}], "relations": [{"URI": "http://dbpedia.org/ontology/veneratedIn", "surface form": "venerateds"}]}, {"id": "1466", "question": [{"language": "en", "string": "Which training center of William Anthony has also alumni named Philip W Pillsbury ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/William_Anthony_(artist)> <http://dbpedia.org/property/training> ?uri. <http://dbpedia.org/resource/Philip_W._Pillsbury> <http://dbpedia.org/property/education> ?uri} "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Yale_University"}}, "entities": [{"URI": "http://dbpedia.org/resource/William_Anthony", "surface form": "William Anthony"}, {"URI": "http://dbpedia.org/resource/W", "surface form": "W"}, {"URI": "http://dbpedia.org/resource/Philip_W._Pillsbury", "surface form": "Philip Pillsbury"}], "relations": [{"URI": "http://dbpedia.org/ontology/education", "surface form": "training center"}, {"URI": "http://dbpedia.org/ontology/alumni", "surface form": "alumni"}]}, {"id": "1467", "question": [{"language": "en", "string": "What awards have been given to people schooled in the Everton park state high?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/education> <http://dbpedia.org/resource/Everton_Park_State_High_School> . ?x <http://dbpedia.org/property/awards> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Person>}"}, "answers": {"uri": {"type": "literal", "xml:lang": "en", "value": "Various awards, including:\n*1 Academy Award \n*1 BAFTA Award \n*1 Emmy Award (Primetime) \n*2 Golden Globe Awards\n*4 Screen Actors Guild Awards\n*1 Tony Award"}}, "entities": [{"URI": "http://dbpedia.org/resource/Everton_Park_State_High_School", "surface form": "the Everton park state high"}], "relations": [{"URI": "http://dbpedia.org/ontology/award", "surface form": "awards"}, {"URI": "http://dbpedia.org/ontology/ground", "surface form": "schooled"}, {"URI": "http://dbpedia.org/ontology/manager", "surface form": "high"}]}, {"id": "1468", "question": [{"language": "en", "string": "List the authors of the musicals whose songwriter is Richard M. Sherman."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/musicBy> <http://dbpedia.org/resource/Richard_M._Sherman> . ?x <http://dbpedia.org/ontology/author> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Musical>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bryan_Forbes"}}, "entities": [{"URI": "http://dbpedia.org/resource/Eminem", "surface form": "M"}, {"URI": "http://dbpedia.org/resource/Richard_M._Sherman", "surface form": "Richard Sherman"}], "relations": [{"URI": "http://dbpedia.org/ontology/writer", "surface form": "authors"}, {"URI": "http://dbpedia.org/ontology/musicalArtist", "surface form": "musicals"}, {"URI": "http://dbpedia.org/property/author", "surface form": "songwriter"}]}, {"id": "1469", "question": [{"language": "en", "string": "Give me some organizations working for Environmentalism"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/purpose> <http://dbpedia.org/resource/Environmentalism> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Organisation>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/An_Taisce"}}, "entities": [{"URI": "http://dbpedia.org/resource/Environmentalism", "surface form": "Environmentalism"}], "relations": [{"URI": "http://dbpedia.org/ontology/movement", "surface form": "organizations"}, {"URI": "http://dbpedia.org/ontology/movement", "surface form": "working"}]}, {"id": "1470", "question": [{"language": "en", "string": "What faith of Buddhist Tai Hung College is also the acadmeic interest of Paul Demiville ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Paul_Demi\u00e9ville> <http://dbpedia.org/property/fields> ?uri. <http://dbpedia.org/resource/Buddhist_Tai_Hung_College> <http://dbpedia.org/property/religion> ?uri} "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Buddhism"}}, "entities": [{"URI": "http://dbpedia.org/resource/Buddhist_Tai_Hung_College", "surface form": "Buddhist Tai Hung College"}, {"URI": "http://dbpedia.org/resource/Paul", "surface form": "Paul Demiville"}], "relations": [{"URI": "http://dbpedia.org/property/religion", "surface form": "faith"}, {"URI": "http://dbpedia.org/ontology/abstract", "surface form": "acadmeic"}]}, {"id": "1471", "question": [{"language": "en", "string": "Count the number of offices held by people who have their allegiances with the american civil war union?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/allegiance> <http://dbpedia.org/resource/Union_(American_Civil_War)> . ?x <http://dbpedia.org/property/office> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "362"}}, "entities": [{"URI": "http://dbpedia.org/resource/Union_(American_Civil_War)", "surface form": "union"}], "relations": [{"URI": "http://dbpedia.org/ontology/type", "surface form": "count"}, {"URI": "http://dbpedia.org/ontology/commander", "surface form": "offices"}, {"URI": "http://dbpedia.org/ontology/office", "surface form": "held"}, {"URI": "http://dbpedia.org/property/allegiance", "surface form": "allegiances"}]}, {"id": "1472", "question": [{"language": "en", "string": "What are all the TV shows which are related to the ones produced by Julie Gardner?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/executiveProducer> <http://dbpedia.org/resource/Julie_Gardner> . ?uri <http://dbpedia.org/ontology/related> ?x . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "14"}}, "entities": [{"URI": "http://dbpedia.org/resource/Lockheed_T-33", "surface form": "TV"}, {"URI": "http://dbpedia.org/resource/Julie_Gardner", "surface form": "Julie Gardner"}], "relations": [{"URI": "http://dbpedia.org/ontology/place", "surface form": "shows"}, {"URI": "http://dbpedia.org/ontology/related", "surface form": "related"}, {"URI": "http://dbpedia.org/ontology/manufacturer", "surface form": "produced"}]}, {"id": "1473", "question": [{"language": "en", "string": "For how many different presidents have people in the Continental Army served?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/branch> <http://dbpedia.org/resource/Continental_Army> . ?x <http://dbpedia.org/property/president> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "32"}}, "entities": [{"URI": "http://dbpedia.org/resource/Continental_Army", "surface form": "Continental Army"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": "presidents"}, {"URI": "http://dbpedia.org/ontology/regionServed", "surface form": "served"}]}, {"id": "1474", "question": [{"language": "en", "string": "How many movies have been cinematographed by Jordan Cronenweth?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE {?uri <http://dbpedia.org/property/cinematography> <http://dbpedia.org/resource/Jordan_Cronenweth> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "21"}}, "entities": [{"URI": "http://dbpedia.org/resource/Jordan_Cronenweth", "surface form": "Jordan Cronenweth"}], "relations": [{"URI": "http://dbpedia.org/ontology/film", "surface form": "movies"}, {"URI": "http://dbpedia.org/ontology/cinematography", "surface form": "cinematographed"}]}, {"id": "1475", "question": [{"language": "en", "string": "What are all the prizes won by the writer of A Grand Day Out?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/A_Grand_Day_Out> <http://dbpedia.org/ontology/writer> ?x . ?x <http://dbpedia.org/ontology/award> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Academy_Awards"}}, "entities": [{"URI": "http://dbpedia.org/resource/A", "surface form": "A"}, {"URI": "http://dbpedia.org/resource/A_Grand_Day_Out", "surface form": "Grand Day Out"}], "relations": [{"URI": "http://dbpedia.org/ontology/award", "surface form": "prizes"}, {"URI": "http://dbpedia.org/ontology/child", "surface form": "won"}, {"URI": "http://dbpedia.org/ontology/writer", "surface form": "writer"}]}, {"id": "1476", "question": [{"language": "en", "string": "What tv show is created by Brian Graden?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/developer> <http://dbpedia.org/resource/Brian_Graden> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/South_Park"}}, "entities": [{"URI": "http://dbpedia.org/resource/Brian_Graden", "surface form": "Brian Graden"}], "relations": [{"URI": "http://dbpedia.org/ontology/developer", "surface form": "created"}]}, {"id": "1477", "question": [{"language": "en", "string": "In which country is there a dam on the Awash river?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/river> <http://dbpedia.org/resource/Awash_River> . ?x <http://dbpedia.org/property/country> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Dam>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ethiopia"}}, "entities": [{"URI": "http://dbpedia.org/resource/Awash_River", "surface form": "Awash river"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": "country"}, {"URI": "http://dbpedia.org/ontology/dam", "surface form": "dam"}]}, {"id": "1478", "question": [{"language": "en", "string": "Count the total religions followed by the ones living in England."}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/residence> <http://dbpedia.org/resource/England> . ?x <http://dbpedia.org/property/religion> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "2"}}, "entities": [{"URI": "http://dbpedia.org/resource/England", "surface form": "England"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": "count"}, {"URI": "http://dbpedia.org/property/result", "surface form": "total religions"}, {"URI": "http://dbpedia.org/ontology/occupation", "surface form": "living"}]}, {"id": "1479", "question": [{"language": "en", "string": "Who wrote the play in which a character called Stella Kowalski exists?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/characters> <http://dbpedia.org/resource/Stella_Kowalski> . ?x <http://dbpedia.org/property/writer> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Play>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tennessee_Williams"}}, "entities": [{"URI": "http://dbpedia.org/resource/Stella", "surface form": "Stella Kowalski exists"}], "relations": [{"URI": "http://dbpedia.org/ontology/author", "surface form": "wrote"}, {"URI": "http://dbpedia.org/ontology/starring", "surface form": "play"}, {"URI": "http://dbpedia.org/ontology/status", "surface form": "character"}, {"URI": "http://dbpedia.org/ontology/alias", "surface form": "called"}]}, {"id": "1480", "question": [{"language": "en", "string": "What is the region of Kim Sawchuk ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Kim_Sawchuk> <http://dbpedia.org/property/region> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/North_America"}}, "entities": [{"URI": "http://dbpedia.org/resource/Kim_Sawchuk", "surface form": "Kim Sawchuk"}], "relations": [{"URI": "http://dbpedia.org/ontology/region", "surface form": "region"}]}, {"id": "1481", "question": [{"language": "en", "string": "What are some cars related to the ones with a V8?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/engine> <http://dbpedia.org/resource/V8_engine> . ?x <http://dbpedia.org/property/related> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Automobile>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chevrolet_Chevelle"}}, "entities": [{"URI": "http://dbpedia.org/resource/V8_(beverage)", "surface form": "V8"}], "relations": [{"URI": "http://dbpedia.org/ontology/management", "surface form": "cars"}, {"URI": "http://dbpedia.org/ontology/related", "surface form": "related"}]}, {"id": "1482", "question": [{"language": "en", "string": "What are the important buildings of the architect whose one of the significant building is Krasnye Vorota?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/significantBuilding> <http://dbpedia.org/resource/Krasnye_Vorota_(Moscow_Metro)> . ?x <http://dbpedia.org/ontology/significantBuilding> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Architect>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Moscow"}}, "entities": [{"URI": "http://dbpedia.org/resource/Krasnye_Vorota_(Moscow_Metro)", "surface form": "Krasnye Vorota"}], "relations": [{"URI": "http://dbpedia.org/ontology/production", "surface form": "buildings"}, {"URI": "http://dbpedia.org/ontology/architect", "surface form": "architect"}, {"URI": "http://dbpedia.org/ontology/building", "surface form": "building"}]}, {"id": "1483", "question": [{"language": "en", "string": "Name the common institute of Robert hall and Erica Frank ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Robert_Hall_(economist)> <http://dbpedia.org/ontology/institution> ?uri. <http://dbpedia.org/resource/Erica_Frank> <http://dbpedia.org/ontology/institution> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Stanford_University"}}, "entities": [{"URI": "http://dbpedia.org/resource/Robert_Newton_Hall", "surface form": "Robert hall"}, {"URI": "http://dbpedia.org/resource/Erica_Frank", "surface form": "Erica Frank"}], "relations": [{"URI": "http://dbpedia.org/property/name", "surface form": "name"}, {"URI": "http://dbpedia.org/ontology/institution", "surface form": "common institute"}]}, {"id": "1484", "question": [{"language": "en", "string": "In how many places have Irishmen died?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/birthPlace> <http://dbpedia.org/resource/Ireland> . ?x <http://dbpedia.org/ontology/deathPlace> ?uri . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Location>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "1465"}}, "entities": [{"URI": "http://dbpedia.org/resource/William_Tennant_(United_Irishmen)", "surface form": "Irishmen"}], "relations": [{"URI": "http://dbpedia.org/ontology/place", "surface form": "places"}, {"URI": "http://dbpedia.org/ontology/deathDate", "surface form": "died"}]}, {"id": "1485", "question": [{"language": "en", "string": "Count the number of fields of the scientists whose one of the fields is Sanskrit?"}], "query": {"sparql": " SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/fields> <http://dbpedia.org/resource/Sanskrit> . ?x <http://dbpedia.org/property/fields> ?uri }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "14"}}, "entities": [{"URI": "http://dbpedia.org/resource/Scientist", "surface form": "scientists"}, {"URI": "http://dbpedia.org/resource/Sanskrit", "surface form": "Sanskrit"}], "relations": [{"URI": "http://dbpedia.org/property/fields", "surface form": "fields"}, {"URI": "http://dbpedia.org/property/fields", "surface form": "fields"}]}, {"id": "1486", "question": [{"language": "en", "string": "What is the debut team of ngel Escobar ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/\u00c1ngel_Escobar> <http://dbpedia.org/property/debutteam> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/San_Francisco_Giants"}}, "entities": [{"URI": "http://dbpedia.org/resource/Edwin_Escobar", "surface form": "Ngel escobar"}], "relations": [{"URI": "http://dbpedia.org/property/debutteam", "surface form": "debut team"}]}, {"id": "1487", "question": [{"language": "en", "string": "Give me a list of everyone who married the musicians signed up with Pablo Records?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/label> <http://dbpedia.org/resource/Pablo_Records> . ?uri <http://dbpedia.org/ontology/spouse> ?x . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pearl_Bailey"}}, "entities": [{"URI": "http://dbpedia.org/resource/Musicians_Institute", "surface form": "musicians"}, {"URI": "http://dbpedia.org/resource/Pablo_Records", "surface form": "Pablo Records"}], "relations": [{"URI": "http://dbpedia.org/property/spouse", "surface form": "married"}, {"URI": "http://dbpedia.org/ontology/movement", "surface form": "signed"}]}, {"id": "1488", "question": [{"language": "en", "string": "Name the TV show whose cast member is Companion (Doctor Who) and is related to The Sarah Jane Adventures?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/starring> <http://dbpedia.org/resource/Companion_(Doctor_Who)> . ?uri <http://dbpedia.org/ontology/related> <http://dbpedia.org/resource/The_Sarah_Jane_Adventures> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Doctor_Who"}}, "entities": [{"URI": "http://dbpedia.org/resource/Tv_test_pattern", "surface form": "TV"}, {"URI": "http://dbpedia.org/resource/Doctor_Who", "surface form": "Companion (Doctor Who)"}, {"URI": "http://dbpedia.org/resource/The_Sarah_Jane_Adventures", "surface form": "The Sarah Jane Adventures"}], "relations": [{"URI": "http://dbpedia.org/property/name", "surface form": "name"}, {"URI": "http://dbpedia.org/property/show", "surface form": "show"}, {"URI": "http://dbpedia.org/ontology/type", "surface form": "cast member"}, {"URI": "http://dbpedia.org/ontology/related", "surface form": "related"}]}, {"id": "1489", "question": [{"language": "en", "string": "What is the predecessor of the car engine which was succeeded by BMW M43 ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/successor> <http://dbpedia.org/resource/BMW_M43> . ?x <http://dbpedia.org/property/predecessor> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Engine>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/BMW_M10"}}, "entities": [{"URI": "http://dbpedia.org/resource/BMW", "surface form": "BMW"}, {"URI": "http://dbpedia.org/resource/BMW_M43", "surface form": "M43"}, {"URI": "http://dbpedia.org/resource/BMW_M43", "surface form": "M43"}, {"URI": "http://dbpedia.org/resource/BMW", "surface form": "BMW"}], "relations": [{"URI": "http://dbpedia.org/ontology/predecessor", "surface form": "predecessor"}, {"URI": "http://dbpedia.org/property/engine", "surface form": "car engine"}, {"URI": "http://dbpedia.org/ontology/successor", "surface form": "succeeded"}]}, {"id": "1490", "question": [{"language": "en", "string": "Give me a count of musical artists collaborating with Waylon Jennings?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE {?uri <http://dbpedia.org/ontology/associatedMusicalArtist> <http://dbpedia.org/resource/Waylon_Jennings> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/MusicalArtist>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "21"}}, "entities": [{"URI": "http://dbpedia.org/resource/Waylon_Jennings", "surface form": "Waylon Jennings"}], "relations": [{"URI": "http://dbpedia.org/ontology/associatedMusicalArtist", "surface form": "musical"}, {"URI": "http://dbpedia.org/ontology/MusicalArtist", "surface form": "musical artist"}]}, {"id": "1491", "question": [{"language": "en", "string": "Count everyone who was in the military unit which is structured like the Marine Aircraft Group 13 ?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/commandStructure> <http://dbpedia.org/resource/Marine_Aircraft_Group_13> . ?uri <http://dbpedia.org/ontology/militaryUnit> ?x . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "6"}}, "entities": [{"URI": "http://dbpedia.org/resource/Marine_Aircraft_Group_13", "surface form": "Marine Aircraft Group 13"}], "relations": [{"URI": "http://dbpedia.org/property/commandStructure", "surface form": "structured"}, {"URI": "http://dbpedia.org/ontology/militaryUnit", "surface form": "military unit"}]}, {"id": "1492", "question": [{"language": "en", "string": "List the houses of Parliament of India ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Parliament_of_India> <http://dbpedia.org/property/houses> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rajya_Sabha"}}, "entities": [{"URI": "http://dbpedia.org/resource/Parliament_of_India", "surface form": "Parliament of India"}], "relations": [{"URI": "http://dbpedia.org/property/houses", "surface form": "houses"}]}, {"id": "1493", "question": [{"language": "en", "string": "Count the number of movies whose distributor is RKO Pictures and director of photography is Gregg Toland?"}], "query": {"sparql": " SELECT DISTINCT COUNT(?uri) WHERE {?uri <http://dbpedia.org/property/distributor> <http://dbpedia.org/resource/RKO_Pictures> . ?uri <http://dbpedia.org/ontology/cinematography> <http://dbpedia.org/resource/Gregg_Toland> } "}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "5"}}, "entities": [{"URI": "http://dbpedia.org/resource/RKO_281", "surface form": "RKO"}, {"URI": "http://dbpedia.org/resource/TriStar_Pictures", "surface form": "Pictures"}, {"URI": "http://dbpedia.org/resource/Gregg_Toland", "surface form": "Gregg Toland"}], "relations": [{"URI": "http://dbpedia.org/ontology/type", "surface form": "count"}, {"URI": "http://dbpedia.org/ontology/film", "surface form": "movies"}, {"URI": "http://dbpedia.org/ontology/distributor", "surface form": "distributor"}, {"URI": "http://dbpedia.org/ontology/director", "surface form": "director"}, {"URI": "http://dbpedia.org/ontology/picture", "surface form": "photography"}]}, {"id": "1494", "question": [{"language": "en", "string": "In how many places can I find wine made of Vitis vinifera grapes?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/species> <http://dbpedia.org/resource/Vitis_vinifera> . ?x <http://dbpedia.org/ontology/wineRegion> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "366"}}, "entities": [{"URI": "http://dbpedia.org/resource/I", "surface form": "I"}, {"URI": "http://dbpedia.org/resource/Kyoho_(grape)", "surface form": "Vitis vinifera grapes"}], "relations": [{"URI": "http://dbpedia.org/ontology/domain", "surface form": "places"}, {"URI": "http://dbpedia.org/ontology/wineRegion", "surface form": "wine"}]}, {"id": "1495", "question": [{"language": "en", "string": "Which gadgets are made by companies of New Taipei City?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/locationCity> <http://dbpedia.org/resource/New_Taipei_City> . ?uri <http://dbpedia.org/ontology/manufacturer> ?x . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/NanoBook"}}, "entities": [{"URI": "http://dbpedia.org/resource/Companies_listed_on_the_New_York_Stock_Exchange_(J)", "surface form": "companies"}, {"URI": "http://dbpedia.org/resource/New_Taipei_City", "surface form": "New Taipei City"}], "relations": [{"URI": "http://dbpedia.org/property/locationCity", "surface form": "city"}, {"URI": "http://dbpedia.org/ontology/manufacturer", "surface form": "made by"}]}, {"id": "1496", "question": [{"language": "en", "string": "What is the hub of Wan Air ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Wan_Air> <http://dbpedia.org/property/hubs> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/France"}}, "entities": [{"URI": "http://dbpedia.org/resource/Wan_Air", "surface form": "Wan Air"}], "relations": [{"URI": "http://dbpedia.org/property/hubs", "surface form": "hub"}]}, {"id": "1497", "question": [{"language": "en", "string": "Who are the members of organizations headquartered at Amstelveen?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/headquarters> <http://dbpedia.org/resource/Amstelveen> . ?x <http://dbpedia.org/property/membership> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Organisation>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Denmark"}}, "entities": [{"URI": "http://dbpedia.org/resource/Amstelveen", "surface form": "Amstelveen"}], "relations": [{"URI": "http://dbpedia.org/ontology/part", "surface form": "members"}, {"URI": "http://dbpedia.org/ontology/company", "surface form": "organizations"}, {"URI": "http://dbpedia.org/ontology/headquarter", "surface form": "headquartered"}]}, {"id": "1498", "question": [{"language": "en", "string": "Which comic characters are painted by Bill Finger?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/creator> <http://dbpedia.org/resource/Bill_Finger> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/ComicsCharacter>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Doiby_Dickles"}}, "entities": [{"URI": "http://dbpedia.org/resource/Bill_Finger", "surface form": "Bill Finger"}], "relations": [{"URI": "http://dbpedia.org/ontology/creator", "surface form": "painted by"}, {"URI": "http://dbpedia.org/ontology/ComicsCharacter", "surface form": "comic characters"}]}, {"id": "1499", "question": [{"language": "en", "string": "Name few television shows's anchored by Ryan Seacrest?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/presenter> <http://dbpedia.org/resource/Ryan_Seacrest> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/American_Idol"}}, "entities": [{"URI": "http://dbpedia.org/resource/Ryan_Seacrest", "surface form": "Ryan Seacrest"}], "relations": [{"URI": "http://dbpedia.org/property/name", "surface form": "name"}, {"URI": "http://dbpedia.org/ontology/televisionSeries", "surface form": "television shows"}, {"URI": "http://dbpedia.org/ontology/strength", "surface form": "anchored"}]}, {"id": "1500", "question": [{"language": "en", "string": "List education institute of the engineers whose alma mater is ChristChurch ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/education> <http://dbpedia.org/resource/Christchurch> . ?x <http://dbpedia.org/ontology/education> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Engineer>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/University_of_Canterbury"}}, "entities": [{"URI": "http://dbpedia.org/resource/Christchurch", "surface form": "ChristChurch"}], "relations": [{"URI": "http://dbpedia.org/ontology/university", "surface form": "education institute"}, {"URI": "http://dbpedia.org/ontology/architect", "surface form": "engineers"}, {"URI": "http://dbpedia.org/ontology/almaMater", "surface form": "alma mater"}]}, {"id": "1501", "question": [{"language": "en", "string": "What do the banks owned by Norwegian ministry of finance produce?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/parentCompany> <http://dbpedia.org/resource/Ministry_of_Finance_(Norway)> . ?x <http://dbpedia.org/property/products> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Bank>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/American_Express"}}, "entities": [{"URI": "http://dbpedia.org/resource/Norway", "surface form": "Norwegian ministry"}, {"URI": "http://dbpedia.org/resource/Norwegian_Air_Shuttle", "surface form": "Norwegian ministry"}], "relations": [{"URI": "http://dbpedia.org/ontology/series", "surface form": "banks"}, {"URI": "http://dbpedia.org/ontology/owner", "surface form": "owned"}, {"URI": "http://dbpedia.org/ontology/capital", "surface form": "finance produce"}, {"URI": "http://dbpedia.org/ontology/country", "surface form": ""}]}, {"id": "1502", "question": [{"language": "en", "string": "Which televison shows have location as Massachusetts ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/location> <http://dbpedia.org/resource/Massachusetts> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dawson's_Creek"}}, "entities": [{"URI": "http://dbpedia.org/resource/Massachusetts", "surface form": "Massachusetts"}], "relations": [{"URI": "http://dbpedia.org/ontology/transmission", "surface form": "televison"}, {"URI": "http://dbpedia.org/ontology/place", "surface form": "shows"}, {"URI": "http://dbpedia.org/ontology/location", "surface form": "location"}]}, {"id": "1503", "question": [{"language": "en", "string": "Which clubs play in the La Liga?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/league> <http://dbpedia.org/resource/La_Liga> . ?x <http://dbpedia.org/property/name> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/SoccerClub>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vicente_Piera"}}, "entities": [{"URI": "http://dbpedia.org/resource/La_Liga", "surface form": "La Liga"}], "relations": [{"URI": "http://dbpedia.org/property/clubs", "surface form": "clubs"}, {"URI": "http://dbpedia.org/ontology/starring", "surface form": "play"}]}, {"id": "1504", "question": [{"language": "en", "string": "How many people have coached the players of Middlesbrough FC?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/team> <http://dbpedia.org/resource/Middlesbrough_F.C.> . ?x <http://dbpedia.org/ontology/manager> ?uri . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Person>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "44"}}, "entities": [{"URI": "http://dbpedia.org/resource/Middlesbrough_F.C.", "surface form": "Middlesbrough FC"}], "relations": [{"URI": "http://dbpedia.org/ontology/ground", "surface form": "coached"}, {"URI": "http://dbpedia.org/ontology/participant", "surface form": "players"}]}, {"id": "1505", "question": [{"language": "en", "string": "What are the Languages of Zabbaleen ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Zabbaleen> <http://dbpedia.org/property/languages> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Egyptian_Arabic"}}, "entities": [{"URI": "http://dbpedia.org/resource/Zabbaleen", "surface form": "Languages of Zabbaleen"}], "relations": [{"URI": "http://dbpedia.org/property/languages", "surface form": "Languages"}]}, {"id": "1506", "question": [{"language": "en", "string": "Who has rented the stadiums owned by Toronto?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/owner> <http://dbpedia.org/resource/Toronto> . ?x <http://dbpedia.org/property/tenants> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Stadium>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/GTA_Grizzlies"}}, "entities": [{"URI": "http://dbpedia.org/resource/Toronto", "surface form": "Toronto"}], "relations": [{"URI": "http://dbpedia.org/property/center", "surface form": "rented"}, {"URI": "http://dbpedia.org/property/stadium", "surface form": "stadiums"}, {"URI": "http://dbpedia.org/property/owner", "surface form": "owned"}]}, {"id": "1507", "question": [{"language": "en", "string": "What is the mascot of alma mater of John O Moseley?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/John_O._Moseley> <http://dbpedia.org/property/almaMater> ?x . ?x <http://dbpedia.org/property/mascot> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kangaroo"}}, "entities": [{"URI": "http://dbpedia.org/resource/O", "surface form": "O"}, {"URI": "http://dbpedia.org/resource/John_O._Moseley", "surface form": "John Moseley"}], "relations": [{"URI": "http://dbpedia.org/ontology/mascot", "surface form": "mascot"}, {"URI": "http://dbpedia.org/ontology/almaMater", "surface form": "alma mater"}]}, {"id": "1508", "question": [{"language": "en", "string": "Which newspapers are owned by Oslo citizens?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/location> <http://dbpedia.org/resource/Oslo> . ?uri <http://dbpedia.org/property/owners> ?x . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Newspaper>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Verdens_Gang"}}, "entities": [{"URI": "http://dbpedia.org/resource/Oslo", "surface form": "Oslo citizens"}], "relations": [{"URI": "http://dbpedia.org/ontology/title", "surface form": "newspapers"}, {"URI": "http://dbpedia.org/ontology/owner", "surface form": "owned"}]}, {"id": "1509", "question": [{"language": "en", "string": "King crimson has been recorded in which places?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/artist> <http://dbpedia.org/resource/King_Crimson> . ?x <http://dbpedia.org/ontology/recordedIn> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Olympic_Studios"}}, "entities": [{"URI": "http://dbpedia.org/resource/King_Crimson", "surface form": "King crimson"}], "relations": [{"URI": "http://dbpedia.org/ontology/leader", "surface form": "king crimson"}, {"URI": "http://dbpedia.org/ontology/background", "surface form": "recorded"}, {"URI": "http://dbpedia.org/ontology/height", "surface form": "places"}]}, {"id": "1510", "question": [{"language": "en", "string": "How many mountain ranges are located in the Canton of Fribourg?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/locatedInArea> <http://dbpedia.org/resource/Canton_of_Fribourg> . ?x <http://dbpedia.org/ontology/mountainRange> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "30"}}, "entities": [{"URI": "http://dbpedia.org/resource/Canton_of_Fribourg", "surface form": "Canton of Fribourg"}], "relations": [{"URI": "http://dbpedia.org/ontology/locatedInArea", "surface form": "in"}, {"URI": "http://dbpedia.org/ontology/mountainRange", "surface form": "mountain range"}]}, {"id": "1511", "question": [{"language": "en", "string": "Give me a count on associates of Johnny Cash?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE {?uri <http://dbpedia.org/property/associatedActs> <http://dbpedia.org/resource/Johnny_Cash> . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "35"}}, "entities": [{"URI": "http://dbpedia.org/resource/Johnny_Cash", "surface form": "Johnny Cash"}], "relations": [{"URI": "http://dbpedia.org/property/associatedActs", "surface form": "associates"}]}, {"id": "1512", "question": [{"language": "en", "string": "what are some neighboring cities of Pregny Chambsy?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/neighboringMunicipality> <http://dbpedia.org/resource/Pregny-Chamb\u00e9sy> } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bellevue,_Switzerland"}}, "entities": [{"URI": "http://dbpedia.org/resource/Pregny-Chamb\u00e9sy", "surface form": "Pregny Chambsy"}], "relations": [{"URI": "http://dbpedia.org/ontology/neighboringMunicipality", "surface form": "neighboring"}, {"URI": "http://dbpedia.org/ontology/country", "surface form": "cities"}]}, {"id": "1513", "question": [{"language": "en", "string": "Through which counties does the road go which starts at the Port Klang?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/routeStart> <http://dbpedia.org/resource/Port_Klang> . ?x <http://dbpedia.org/ontology/county> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Road>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Malaysia"}}, "entities": [{"URI": "http://dbpedia.org/resource/Port_Klang", "surface form": "Port Klang"}], "relations": [{"URI": "http://dbpedia.org/ontology/instrument", "surface form": "counties"}, {"URI": "http://dbpedia.org/ontology/part", "surface form": "road"}, {"URI": "http://dbpedia.org/ontology/routeStart", "surface form": "starts"}]}, {"id": "1514", "question": [{"language": "en", "string": "How many developers make softwares for Unix like operating systems?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/operatingSystem> <http://dbpedia.org/resource/Unix-like> . ?x <http://dbpedia.org/ontology/developer> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "348"}}, "entities": [{"URI": "http://dbpedia.org/resource/Soft_Machine", "surface form": "softwares"}, {"URI": "http://dbpedia.org/resource/Unix", "surface form": "Unix"}], "relations": [{"URI": "http://dbpedia.org/property/developer", "surface form": "developers"}, {"URI": "http://dbpedia.org/property/operatingSystem", "surface form": "operating systems"}]}, {"id": "1515", "question": [{"language": "en", "string": "What is the second track list of Dschinghis Khan (song) ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Dschinghis_Khan_(song)> <http://dbpedia.org/ontology/subsequentWork> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Moskau_(song)"}}, "entities": [{"URI": "http://dbpedia.org/resource/Dschinghis_Khan_(song)", "surface form": "Dschinghis Khan (song)"}], "relations": [{"URI": "http://dbpedia.org/ontology/trackNumber", "surface form": "track"}]}, {"id": "1516", "question": [{"language": "en", "string": "List the graves of the royalities which have been buried at Beeleigh Abbey ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/placeOfBurial> <http://dbpedia.org/resource/Beeleigh_Abbey> . ?x <http://dbpedia.org/property/placeOfBurial> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Royalty>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Essex"}}, "entities": [{"URI": "http://dbpedia.org/resource/Royalties", "surface form": "royalities"}, {"URI": "http://dbpedia.org/resource/Beeleigh_Abbey", "surface form": "Beeleigh Abbey"}], "relations": [{"URI": "http://dbpedia.org/ontology/grades", "surface form": "graves"}, {"URI": "http://dbpedia.org/ontology/flag", "surface form": "buried"}]}, {"id": "1517", "question": [{"language": "en", "string": "For which party's PM did Chidambaram Subramaniam serve?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Chidambaram_Subramaniam> <http://dbpedia.org/property/primeminister> ?x . ?x <http://dbpedia.org/ontology/party> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bharatiya_Lok_Dal"}}, "entities": [{"URI": "http://dbpedia.org/resource/PM", "surface form": "PM"}, {"URI": "http://dbpedia.org/resource/Chidambaram_Subramaniam", "surface form": "did Chidambaram Subramaniam"}], "relations": [{"URI": "http://dbpedia.org/ontology/party", "surface form": "party"}, {"URI": "http://dbpedia.org/property/minister", "surface form": "serve"}]}, {"id": "1518", "question": [{"language": "en", "string": "What is the capital of the region which maintains the South Park Bridge ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/South_Park_Bridge> <http://dbpedia.org/ontology/maintainedBy> ?x . ?x <http://dbpedia.org/ontology/countySeat> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Region>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Seattle"}}, "entities": [{"URI": "http://dbpedia.org/resource/South_Park_Bridge", "surface form": "South Park Bridge"}], "relations": [{"URI": "http://dbpedia.org/ontology/capital", "surface form": "capital"}, {"URI": "http://dbpedia.org/ontology/region", "surface form": "region"}, {"URI": "http://dbpedia.org/ontology/maintainedBy", "surface form": "maintains"}]}, {"id": "1519", "question": [{"language": "en", "string": "AH141 highway is a part of which country?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/AH141> <http://dbpedia.org/ontology/county> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Malaysia"}}, "entities": [{"URI": "http://dbpedia.org/resource/AH141", "surface form": "aH141 highway"}], "relations": [{"URI": "http://dbpedia.org/ontology/county", "surface form": "country"}]}, {"id": "1520", "question": [{"language": "en", "string": "Which school of jack mcGregor attend which was also the training center of William Anthony ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Jack_McGregor> <http://dbpedia.org/ontology/education> ?uri. <http://dbpedia.org/resource/William_Anthony_(artist)> <http://dbpedia.org/ontology/training> ?uri} "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Yale_University"}}, "entities": [{"URI": "http://dbpedia.org/resource/Jack_McGregor", "surface form": "jack mcGregor"}, {"URI": "http://dbpedia.org/resource/William_Anthony", "surface form": "William Anthony"}], "relations": [{"URI": "http://dbpedia.org/ontology/school", "surface form": "school"}, {"URI": "http://dbpedia.org/property/result", "surface form": "attend"}, {"URI": "http://dbpedia.org/ontology/training", "surface form": "training center"}]}, {"id": "1521", "question": [{"language": "en", "string": "Count the number of schools which are in a city governed by the West Berkshire Council?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/leaderName> <http://dbpedia.org/resource/West_Berkshire_Council> . ?uri <http://dbpedia.org/property/city> ?x . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/School>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/West_Berkshire_Council", "surface form": "West Berkshire Council"}], "relations": [{"URI": "http://dbpedia.org/ontology/type", "surface form": "count"}, {"URI": "http://dbpedia.org/ontology/discipline", "surface form": "schools"}, {"URI": "http://dbpedia.org/ontology/city", "surface form": "city"}, {"URI": "http://dbpedia.org/ontology/employer", "surface form": "governed"}]}, {"id": "1522", "question": [{"language": "en", "string": "How many wars took place in Israel?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE {?uri <http://dbpedia.org/ontology/place> <http://dbpedia.org/resource/Israel> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/MilitaryConflict>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "41"}}, "entities": [{"URI": "http://dbpedia.org/resource/Israel", "surface form": "Israel"}], "relations": [{"URI": "http://dbpedia.org/property/battles", "surface form": "wars"}, {"URI": "http://dbpedia.org/ontology/place", "surface form": "place"}]}, {"id": "1523", "question": [{"language": "en", "string": "What is the total number of guests on the show whose theme music is Let me be your star?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/music> <http://dbpedia.org/resource/Let_Me_Be_Your_Star> . ?x <http://dbpedia.org/property/guests> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/Let_Me_Be_Your_Star", "surface form": "Let me be your star"}], "relations": [{"URI": "http://dbpedia.org/property/music", "surface form": "music"}, {"URI": "http://dbpedia.org/property/guests", "surface form": "guests"}]}, {"id": "1524", "question": [{"language": "en", "string": "What is the operating system of the LG Optimus Vu and also the developer of the Dart (programming language)"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/LG_Optimus_Vu> <http://dbpedia.org/ontology/operatingSystem> ?uri. <http://dbpedia.org/resource/Dart_(programming_language)> <http://dbpedia.org/property/developer> ?uri} "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Google"}}, "entities": [{"URI": "http://dbpedia.org/resource/LG_Electronics", "surface form": "LG"}, {"URI": "http://dbpedia.org/resource/LG_Optimus_Vu", "surface form": "Optimus Vu"}, {"URI": "http://dbpedia.org/resource/Dart_(programming_language)", "surface form": "Dart (programming language)"}], "relations": [{"URI": "http://dbpedia.org/ontology/operatingSystem", "surface form": "operating"}, {"URI": "http://dbpedia.org/ontology/developer", "surface form": "developer"}]}, {"id": "1525", "question": [{"language": "en", "string": "How many people have written for Gangan Comics?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/magazine> <http://dbpedia.org/resource/Gangan_Comics> . ?x <http://dbpedia.org/property/author> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "49"}}, "entities": [{"URI": "http://dbpedia.org/resource/Gangan_Comics", "surface form": "Gangan Comics"}], "relations": [{"URI": "http://dbpedia.org/ontology/animal", "surface form": "written"}]}, {"id": "1526", "question": [{"language": "en", "string": "Which part of the US political framework did Arthur Bagby and Thomas H hicks both serve?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Arthur_P._Bagby> <http://dbpedia.org/property/order> ?uri. <http://dbpedia.org/resource/Thomas_Holliday_Hicks> <http://dbpedia.org/property/order> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/United_States_Senator"}}, "entities": [{"URI": "http://dbpedia.org/resource/Arthur_P._Bagby", "surface form": "arthur bagby"}, {"URI": "http://dbpedia.org/resource/Thomas_Holliday_Hicks", "surface form": "thomas hicks"}], "relations": [{"URI": "http://dbpedia.org/property/order", "surface form": "serve"}, {"URI": "http://dbpedia.org/property/order", "surface form": "serve"}]}, {"id": "1527", "question": [{"language": "en", "string": "Who wrote The Times They Are a-Changin?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/The_Times_They_Are_a-Changin'_(musical)> <http://dbpedia.org/ontology/musicBy> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bob_Dylan"}}, "entities": [{"URI": "http://dbpedia.org/resource/The_Times_They_Are_a-Changin'_(song)", "surface form": "The Times They Are a-Changin"}], "relations": [{"URI": "http://dbpedia.org/ontology/musicBy", "surface form": "wrote"}]}, {"id": "1528", "question": [{"language": "en", "string": "Which education institute of Duncan U. Fletcher is also the university of Vanderbilt Commodores ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Duncan_U._Fletcher> <http://dbpedia.org/ontology/almaMater> ?uri. <http://dbpedia.org/resource/Vanderbilt_Commodores> <http://dbpedia.org/ontology/university> ?uri} "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vanderbilt_University"}}, "entities": [{"URI": "http://dbpedia.org/resource/Duncan_U._Fletcher", "surface form": "Duncan U. Fletcher"}, {"URI": "http://dbpedia.org/resource/Vanderbilt_Commodores", "surface form": "Vanderbilt Commodores"}], "relations": [{"URI": "http://dbpedia.org/ontology/almaMater", "surface form": "education"}, {"URI": "http://dbpedia.org/ontology/university", "surface form": "university"}]}, {"id": "1529", "question": [{"language": "en", "string": "How many total religions are followed by people whose hometown is somewhere in India?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/hometown> <http://dbpedia.org/resource/India> . ?x <http://dbpedia.org/property/religion> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/India", "surface form": "India"}], "relations": [{"URI": "http://dbpedia.org/ontology/hometown", "surface form": "hometown"}, {"URI": "http://dbpedia.org/property/religion", "surface form": "religions"}]}, {"id": "1530", "question": [{"language": "en", "string": "England is the origin of how many things?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE {?uri <http://dbpedia.org/property/origin> <http://dbpedia.org/resource/England> . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "1030"}}, "entities": [{"URI": "http://dbpedia.org/resource/England", "surface form": "England"}], "relations": [{"URI": "http://dbpedia.org/ontology/province", "surface form": "england"}, {"URI": "http://dbpedia.org/ontology/origin", "surface form": "origin"}]}, {"id": "1531", "question": [{"language": "en", "string": "Where is the county seat of King County, Washington?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/King_County,_Washington> <http://dbpedia.org/ontology/countySeat> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Seattle"}}, "entities": [{"URI": "http://dbpedia.org/resource/King_County,_Washington", "surface form": "King County, Washington"}], "relations": [{"URI": "http://dbpedia.org/ontology/countySeat", "surface form": "county seat"}]}, {"id": "1532", "question": [{"language": "en", "string": "How many people work at the FBI?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE {?uri <http://dbpedia.org/ontology/occupation> <http://dbpedia.org/resource/Federal_Bureau_of_Investigation> . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "88"}}, "entities": [{"URI": "http://dbpedia.org/resource/Federal_Bureau_of_Investigation", "surface form": "FBI"}], "relations": [{"URI": "http://dbpedia.org/ontology/occupation", "surface form": "work"}]}, {"id": "1533", "question": [{"language": "en", "string": "How many people have been trained in an institute located in California?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/city> <http://dbpedia.org/resource/California> . ?uri <http://dbpedia.org/property/training> ?x . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Person>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/California", "surface form": "California"}], "relations": [{"URI": "http://dbpedia.org/ontology/coach", "surface form": "trained"}, {"URI": "http://dbpedia.org/ontology/institution", "surface form": "institute"}, {"URI": "http://dbpedia.org/ontology/gross", "surface form": "located"}]}, {"id": "1534", "question": [{"language": "en", "string": "What are some famous companies founded in the US?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/foundationPlace> <http://dbpedia.org/resource/United_States> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Company>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/ThePlatform"}}, "entities": [{"URI": "http://dbpedia.org/resource/United_States", "surface form": "US"}], "relations": [{"URI": "http://dbpedia.org/ontology/foundationPlace", "surface form": "founded"}, {"URI": "http://dbpedia.org/ontology/Company", "surface form": "companies"}]}, {"id": "1535", "question": [{"language": "en", "string": "Who were fighting the war where the QF Hotchkiss was used?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { <http://dbpedia.org/resource/QF_6-pounder_Hotchkiss> <http://dbpedia.org/ontology/usedInWar> ?x . ?x <http://dbpedia.org/ontology/territory> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/MilitaryConflict>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/QF_6-pounder_Hotchkiss", "surface form": "QF Hotchkiss"}], "relations": [{"URI": "http://dbpedia.org/ontology/combatant", "surface form": "fighting"}, {"URI": "http://dbpedia.org/ontology/usedInWar", "surface form": "war"}]}, {"id": "1536", "question": [{"language": "en", "string": "Give me a count of movies whose film editor is Anthony Harvey?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE {?uri <http://dbpedia.org/property/editing> <http://dbpedia.org/resource/Anthony_Harvey> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "13"}}, "entities": [{"URI": "http://dbpedia.org/resource/Anthony_Harvey", "surface form": "Anthony Harvey"}], "relations": [{"URI": "http://dbpedia.org/property/editing", "surface form": "editor"}, {"URI": "http://dbpedia.org/ontology/Film", "surface form": "movie"}]}, {"id": "1537", "question": [{"language": "en", "string": "How many people are buried in Arlington National Cemetery?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE {?uri <http://dbpedia.org/property/placeofburial> <http://dbpedia.org/resource/Arlington_National_Cemetery> . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "1571"}}, "entities": [{"URI": "http://dbpedia.org/resource/Arlington_National_Cemetery", "surface form": "Arlington National Cemetery"}], "relations": [{"URI": "http://dbpedia.org/property/placeofburial", "surface form": "buried"}]}, {"id": "1538", "question": [{"language": "en", "string": "What are some people working for the New York Post?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/employer> <http://dbpedia.org/resource/New_York_Post> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Person>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Deborah_Orin"}}, "entities": [{"URI": "http://dbpedia.org/resource/New_York_Post", "surface form": "New York Post"}], "relations": [{"URI": "http://dbpedia.org/ontology/employer", "surface form": "working"}]}, {"id": "1539", "question": [{"language": "en", "string": "Name the office holder with predecessor as Samuel W. McCall and office in Massachusetts House of Representatives?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/predecessor> <http://dbpedia.org/resource/Samuel_W._McCall> . ?uri <http://dbpedia.org/property/office> <http://dbpedia.org/resource/Massachusetts_House_of_Representatives> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/OfficeHolder>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Calvin_Coolidge"}}, "entities": [{"URI": "http://dbpedia.org/resource/Vienna", "surface form": "W"}, {"URI": "http://dbpedia.org/resource/Samuel_W._McCall", "surface form": "Samuel McCall"}, {"URI": "http://dbpedia.org/resource/Massachusetts_House_of_Representatives", "surface form": "Massachusetts House of Representatives"}], "relations": [{"URI": "http://dbpedia.org/property/name", "surface form": "name"}, {"URI": "http://dbpedia.org/ontology/place", "surface form": "office holder"}, {"URI": "http://dbpedia.org/ontology/predecessor", "surface form": "predecessor"}, {"URI": "http://dbpedia.org/property/office", "surface form": "office"}]}, {"id": "1540", "question": [{"language": "en", "string": "In which city is the sister station of WCSE-LP located ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/WCSE-LP> <http://dbpedia.org/property/sisterStations> ?x . ?x <http://dbpedia.org/property/city> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Connecticut"}}, "entities": [{"URI": "http://dbpedia.org/resource/WCSE-LP", "surface form": "WCSE-LP"}], "relations": [{"URI": "http://dbpedia.org/ontology/city", "surface form": "city"}, {"URI": "http://dbpedia.org/ontology/sisterStation", "surface form": "sister station"}, {"URI": "http://dbpedia.org/ontology/position", "surface form": "located"}]}, {"id": "1541", "question": [{"language": "en", "string": "What are some devices whose manufacturers are in taiwan?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/locationCountry> <http://dbpedia.org/resource/Taiwan> . ?uri <http://dbpedia.org/ontology/manufacturer> ?x . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Device>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/HTC_7_Mozart"}}, "entities": [{"URI": "http://dbpedia.org/resource/Taiwan", "surface form": "taiwan"}], "relations": [{"URI": "http://dbpedia.org/ontology/symbol", "surface form": "devices"}, {"URI": "http://dbpedia.org/ontology/producer", "surface form": "manufacturers"}]}, {"id": "1542", "question": [{"language": "en", "string": "Which spanish novel was published by Francisco de Robles?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/publisher> <http://dbpedia.org/resource/Francisco_de_Robles> } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/La_Galatea"}}, "entities": [{"URI": "http://dbpedia.org/resource/Francisco_de_Robles", "surface form": "Francisco de Robles"}], "relations": [{"URI": "http://dbpedia.org/ontology/area", "surface form": "spanish"}, {"URI": "http://dbpedia.org/ontology/publisher", "surface form": "published"}]}, {"id": "1543", "question": [{"language": "en", "string": "What are some bands originating in London?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/hometown> <http://dbpedia.org/resource/London> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Band>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/All-Stars_(band)"}}, "entities": [{"URI": "http://dbpedia.org/resource/London", "surface form": "London"}], "relations": [{"URI": "http://dbpedia.org/ontology/hometown", "surface form": "originating"}, {"URI": "http://dbpedia.org/ontology/Band", "surface form": "band"}]}, {"id": "1544", "question": [{"language": "en", "string": "List the producers who produced movies starring Michael Jackson."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/starring> <http://dbpedia.org/resource/Michael_Jackson> . ?x <http://dbpedia.org/property/producer> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/L.A._Reid"}}, "entities": [{"URI": "http://dbpedia.org/resource/Movies_produced_by_ABC", "surface form": "produced movies movies starring Michael Jackson"}], "relations": [{"URI": "http://dbpedia.org/ontology/author", "surface form": "producers"}, {"URI": "http://dbpedia.org/ontology/wineProduced", "surface form": "produced"}]}, {"id": "1545", "question": [{"language": "en", "string": "List the name of the soccer clubs whose chairman is Joan Laporta."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/chairman> <http://dbpedia.org/resource/Joan_Laporta> . ?x <http://dbpedia.org/property/name> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/SoccerClub>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Andr\u00e9s_Iniesta"}}, "entities": [{"URI": "http://dbpedia.org/resource/Joan_Laporta", "surface form": "Joan Laporta"}], "relations": [{"URI": "http://dbpedia.org/property/name", "surface form": "name"}, {"URI": "http://dbpedia.org/ontology/clubsRecordGoalscorer", "surface form": "soccer clubs"}, {"URI": "http://dbpedia.org/ontology/chairman", "surface form": "chairman"}]}, {"id": "1546", "question": [{"language": "en", "string": "Name the TV shows related to Babylon 5: The Lost Tales and is aired on Prime TIme Entertainment Networks ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/related> <http://dbpedia.org/resource/Babylon_5:_The_Lost_Tales> . ?uri <http://dbpedia.org/ontology/network> <http://dbpedia.org/resource/Prime_Time_Entertainment_Network> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Babylon_5"}}, "entities": [{"URI": "http://dbpedia.org/resource/Babylon_5:_The_Lost_Tales", "surface form": "Babylon 5: The Lost Tales"}, {"URI": "http://dbpedia.org/resource/Prime_Time_Entertainment_Network", "surface form": "Prime TIme Entertainment Network"}], "relations": [{"URI": "http://dbpedia.org/property/name", "surface form": "name"}, {"URI": "http://dbpedia.org/ontology/place", "surface form": "shows"}, {"URI": "http://dbpedia.org/ontology/related", "surface form": "related"}, {"URI": "http://dbpedia.org/property/firstAired", "surface form": "aired"}]}, {"id": "1547", "question": [{"language": "en", "string": "Who is the person whose alma mater is Harvard-Westlake School?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/almaMater> <http://dbpedia.org/resource/Harvard-Westlake_School> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Person>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gloria_McMillan"}}, "entities": [{"URI": "http://dbpedia.org/resource/Harvard-Westlake_School", "surface form": "Harvard-Westlake School"}], "relations": [{"URI": "http://dbpedia.org/ontology/type", "surface form": "person"}, {"URI": "http://dbpedia.org/ontology/almaMater", "surface form": "alma mater"}]}, {"id": "1548", "question": [{"language": "en", "string": "How many different religions have economists followed?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/profession> <http://dbpedia.org/resource/Economist> . ?x <http://dbpedia.org/ontology/religion> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/Economists_for_Peace_and_Security", "surface form": "economists"}], "relations": [{"URI": "http://dbpedia.org/ontology/religion", "surface form": "religions"}]}, {"id": "1549", "question": [{"language": "en", "string": "In which city are buildings by Solon Spencer Beman found?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/architect> <http://dbpedia.org/resource/Solon_Spencer_Beman> . ?x <http://dbpedia.org/property/locationTown> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Building>}"}, "answers": {"uri": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "635"}}, "entities": [{"URI": "http://dbpedia.org/resource/Solon_Spencer_Beman", "surface form": "Solon Spencer Beman"}], "relations": [{"URI": "http://dbpedia.org/ontology/city", "surface form": "city"}, {"URI": "http://dbpedia.org/ontology/architect", "surface form": "buildings"}]}, {"id": "1550", "question": [{"language": "en", "string": "Count the total awards won by the writer who has won Goethe Prize ?"}], "query": {"sparql": " SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/awards> <http://dbpedia.org/resource/Goethe_Prize> . ?x <http://dbpedia.org/property/awards> ?uri }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "44"}}, "entities": [{"URI": "http://dbpedia.org/resource/Goethe_Prize", "surface form": "Goethe Prize"}], "relations": [{"URI": "http://dbpedia.org/property/awards", "surface form": "awards"}, {"URI": "http://dbpedia.org/property/awards", "surface form": "won"}]}, {"id": "1551", "question": [{"language": "en", "string": "In how many nations can I find people related to the feminist movement?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/movement> <http://dbpedia.org/resource/Feminism> . ?x <http://dbpedia.org/ontology/nationality> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "18"}}, "entities": [{"URI": "http://dbpedia.org/resource/Feminism", "surface form": "feminist"}], "relations": [{"URI": "http://dbpedia.org/ontology/movement", "surface form": "movement"}, {"URI": "http://dbpedia.org/ontology/nationality", "surface form": "nations"}]}, {"id": "1552", "question": [{"language": "en", "string": "With whom is Heinz Kokott a relative to who also served Nazi Army?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Heinz_Kokott> <http://dbpedia.org/ontology/relation> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Heinrich_Himmler"}}, "entities": [{"URI": "http://dbpedia.org/resource/Heinz_Kokott", "surface form": "Heinz Kokott"}, {"URI": "http://dbpedia.org/resource/Nazi_6th_Army", "surface form": "Nazi Army"}], "relations": [{"URI": "http://dbpedia.org/ontology/relative", "surface form": "relative"}, {"URI": "http://dbpedia.org/ontology/regionServed", "surface form": "served"}]}, {"id": "1553", "question": [{"language": "en", "string": "Who is the former partner of the figure skater which was the former partner of Brynn Carman ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Brynn_Carman> <http://dbpedia.org/ontology/formerPartner> ?x . ?x <http://dbpedia.org/ontology/formerPartner> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/FigureSkater>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alexa_Knierim"}}, "entities": [{"URI": "http://dbpedia.org/resource/Brynn_Carman", "surface form": "Brynn Carman"}], "relations": [{"URI": "http://dbpedia.org/ontology/spouse", "surface form": "former partner"}, {"URI": "http://dbpedia.org/ontology/flag", "surface form": "figure skater"}, {"URI": "http://dbpedia.org/ontology/spouse", "surface form": "former partner"}]}, {"id": "1554", "question": [{"language": "en", "string": "Paul Morphy compiled journals of which field?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/editor> <http://dbpedia.org/resource/Paul_Morphy> . ?x <http://dbpedia.org/property/discipline> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chess"}}, "entities": [{"URI": "http://dbpedia.org/resource/Paul_Morphy", "surface form": "Paul morphy"}], "relations": [{"URI": "http://dbpedia.org/ontology/compiler", "surface form": "compiled"}, {"URI": "http://dbpedia.org/ontology/language", "surface form": "journals"}, {"URI": "http://dbpedia.org/ontology/field", "surface form": "field"}]}, {"id": "1555", "question": [{"language": "en", "string": "What awards have the narrator of the Cries and Whispers won?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Cries_and_Whispers> <http://dbpedia.org/ontology/narrator> ?x . ?x <http://dbpedia.org/property/awards> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Goethe_Prize"}}, "entities": [{"URI": "http://dbpedia.org/resource/Cries_and_Whispers", "surface form": "Cries and Whispers"}], "relations": [{"URI": "http://dbpedia.org/ontology/narrator", "surface form": "narrator"}, {"URI": "http://dbpedia.org/property/awards", "surface form": "awards"}]}, {"id": "1556", "question": [{"language": "en", "string": "How many ships belong to states which has Unitary as government type ?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/governmentType> <http://dbpedia.org/resource/Unitary_state> . ?uri <http://dbpedia.org/ontology/country> ?x . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Ship>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "7343"}}, "entities": [{"URI": "http://dbpedia.org/resource/Unitary", "surface form": "Unitary"}], "relations": [{"URI": "http://dbpedia.org/ontology/shipBeam", "surface form": "ships"}, {"URI": "http://dbpedia.org/ontology/date", "surface form": "belong"}, {"URI": "http://dbpedia.org/ontology/governmentType", "surface form": "government type"}]}, {"id": "1557", "question": [{"language": "en", "string": "Who designed Oddamavadi Bridge?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Oddamavadi_Bridge> <http://dbpedia.org/property/designer> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/British_Ceylon"}}, "entities": [{"URI": "http://dbpedia.org/resource/Oddamavadi_Bridge", "surface form": "Oddamavadi Bridge"}], "relations": [{"URI": "http://dbpedia.org/property/designer", "surface form": "designed"}]}, {"id": "1558", "question": [{"language": "en", "string": "Count all the band members who are in Bands which have signed up with Entertainment One Music?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/label> <http://dbpedia.org/resource/Entertainment_One_Music> . ?x <http://dbpedia.org/ontology/bandMember> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "15"}}, "entities": [{"URI": "http://dbpedia.org/resource/Bands_(neckwear)", "surface form": "Bands"}, {"URI": "http://dbpedia.org/resource/Entertainment_One_Music", "surface form": "Entertainment One Music"}], "relations": [{"URI": "http://dbpedia.org/property/label", "surface form": "are"}, {"URI": "http://dbpedia.org/ontology/bandMember", "surface form": "band member"}]}, {"id": "1559", "question": [{"language": "en", "string": "What are the television shows whose company is European Broadcasting Union?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/company> <http://dbpedia.org/resource/European_Broadcasting_Union> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/EurovisionAgain"}}, "entities": [{"URI": "http://dbpedia.org/resource/Europe", "surface form": "European Broadcasting Union"}, {"URI": "http://dbpedia.org/resource/European_Broadcasting_Union", "surface form": "European Broadcasting Union"}], "relations": [{"URI": "http://dbpedia.org/property/company", "surface form": "company"}, {"URI": "http://dbpedia.org/ontology/TelevisionShow", "surface form": "television show"}]}, {"id": "1560", "question": [{"language": "en", "string": "Who are the founders of Iskra ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Iskra> <http://dbpedia.org/ontology/foundedBy> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alexander_Potresov"}}, "entities": [{"URI": "http://dbpedia.org/resource/Iskra", "surface form": "Iskra"}], "relations": [{"URI": "http://dbpedia.org/ontology/foundedBy", "surface form": "founders"}]}, {"id": "1561", "question": [{"language": "en", "string": "Graduates of Somerville College have been in how many political parties?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/almaMater> <http://dbpedia.org/resource/Somerville_College,_Oxford> . ?x <http://dbpedia.org/ontology/party> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "15"}}, "entities": [{"URI": "http://dbpedia.org/resource/Somerville_College,_Oxford", "surface form": "Somerville College"}], "relations": [{"URI": "http://dbpedia.org/ontology/almaMater", "surface form": "graduates"}, {"URI": "http://dbpedia.org/ontology/party", "surface form": "parties"}]}, {"id": "1562", "question": [{"language": "en", "string": "List all the developers of the Oddworld series?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/series> <http://dbpedia.org/resource/Oddworld> . ?x <http://dbpedia.org/ontology/developer> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Saffire_(company)"}}, "entities": [{"URI": "http://dbpedia.org/resource/Oddworld", "surface form": "Oddworld"}], "relations": [{"URI": "http://dbpedia.org/ontology/series", "surface form": "series"}, {"URI": "http://dbpedia.org/ontology/developer", "surface form": "developer"}]}, {"id": "1563", "question": [{"language": "en", "string": "Give me a count of all the producers of all the movies whose music was done by James Horner?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/music> <http://dbpedia.org/resource/James_Horner> . ?x <http://dbpedia.org/property/producer> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "299"}}, "entities": [{"URI": "http://dbpedia.org/resource/James_Horner", "surface form": "James Horner"}], "relations": [{"URI": "http://dbpedia.org/property/music", "surface form": "music"}, {"URI": "http://dbpedia.org/property/producer", "surface form": "producer"}]}, {"id": "1564", "question": [{"language": "en", "string": "List the notable work of David Isaacs (writer)?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/David_Isaacs_(writer)> <http://dbpedia.org/ontology/notableWork> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Frasier"}}, "entities": [{"URI": "http://dbpedia.org/resource/David_Isaacs_(writer)", "surface form": "David Isaacs (writer)"}], "relations": [{"URI": "http://dbpedia.org/ontology/notableWork", "surface form": "notable work"}]}, {"id": "1565", "question": [{"language": "en", "string": "What is the province of Egypt Nanotechnology Center ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Egypt_Nanotechnology_Center> <http://dbpedia.org/property/province> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Giza"}}, "entities": [{"URI": "http://dbpedia.org/resource/Egypt_Nanotechnology_Center", "surface form": "Egypt Nanotechnology Center"}], "relations": [{"URI": "http://dbpedia.org/ontology/province", "surface form": "province"}]}, {"id": "1566", "question": [{"language": "en", "string": "Give me the number of home stadiums of teams managed by John Spencer."}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/manager> <http://dbpedia.org/resource/John_Spencer_(Scottish_footballer)> . ?x <http://dbpedia.org/ontology/homeStadium> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "8"}}, "entities": [{"URI": "http://dbpedia.org/resource/John_Spencer", "surface form": "John Spencer"}], "relations": [{"URI": "http://dbpedia.org/ontology/party", "surface form": "home stadiums"}, {"URI": "http://dbpedia.org/ontology/team", "surface form": "teams"}, {"URI": "http://dbpedia.org/ontology/governor", "surface form": "managed"}]}, {"id": "1567", "question": [{"language": "en", "string": "How many people are buried in the Winchester Cathedral?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE {?uri <http://dbpedia.org/ontology/restingPlace> <http://dbpedia.org/resource/Winchester_Cathedral> . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "3"}}, "entities": [{"URI": "http://dbpedia.org/resource/Winchester_Cathedral", "surface form": "Winchester Cathedral"}], "relations": [{"URI": "http://dbpedia.org/ontology/restingPlace", "surface form": "buried in"}]}, {"id": "1568", "question": [{"language": "en", "string": "Who wrote a rose for emily?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/notableWork> <http://dbpedia.org/resource/A_Rose_for_Emily> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Writer>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/William_Faulkner"}}, "entities": [{"URI": "http://dbpedia.org/resource/Emily", "surface form": "emily"}], "relations": [{"URI": "http://dbpedia.org/ontology/notableWork", "surface form": "wrote"}]}, {"id": "1569", "question": [{"language": "en", "string": "Which motion picture stories were edited by Ishir Honda?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/writer> <http://dbpedia.org/resource/Ishir\u014d_Honda> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Wakai_ki"}}, "entities": [{"URI": "http://dbpedia.org/resource/Ishir\u014d_Honda", "surface form": "Ishir Honda"}], "relations": [{"URI": "http://dbpedia.org/ontology/writer", "surface form": "edited"}]}, {"id": "1570", "question": [{"language": "en", "string": "Name the tv series produced by Stephen Ambrose and Erik Bork?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/producer> <http://dbpedia.org/resource/Stephen_E._Ambrose> . ?uri <http://dbpedia.org/ontology/producer> <http://dbpedia.org/resource/Erik_Bork> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Band_of_Brothers_(miniseries)"}}, "entities": [{"URI": "http://dbpedia.org/resource/St._Ambrose_Traversari", "surface form": "Stephen Ambrose"}, {"URI": "http://dbpedia.org/resource/Erik_Bork", "surface form": "Erik Bork"}], "relations": [{"URI": "http://dbpedia.org/ontology/producer", "surface form": "produced"}, {"URI": "http://dbpedia.org/ontology/producer", "surface form": "produced"}]}, {"id": "1571", "question": [{"language": "en", "string": "Who starred in Awakening and fifety five days at peknig ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/The_Awakening_(1980_film)> <http://dbpedia.org/property/starring> ?uri. <http://dbpedia.org/resource/55_Days_at_Peking> <http://dbpedia.org/ontology/starring> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Charlton_Heston"}}, "entities": [{"URI": "http://dbpedia.org/resource/Awakening", "surface form": "Awakening"}, {"URI": "http://dbpedia.org/resource/Heinig", "surface form": "Peknig"}], "relations": [{"URI": "http://dbpedia.org/ontology/starring", "surface form": "starred"}, {"URI": "http://dbpedia.org/ontology/starring", "surface form": "starred"}]}, {"id": "1572", "question": [{"language": "en", "string": "For which other teams have the past Boston Bruins members played?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/formerTeam> <http://dbpedia.org/resource/Boston_Bruins> . ?x <http://dbpedia.org/property/playedFor> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Boston_Bruins"}}, "entities": [{"URI": "http://dbpedia.org/resource/Boston_Bruins", "surface form": "Boston Bruins"}], "relations": [{"URI": "http://dbpedia.org/ontology/formerTeam", "surface form": "teams"}, {"URI": "http://dbpedia.org/property/playedFor", "surface form": "team"}]}, {"id": "1573", "question": [{"language": "en", "string": "List the Swedish newspaper headquarted in Stockholm ? "}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/language> <http://dbpedia.org/resource/Swedish_language> . ?uri <http://dbpedia.org/property/headquarters> <http://dbpedia.org/resource/Stockholm> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Newspaper>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dagens_Nyheter"}}, "entities": [{"URI": "http://dbpedia.org/resource/Sweden", "surface form": "Swedish newspaper"}, {"URI": "http://dbpedia.org/resource/Dharitri_(newspaper)", "surface form": "Swedish newspaper"}, {"URI": "http://dbpedia.org/resource/Stockholm", "surface form": "Stockholm"}], "relations": [{"URI": "http://dbpedia.org/ontology/headquarter", "surface form": "headquarted"}, {"URI": "http://dbpedia.org/ontology/country", "surface form": ""}]}, {"id": "1574", "question": [{"language": "en", "string": "Those seasons which have been played in Fort Lauderdale Florida now host their games where?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/stadium> <http://dbpedia.org/resource/Fort_Lauderdale,_Florida> . ?x <http://dbpedia.org/ontology/ground> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/SoccerClubSeason>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lockhart_Stadium"}}, "entities": [{"URI": "http://dbpedia.org/resource/Fort_Lauderdale,_Florida", "surface form": "Fort Lauderdale Florida"}], "relations": [{"URI": "http://dbpedia.org/ontology/ground", "surface form": "seasons"}, {"URI": "http://dbpedia.org/ontology/participant", "surface form": "played"}, {"URI": "http://dbpedia.org/ontology/presenter", "surface form": "host"}, {"URI": "http://dbpedia.org/ontology/games", "surface form": "games"}]}, {"id": "1575", "question": [{"language": "en", "string": "Give me all the alma mater of the relatives of Samuek Moreno Rojas ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Samuel_Moreno_Rojas> <http://dbpedia.org/ontology/relation> ?x . ?x <http://dbpedia.org/property/almaMater> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jos\u00e9_Mar\u00eda_C\u00f3rdova_Military_School"}}, "entities": [{"URI": "http://dbpedia.org/resource/Samuel_Moreno_Rojas", "surface form": "Samuek Moreno Rojas"}], "relations": [{"URI": "http://dbpedia.org/ontology/relation", "surface form": "relatives"}, {"URI": "http://dbpedia.org/property/almaMater", "surface form": "alma mater"}]}, {"id": "1576", "question": [{"language": "en", "string": "What is the political party to which Purnima Banerjee is a member of?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Robert_Nutting> <http://dbpedia.org/ontology/knownFor> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pittsburgh_Pirates"}}, "entities": [{"URI": "http://dbpedia.org/resource/Purnima_Banerjee", "surface form": "Purnima Banerjee"}], "relations": [{"URI": "http://dbpedia.org/ontology/party", "surface form": "political party"}, {"URI": "http://dbpedia.org/ontology/arm", "surface form": "member"}]}, {"id": "1577", "question": [{"language": "en", "string": "To which political party does the successor of Radhabinod Koijam belong?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Radhabinod_Koijam> <http://dbpedia.org/property/successor> ?x . ?x <http://dbpedia.org/property/party> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Indian_National_Congress"}}, "entities": [{"URI": "http://dbpedia.org/resource/Radhabinod_Koijam", "surface form": "Radhabinod Koijam"}], "relations": [{"URI": "http://dbpedia.org/ontology/party", "surface form": "political party"}, {"URI": "http://dbpedia.org/ontology/successor", "surface form": "successor"}, {"URI": "http://dbpedia.org/ontology/date", "surface form": "belong"}]}, {"id": "1578", "question": [{"language": "en", "string": "Count the number of judges who've come on CTV network shows."}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/network> <http://dbpedia.org/resource/CTV_Television_Network> . ?x <http://dbpedia.org/property/judges> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "20"}}, "entities": [{"URI": "http://dbpedia.org/resource/Gordon_Judges", "surface form": "judges who"}, {"URI": "http://dbpedia.org/resource/CTV", "surface form": "CTV"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": "count"}, {"URI": "http://dbpedia.org/property/network", "surface form": "network shows"}]}, {"id": "1579", "question": [{"language": "en", "string": "Name the musical artists whose label is given by Kobalt Label Services?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/label> <http://dbpedia.org/resource/Kobalt_Label_Services> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/MusicalArtist>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dave_Stewart_(musician_and_producer)"}}, "entities": [{"URI": "http://dbpedia.org/resource/Kobalt_Label_Services", "surface form": "Kobalt Label Services"}], "relations": [{"URI": "http://dbpedia.org/property/label", "surface form": "label"}, {"URI": "http://dbpedia.org/ontology/MusicalArtist", "surface form": "musical artist"}]}, {"id": "1580", "question": [{"language": "en", "string": "Enumerate all the first teams of the GPs which were held in Watkins Glen, NY?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/location> <http://dbpedia.org/resource/Watkins_Glen,_New_York> . ?x <http://dbpedia.org/property/firstTeam> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "50"}}, "entities": [{"URI": "http://dbpedia.org/resource/Gpsd", "surface form": "GPs"}, {"URI": "http://dbpedia.org/resource/New_York", "surface form": "NY"}, {"URI": "http://dbpedia.org/resource/Watkins_Glen_International", "surface form": "Watkins Glen,"}], "relations": [{"URI": "http://dbpedia.org/property/quote", "surface form": "enumerate"}, {"URI": "http://dbpedia.org/ontology/team", "surface form": "teams"}, {"URI": "http://dbpedia.org/ontology/office", "surface form": "held"}]}, {"id": "1581", "question": [{"language": "en", "string": "Which operator of ganz UV is also the nationality of the Gza Horvth ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Ganz_UV> <http://dbpedia.org/ontology/operator> ?uri. <http://dbpedia.org/resource/G\u00e9za_Horv\u00e1th> <http://dbpedia.org/ontology/nationality> ?uri} "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hungary"}}, "entities": [{"URI": "http://dbpedia.org/resource/Ganz_UV", "surface form": "Ganz uv"}, {"URI": "http://dbpedia.org/resource/GZA", "surface form": "Gza Horvth"}], "relations": [{"URI": "http://dbpedia.org/ontology/operator", "surface form": "operator"}, {"URI": "http://dbpedia.org/ontology/nationality", "surface form": "nationality"}]}, {"id": "1582", "question": [{"language": "en", "string": "Give me a count of movies whose producer is Larry J. Franco?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE {?uri <http://dbpedia.org/ontology/producer> <http://dbpedia.org/resource/Larry_J._Franco> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/J", "surface form": "J"}, {"URI": "http://dbpedia.org/resource/Larry_J._Franco", "surface form": "Larry Franco"}], "relations": [{"URI": "http://dbpedia.org/ontology/producer", "surface form": "producer"}, {"URI": "http://dbpedia.org/ontology/Film", "surface form": "movie"}]}, {"id": "1583", "question": [{"language": "en", "string": "Which city near Nihoa is the place of death of jim Brady ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Nihoa> <http://dbpedia.org/property/nearestCity> ?uri. <http://dbpedia.org/resource/Jim_Brady_(quarterback)> <http://dbpedia.org/ontology/deathPlace> ?uri} "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hawaii"}}, "entities": [{"URI": "http://dbpedia.org/resource/Nihoa", "surface form": "Nihoa"}, {"URI": "http://dbpedia.org/resource/Jim_Brady_(quarterback)", "surface form": "jim Brady"}], "relations": [{"URI": "http://dbpedia.org/property/nearestCity", "surface form": "near city"}, {"URI": "http://dbpedia.org/ontology/deathPlace", "surface form": "place death"}]}, {"id": "1584", "question": [{"language": "en", "string": "Journals of how many fields can be found in US?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/country> <http://dbpedia.org/resource/United_States> . ?x <http://dbpedia.org/property/discipline> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "464"}}, "entities": [{"URI": "http://dbpedia.org/resource/United_States", "surface form": "US"}], "relations": [{"URI": "http://dbpedia.org/ontology/language", "surface form": "journals"}, {"URI": "http://dbpedia.org/ontology/occupation", "surface form": "fields"}]}, {"id": "1585", "question": [{"language": "en", "string": "How many different genres of games can I find which are compatible with the Commodore 64?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/computingPlatform> <http://dbpedia.org/resource/Commodore_64> . ?x <http://dbpedia.org/property/genre> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "1693"}}, "entities": [{"URI": "http://dbpedia.org/resource/I", "surface form": "I"}, {"URI": "http://dbpedia.org/resource/Commodore_64", "surface form": "Commodore 64"}], "relations": [{"URI": "http://dbpedia.org/ontology/type", "surface form": "genres"}, {"URI": "http://dbpedia.org/ontology/games", "surface form": "games"}, {"URI": "http://dbpedia.org/ontology/similar", "surface form": "compatible"}]}, {"id": "1586", "question": [{"language": "en", "string": "In which wars has Steven Palazzo fought?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Steven_Palazzo> <http://dbpedia.org/property/battles> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gulf_War"}}, "entities": [{"URI": "http://dbpedia.org/resource/Steven_Palazzo", "surface form": "Steven Palazzo"}], "relations": [{"URI": "http://dbpedia.org/property/battles", "surface form": "wars"}, {"URI": "http://dbpedia.org/ontology/type", "surface form": "fought"}]}, {"id": "1587", "question": [{"language": "en", "string": "Which fields' academic journals are found in the US?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/country> <http://dbpedia.org/resource/United_States> . ?x <http://dbpedia.org/property/discipline> ?uri . }"}, "answers": {"uri": {"type": "literal", "xml:lang": "en", "value": "Public health, Medicine"}}, "entities": [{"URI": "http://dbpedia.org/resource/WikiProject_Academic_Journals", "surface form": " academic journals"}, {"URI": "http://dbpedia.org/resource/United_States", "surface form": "US"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": "in"}, {"URI": "http://dbpedia.org/property/discipline", "surface form": "fields"}]}, {"id": "1588", "question": [{"language": "en", "string": "Mike Shinoda is in which band?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/bandMember> <http://dbpedia.org/resource/Mike_Shinoda> } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Linkin_Park__Linkin_Park__1"}}, "entities": [{"URI": "http://dbpedia.org/resource/Mike_Shinoda", "surface form": "Mike shinoda"}], "relations": [{"URI": "http://dbpedia.org/ontology/bandMember", "surface form": "band"}]}, {"id": "1589", "question": [{"language": "en", "string": "What are the television shows whose voices is given by Mona Marshall?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/voices> <http://dbpedia.org/resource/Mona_Marshall> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rambo:_The_Force_of_Freedom"}}, "entities": [{"URI": "http://dbpedia.org/resource/Mona_Marshall", "surface form": "Mona Marshall"}], "relations": [{"URI": "http://dbpedia.org/property/voices", "surface form": "voices"}, {"URI": "http://dbpedia.org/ontology/TelevisionShow", "surface form": "television show"}]}, {"id": "1590", "question": [{"language": "en", "string": "Name the movie whose director of photography is Gregg Toland and Bernard Herrmann was the music composer?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/cinematography> <http://dbpedia.org/resource/Gregg_Toland> . ?uri <http://dbpedia.org/ontology/musicComposer> <http://dbpedia.org/resource/Bernard_Herrmann> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Citizen_Kane"}}, "entities": [{"URI": "http://dbpedia.org/resource/Gregg_Toland", "surface form": "Gregg Toland"}, {"URI": "http://dbpedia.org/resource/Bernard_Herrmann", "surface form": "Bernard Herrmann"}], "relations": [{"URI": "http://dbpedia.org/property/name", "surface form": "name"}, {"URI": "http://dbpedia.org/ontology/picture", "surface form": "movie"}, {"URI": "http://dbpedia.org/ontology/director", "surface form": "director"}, {"URI": "http://dbpedia.org/ontology/picture", "surface form": "photography"}, {"URI": "http://dbpedia.org/ontology/composer", "surface form": "music composer"}]}, {"id": "1591", "question": [{"language": "en", "string": "How many contries surround the seas on the banks of which is the city of Cancun?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/cities> <http://dbpedia.org/resource/Canc\u00fan> . ?x <http://dbpedia.org/ontology/country> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "31"}}, "entities": [{"URI": "http://dbpedia.org/resource/Cancun_conference_(disambiguation)", "surface form": "Cancun"}], "relations": [{"URI": "http://dbpedia.org/property/counties", "surface form": "contries"}, {"URI": "http://dbpedia.org/ontology/background", "surface form": "surround"}, {"URI": "http://dbpedia.org/ontology/vein", "surface form": "seas"}, {"URI": "http://dbpedia.org/ontology/series", "surface form": "banks"}, {"URI": "http://dbpedia.org/ontology/city", "surface form": "city"}]}, {"id": "1592", "question": [{"language": "en", "string": "Name the other wine region of the grapes whose one of the wine region is Michigan?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/wineRegion> <http://dbpedia.org/resource/Michigan> . ?x <http://dbpedia.org/ontology/wineRegion> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Grape>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Arkansas"}}, "entities": [{"URI": "http://dbpedia.org/resource/Michigan", "surface form": "Michigan"}], "relations": [{"URI": "http://dbpedia.org/ontology/wineRegion", "surface form": "wine region"}, {"URI": "http://dbpedia.org/ontology/wineRegion", "surface form": "wine region"}]}, {"id": "1593", "question": [{"language": "en", "string": "Los Angeles Lakers is the team of which basketball players?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/team> <http://dbpedia.org/resource/Los_Angeles_Lakers> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/BasketballPlayer>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Allen_Murphy"}}, "entities": [{"URI": "http://dbpedia.org/resource/Los_Angeles_Lakers", "surface form": "los Angeles Lakers"}, {"URI": "http://dbpedia.org/resource/National_Basketball_Players_Association", "surface form": "basketball players"}], "relations": [{"URI": "http://dbpedia.org/property/team", "surface form": "team"}, {"URI": "http://dbpedia.org/ontology/BasketballPlayer", "surface form": "basketball player"}]}, {"id": "1594", "question": [{"language": "en", "string": "What are the movies produced by Michael Deeley?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/producer> <http://dbpedia.org/resource/Michael_Deeley> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Case_of_the_Mukkinese_Battle-Horn"}}, "entities": [{"URI": "http://dbpedia.org/resource/Michael_Deeley", "surface form": "Michael Deeley"}], "relations": [{"URI": "http://dbpedia.org/property/producer", "surface form": "produced"}, {"URI": "http://dbpedia.org/ontology/Film", "surface form": "movie"}]}, {"id": "1595", "question": [{"language": "en", "string": "Where is the headquarter of Regional Transit Authority of Southeast Michigan ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Regional_Transit_Authority_of_Southeast_Michigan> <http://dbpedia.org/property/headquarters> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Detroit"}}, "entities": [{"URI": "http://dbpedia.org/resource/Regional_Transit_Authority_of_Southeast_Michigan", "surface form": "Regional Transit Authority of Southeast Michigan"}], "relations": [{"URI": "http://dbpedia.org/property/headquarters", "surface form": "headquarter"}]}, {"id": "1596", "question": [{"language": "en", "string": "What are the awards won by the parent of Daniel Bergmans?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Daniel_Bergman> <http://dbpedia.org/ontology/parent> ?x . ?x <http://dbpedia.org/property/awards> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Goethe_Prize"}}, "entities": [{"URI": "http://dbpedia.org/resource/Daniel_Bergman", "surface form": "Daniel Bergman"}], "relations": [{"URI": "http://dbpedia.org/ontology/parent", "surface form": "parent"}, {"URI": "http://dbpedia.org/property/awards", "surface form": "awards"}]}, {"id": "1597", "question": [{"language": "en", "string": "What is the common debut team of the Butch Metzger and Dan Otero?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Butch_Metzger> <http://dbpedia.org/ontology/debutTeam> ?uri. <http://dbpedia.org/resource/Dan_Otero> <http://dbpedia.org/ontology/debutTeam> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/San_Francisco_Giants"}}, "entities": [{"URI": "http://dbpedia.org/resource/Debut", "surface form": "common debut team"}, {"URI": "http://dbpedia.org/resource/Butch_Metzger", "surface form": "Butch Metzger"}, {"URI": "http://dbpedia.org/resource/Dan_Otero", "surface form": "Dan Otero"}], "relations": [{"URI": "http://dbpedia.org/ontology/debutTeam", "surface form": "debut team"}, {"URI": "http://dbpedia.org/ontology/debutTeam", "surface form": "debut team"}]}, {"id": "1598", "question": [{"language": "en", "string": "Collect and return a list of things in the area where Spanish language is used?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/language> <http://dbpedia.org/resource/Spanish_language> . ?uri <http://dbpedia.org/ontology/location> ?x . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Australian_Botanic_Garden_Mount_Annan"}}, "entities": [{"URI": "http://dbpedia.org/resource/Spain", "surface form": "Spanish language"}, {"URI": "http://dbpedia.org/resource/Spanish_language", "surface form": "Spanish language"}], "relations": [{"URI": "http://dbpedia.org/ontology/mass", "surface form": "collect"}, {"URI": "http://dbpedia.org/ontology/field", "surface form": "return"}, {"URI": "http://dbpedia.org/ontology/area", "surface form": "area"}, {"URI": "http://dbpedia.org/ontology/country", "surface form": ""}]}, {"id": "1599", "question": [{"language": "en", "string": "Music for what was made by someone who died of a cardiovascular disease?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/deathCause> <http://dbpedia.org/resource/Cardiovascular_disease> . ?uri <http://dbpedia.org/property/music> ?x . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Elvis_Dead"}}, "entities": [{"URI": "http://dbpedia.org/resource/Cardiovascular_disease", "surface form": "cardiovascular disease"}], "relations": [{"URI": "http://dbpedia.org/ontology/deathCause", "surface form": "died of"}, {"URI": "http://dbpedia.org/property/music", "surface form": "music"}]}, {"id": "1600", "question": [{"language": "en", "string": "Name the music artist which collaborated with the spouse of Jessi Colter?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/spouse> <http://dbpedia.org/resource/Jessi_Colter> . ?uri <http://dbpedia.org/ontology/associatedMusicalArtist> ?x . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/MusicalArtist>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/David_Allan_Coe"}}, "entities": [{"URI": "http://dbpedia.org/resource/Jessi_Colter", "surface form": "Jessi Colter"}], "relations": [{"URI": "http://dbpedia.org/property/name", "surface form": "name"}, {"URI": "http://dbpedia.org/ontology/artist", "surface form": "music artist"}, {"URI": "http://dbpedia.org/ontology/band", "surface form": "collaborated"}, {"URI": "http://dbpedia.org/ontology/spouse", "surface form": "spouse"}]}, {"id": "1601", "question": [{"language": "en", "string": "Count the number of sports played by the universities whose one of the sports is baketball ?"}], "query": {"sparql": " SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/athletics> <http://dbpedia.org/resource/Basketball> . ?x <http://dbpedia.org/property/athletics> ?uri }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/Universities_South_Africa", "surface form": "universities"}, {"URI": "http://dbpedia.org/resource/Baseball", "surface form": "baketball"}], "relations": [{"URI": "http://dbpedia.org/ontology/type", "surface form": "count"}, {"URI": "http://dbpedia.org/ontology/athletics", "surface form": "sports"}, {"URI": "http://dbpedia.org/ontology/portrayer", "surface form": "played"}, {"URI": "http://dbpedia.org/ontology/athletics", "surface form": "sports"}]}, {"id": "1602", "question": [{"language": "en", "string": "Amongst the winner of Lovelace medal, who has John Robert as doctoral supervisor ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/doctoralAdvisor> <http://dbpedia.org/resource/John_Robert_Woodyard> . ?uri <http://dbpedia.org/property/prizes> <http://dbpedia.org/resource/Lovelace_Medal> . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Douglas_Engelbart"}}, "entities": [{"URI": "http://dbpedia.org/resource/John_Robert_Woodyard", "surface form": "John Robert "}, {"URI": "http://dbpedia.org/resource/Lovelace_Medal", "surface form": "Lovelace medal"}], "relations": [{"URI": "http://dbpedia.org/ontology/champion", "surface form": "winner"}, {"URI": "http://dbpedia.org/ontology/governor", "surface form": "doctoral supervisor"}]}, {"id": "1603", "question": [{"language": "en", "string": "What things have founded place as United States and New Mexico?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/foundation> <http://dbpedia.org/resource/United_States> . ?uri <http://dbpedia.org/property/foundation> <http://dbpedia.org/resource/New_Mexico> . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gen4_Energy"}}, "entities": [{"URI": "http://dbpedia.org/resource/United_States", "surface form": "United States"}, {"URI": "http://dbpedia.org/resource/New_Mexico", "surface form": "New Mexico"}], "relations": [{"URI": "http://dbpedia.org/property/foundation", "surface form": "founded"}, {"URI": "http://dbpedia.org/property/foundation", "surface form": "founded"}]}, {"id": "1604", "question": [{"language": "en", "string": "Which television shows has sound format as 5.1 surround?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/format> <http://dbpedia.org/resource/5.1_surround_sound> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alisto"}}, "entities": [{"URI": "http://dbpedia.org/resource/5.1_surround_sound", "surface form": "5.1 surround"}], "relations": [{"URI": "http://dbpedia.org/ontology/format", "surface form": "format"}, {"URI": "http://dbpedia.org/ontology/TelevisionShow", "surface form": "television show"}]}, {"id": "1605", "question": [{"language": "en", "string": "Who is the producer of the single which was the subsequent work of He's a Liar?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/He's_a_Liar> <http://dbpedia.org/ontology/subsequentWork> ?x . ?x <http://dbpedia.org/ontology/producer> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Albhy_Galuten"}}, "entities": [{"URI": "http://dbpedia.org/resource/He's_a_Liar", "surface form": "He's a Liar"}], "relations": [{"URI": "http://dbpedia.org/ontology/producer", "surface form": "producer"}, {"URI": "http://dbpedia.org/ontology/parent", "surface form": "single"}, {"URI": "http://dbpedia.org/ontology/subsequentWork", "surface form": "subsequent work"}]}, {"id": "1606", "question": [{"language": "en", "string": "To what other locations does the airlines have flights, who also fly to Birmingham?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/targetAirport> <http://dbpedia.org/resource/Birmingham_Airport> . ?x <http://dbpedia.org/property/destinations> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Airline>}"}, "answers": {"uri": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "96"}}, "entities": [{"URI": "http://dbpedia.org/resource/Birmingham_Airport", "surface form": "Birmingham"}], "relations": [{"URI": "http://dbpedia.org/property/location", "surface form": "locations"}, {"URI": "http://dbpedia.org/ontology/icaoAirlineCode", "surface form": "airlines"}, {"URI": "http://dbpedia.org/ontology/suborbitalFlights", "surface form": "flights,"}, {"URI": "http://dbpedia.org/ontology/race", "surface form": "fly"}]}, {"id": "1607", "question": [{"language": "en", "string": "Name the television show whose creator is Simon Fuller and presented by Ryan Seacrest?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/creator> <http://dbpedia.org/resource/Simon_Fuller> . ?uri <http://dbpedia.org/ontology/presenter> <http://dbpedia.org/resource/Ryan_Seacrest> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/American_Idol"}}, "entities": [{"URI": "http://dbpedia.org/resource/Simon_Fuller", "surface form": "Simon Fuller"}, {"URI": "http://dbpedia.org/resource/Ryan_Seacrest", "surface form": "Ryan Seacrest"}], "relations": [{"URI": "http://dbpedia.org/property/name", "surface form": "name"}, {"URI": "http://dbpedia.org/ontology/production", "surface form": "television show"}, {"URI": "http://dbpedia.org/ontology/creator", "surface form": "creator"}]}, {"id": "1608", "question": [{"language": "en", "string": "In how many places has Garbage recorded their songs?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/producer> <http://dbpedia.org/resource/Garbage_(band)> . ?x <http://dbpedia.org/ontology/recordedIn> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "44"}}, "entities": [{"URI": "http://dbpedia.org/resource/Garbage_(band)", "surface form": "Garbage"}], "relations": [{"URI": "http://dbpedia.org/property/height", "surface form": "places"}, {"URI": "http://dbpedia.org/ontology/background", "surface form": "recorded"}, {"URI": "http://dbpedia.org/ontology/anthem", "surface form": "songs"}]}, {"id": "1609", "question": [{"language": "en", "string": "How many cars can I find related to the cars which have a V8 engine?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/engine> <http://dbpedia.org/resource/V8_engine> . ?x <http://dbpedia.org/property/related> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "96"}}, "entities": [{"URI": "http://dbpedia.org/resource/V8_engine", "surface form": "V8 engine"}], "relations": [{"URI": "http://dbpedia.org/ontology/management", "surface form": "cars"}, {"URI": "http://dbpedia.org/ontology/related", "surface form": "related"}, {"URI": "http://dbpedia.org/ontology/management", "surface form": "cars"}, {"URI": "http://dbpedia.org/ontology/engine", "surface form": "engine"}]}, {"id": "1610", "question": [{"language": "en", "string": "What products do US companies make?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/location> <http://dbpedia.org/resource/United_States> . ?x <http://dbpedia.org/ontology/product> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Company>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Virtuoso_Universal_Server"}}, "entities": [{"URI": "http://dbpedia.org/resource/United_States", "surface form": "US"}, {"URI": "http://dbpedia.org/resource/Companies_listed_on_the_New_York_Stock_Exchange_(J)", "surface form": "companies"}], "relations": [{"URI": "http://dbpedia.org/property/products", "surface form": "products"}]}, {"id": "1611", "question": [{"language": "en", "string": "How many characters are there in The Office?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE {?uri <http://dbpedia.org/ontology/series> <http://dbpedia.org/resource/The_Office_(U.S._TV_series)> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/FictionalCharacter>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/The_Office", "surface form": "The Office"}], "relations": [{"URI": "http://dbpedia.org/ontology/type", "surface form": "characters"}]}, {"id": "1612", "question": [{"language": "en", "string": "Name the person with opponents Ike Clanton and Tom McLaury?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/opponent> <http://dbpedia.org/resource/Ike_Clanton> . ?uri <http://dbpedia.org/ontology/opponent> <http://dbpedia.org/resource/Tom_McLaury> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Person>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Wyatt_Earp"}}, "entities": [{"URI": "http://dbpedia.org/resource/Dwight_D._Eisenhower", "surface form": "opponents Ike Clanton"}, {"URI": "http://dbpedia.org/resource/Tom_McLaury", "surface form": "Tom McLaury"}], "relations": [{"URI": "http://dbpedia.org/ontology/opponent", "surface form": "opponents"}, {"URI": "http://dbpedia.org/ontology/opponent", "surface form": "opponents"}]}, {"id": "1613", "question": [{"language": "en", "string": "Who all play for the teams performing in the united center?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/arena> <http://dbpedia.org/resource/United_Center> . ?uri <http://dbpedia.org/property/team> ?x . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/1969\u201370_New_York_Knicks_season"}}, "entities": [{"URI": "http://dbpedia.org/resource/United_Center", "surface form": "united center"}], "relations": [{"URI": "http://dbpedia.org/ontology/starring", "surface form": "play"}, {"URI": "http://dbpedia.org/ontology/numberOfTeams", "surface form": "teams"}, {"URI": "http://dbpedia.org/ontology/discharge", "surface form": "performing"}, {"URI": "http://dbpedia.org/ontology/unitedStatesNationalBridgeId", "surface form": "united center"}]}, {"id": "1614", "question": [{"language": "en", "string": "How many parties have come in power in elections where Y. S. Rajasekhara Reddy won?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/leader> <http://dbpedia.org/resource/Y._S._Rajasekhara_Reddy> . ?x <http://dbpedia.org/ontology/affiliation> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "6"}}, "entities": [{"URI": "http://dbpedia.org/resource/Y", "surface form": "Y"}, {"URI": "http://dbpedia.org/resource/Y._S._Rajasekhara_Reddy", "surface form": "S Rajasekhara Reddy"}, {"URI": "http://dbpedia.org/resource/S", "surface form": "S"}, {"URI": "http://dbpedia.org/resource/Y._S._Rajasekhara_Reddy", "surface form": "Y Rajasekhara Reddy"}], "relations": [{"URI": "http://dbpedia.org/ontology/part", "surface form": "parties"}, {"URI": "http://dbpedia.org/ontology/state", "surface form": "power"}, {"URI": "http://dbpedia.org/ontology/selection", "surface form": "elections"}, {"URI": "http://dbpedia.org/ontology/child", "surface form": "won"}]}, {"id": "1615", "question": [{"language": "en", "string": "Where did Wallace Dollase die?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Wallace_Dollase> <http://dbpedia.org/ontology/deathPlace> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Louisville,_Kentucky"}}, "entities": [{"URI": "http://dbpedia.org/resource/Wallace_Dollase", "surface form": "Wallace Dollase"}], "relations": [{"URI": "http://dbpedia.org/ontology/deathPlace", "surface form": "die"}]}, {"id": "1616", "question": [{"language": "en", "string": "Who is the founder of the trade union with whom Amalgamated Clothing Workers of America is affiliated?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Amalgamated_Clothing_Workers_of_America> <http://dbpedia.org/ontology/affiliation> ?x . ?x <http://dbpedia.org/property/founded> ?uri . }"}, "answers": {"uri": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#date", "value": "1935-11-09"}}, "entities": [{"URI": "http://dbpedia.org/resource/Amalgamated_Clothing_Workers_of_America", "surface form": "Amalgamated Clothing Workers of America"}], "relations": [{"URI": "http://dbpedia.org/ontology/founder", "surface form": "founder"}, {"URI": "http://dbpedia.org/ontology/related", "surface form": "affiliated"}]}, {"id": "1617", "question": [{"language": "en", "string": "How many non fiction topics does Thud! deals with?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { <http://dbpedia.org/resource/Thud!> <http://dbpedia.org/ontology/nonFictionSubject> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/Thud!", "surface form": "Thud deals"}], "relations": [{"URI": "http://dbpedia.org/ontology/nonFictionSubject", "surface form": "fiction topics"}]}, {"id": "1618", "question": [{"language": "en", "string": "How many people were in a youthclub which played in the Argentine Primera Division?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/league> <http://dbpedia.org/resource/Argentine_Primera_Divisi\u00f3n> . ?uri <http://dbpedia.org/property/youthclubs> ?x . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "2439"}}, "entities": [{"URI": "http://dbpedia.org/resource/Argentina", "surface form": "Argentine Primera Division"}, {"URI": "http://dbpedia.org/resource/Argentine_Primera_Divisi\u00f3n", "surface form": "Argentine Primera Division"}], "relations": [{"URI": "http://dbpedia.org/ontology/participant", "surface form": "played"}, {"URI": "http://dbpedia.org/ontology/country", "surface form": ""}]}, {"id": "1619", "question": [{"language": "en", "string": "What is the occupation of the band members of The Shirelles?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/associatedMusicalArtist> <http://dbpedia.org/resource/The_Shirelles> . ?x <http://dbpedia.org/ontology/occupation> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chess"}}, "entities": [{"URI": "http://dbpedia.org/resource/The_Shirelles", "surface form": "The Shirelles"}], "relations": [{"URI": "http://dbpedia.org/ontology/occupation", "surface form": "occupation"}, {"URI": "http://dbpedia.org/ontology/membership", "surface form": "band members"}]}, {"id": "1620", "question": [{"language": "en", "string": "In which university did Harlan Mathews study, where Richard Meriil Atkinson went too?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Harlan_Mathews> <http://dbpedia.org/ontology/almaMater> ?uri. <http://dbpedia.org/resource/Richard_Merrill_Atkinson> <http://dbpedia.org/ontology/almaMater> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vanderbilt_University"}}, "entities": [{"URI": "http://dbpedia.org/resource/Harlan_Mathews", "surface form": "Harlan Mathews"}, {"URI": "http://dbpedia.org/resource/Richard_Merrill_Atkinson", "surface form": "atkinson richard"}], "relations": [{"URI": "http://dbpedia.org/ontology/almaMater", "surface form": "study"}, {"URI": "http://dbpedia.org/ontology/almaMater", "surface form": "study"}]}, {"id": "1621", "question": [{"language": "en", "string": "What kind of buildings were designed by Pyusawhti?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/architect> <http://dbpedia.org/resource/Pyusawhti> . ?x <http://dbpedia.org/ontology/type> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Building>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pilgrim"}}, "entities": [{"URI": "http://dbpedia.org/resource/Pyusawhti", "surface form": "Pyusawhti"}], "relations": [{"URI": "http://dbpedia.org/ontology/architect", "surface form": "buildings"}, {"URI": "http://dbpedia.org/ontology/architect", "surface form": "designed"}]}, {"id": "1622", "question": [{"language": "en", "string": "What is the owning company of the bank whose parent is Sony Financial ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/parent> <http://dbpedia.org/resource/Sony_Financial> . ?x <http://dbpedia.org/ontology/owningCompany> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Company>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sony"}}, "entities": [{"URI": "http://dbpedia.org/resource/Sony_Financial", "surface form": "Sony Financial"}], "relations": [{"URI": "http://dbpedia.org/ontology/owningCompany", "surface form": "owning"}, {"URI": "http://dbpedia.org/ontology/company", "surface form": "company"}, {"URI": "http://dbpedia.org/ontology/number", "surface form": "bank"}, {"URI": "http://dbpedia.org/property/parent", "surface form": "parent"}]}, {"id": "1623", "question": [{"language": "en", "string": "What are some gymnasts coached by Amanda Reddin?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/headcoach> <http://dbpedia.org/resource/Amanda_Reddin> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Gymnast>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Beth_Tweddle"}}, "entities": [{"URI": "http://dbpedia.org/resource/Amanda_Reddin", "surface form": "Amanda Reddin"}], "relations": [{"URI": "http://dbpedia.org/property/headcoach", "surface form": "coached"}, {"URI": "http://dbpedia.org/ontology/Gymnast", "surface form": "gymnast"}]}, {"id": "1624", "question": [{"language": "en", "string": "Katharevousa writers have been given which awards?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/movement> <http://dbpedia.org/resource/Katharevousa> . ?x <http://dbpedia.org/ontology/award> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Writer>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nobel_Prize"}}, "entities": [{"URI": "http://dbpedia.org/resource/Freedom_Writers", "surface form": "katharevousa writers"}], "relations": [{"URI": "http://dbpedia.org/ontology/budget", "surface form": "awards"}]}, {"id": "1625", "question": [{"language": "en", "string": "What are some mammals whose phylum is Chordate?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/phylum> <http://dbpedia.org/resource/Chordate> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Mammal>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Allacerops"}}, "entities": [{"URI": "http://dbpedia.org/resource/Mammals_of_the_Indiana_Dunes", "surface form": "mammals"}, {"URI": "http://dbpedia.org/resource/Chordate", "surface form": "Chordate"}], "relations": [{"URI": "http://dbpedia.org/property/phylum", "surface form": "phylum"}, {"URI": "http://dbpedia.org/ontology/Mammal", "surface form": "mammal"}]}, {"id": "1626", "question": [{"language": "en", "string": "How many developers have worked on games of the Oddworld series?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/series> <http://dbpedia.org/resource/Oddworld> . ?x <http://dbpedia.org/ontology/developer> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "15"}}, "entities": [{"URI": "http://dbpedia.org/resource/Oddworld", "surface form": "Oddworld"}], "relations": [{"URI": "http://dbpedia.org/ontology/series", "surface form": "series"}, {"URI": "http://dbpedia.org/ontology/developer", "surface form": "developer"}]}, {"id": "1627", "question": [{"language": "en", "string": "Name the home ground of 2015 Fort Lauderdale Strikers season ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/2015_Fort_Lauderdale_Strikers_season> <http://dbpedia.org/ontology/ground> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fort_Lauderdale,_Florida"}}, "entities": [{"URI": "http://dbpedia.org/resource/2015_Fort_Lauderdale_Strikers_season", "surface form": "2015 Fort Lauderdale Strikers season"}], "relations": [{"URI": "http://dbpedia.org/property/name", "surface form": "name"}, {"URI": "http://dbpedia.org/ontology/ground", "surface form": "home ground"}]}, {"id": "1628", "question": [{"language": "en", "string": "What is the resting place of the engineer who was the architect of Plaza on DeWitt?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Plaza_on_DeWitt> <http://dbpedia.org/ontology/architect> ?x . ?x <http://dbpedia.org/ontology/restingPlace> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chicago"}}, "entities": [{"URI": "http://dbpedia.org/resource/Plaza_on_DeWitt", "surface form": "Plaza on DeWitt"}], "relations": [{"URI": "http://dbpedia.org/ontology/architect", "surface form": "architect"}, {"URI": "http://dbpedia.org/ontology/restingPlace", "surface form": "resting place"}]}, {"id": "1629", "question": [{"language": "en", "string": "Where are the cooper mountain vineyards and Mt. bachelor ski area located?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Cooper_Mountain_Vineyards> <http://dbpedia.org/ontology/location> ?uri. <http://dbpedia.org/resource/Mount_Bachelor_ski_area> <http://dbpedia.org/ontology/location> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Oregon"}}, "entities": [{"URI": "http://dbpedia.org/resource/Cooper_Mountain_Vineyards", "surface form": "cooper mountain vineyards"}, {"URI": "http://dbpedia.org/resource/Mount_Bachelor_ski_area", "surface form": "Mt bachelor ski area"}], "relations": [{"URI": "http://dbpedia.org/ontology/locatedInArea", "surface form": "located"}]}, {"id": "1630", "question": [{"language": "en", "string": "How many tenants are there in the Mercedes Benz Superdome?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { <http://dbpedia.org/resource/Mercedes-Benz_Superdome> <http://dbpedia.org/ontology/tenant> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/Mercedes-Benz_Superdome", "surface form": "Mercedes Benz Superdome"}], "relations": [{"URI": "http://dbpedia.org/ontology/tenant", "surface form": "tenant"}]}, {"id": "1631", "question": [{"language": "en", "string": "What is the affiliation of the hospital where Alfred Blalock works?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Alfred_Blalock> <http://dbpedia.org/property/workInstitutions> ?x . ?x <http://dbpedia.org/property/affiliation> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Johns_Hopkins_School_of_Medicine"}}, "entities": [{"URI": "http://dbpedia.org/resource/Hospital", "surface form": "hospital"}, {"URI": "http://dbpedia.org/resource/Alfred_Blalock", "surface form": "Alfred Blalock"}], "relations": [{"URI": "http://dbpedia.org/ontology/affiliation", "surface form": "affiliation"}, {"URI": "http://dbpedia.org/ontology/language", "surface form": "works"}]}, {"id": "1632", "question": [{"language": "en", "string": "How many genres gave birth to other genres which emphasize Bass Guitars?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/instruments> <http://dbpedia.org/resource/Bass_guitar> . ?x <http://dbpedia.org/ontology/stylisticOrigin> ?uri . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/MusicGenre>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "306"}}, "entities": [{"URI": "http://dbpedia.org/resource/No_Guitars", "surface form": "Bass Guitars"}], "relations": [{"URI": "http://dbpedia.org/ontology/type", "surface form": "genres"}, {"URI": "http://dbpedia.org/ontology/birthPlace", "surface form": "birth"}, {"URI": "http://dbpedia.org/ontology/type", "surface form": "genres"}, {"URI": "http://dbpedia.org/property/highlight", "surface form": "emphasize"}]}, {"id": "1633", "question": [{"language": "en", "string": "How many bands began in Birmingham?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE {?uri <http://dbpedia.org/property/origin> <http://dbpedia.org/resource/Birmingham> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Band>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "39"}}, "entities": [{"URI": "http://dbpedia.org/resource/Birmingham", "surface form": "Birmingham"}], "relations": [{"URI": "http://dbpedia.org/property/origin", "surface form": "in"}, {"URI": "http://dbpedia.org/ontology/Band", "surface form": "band"}]}, {"id": "1634", "question": [{"language": "en", "string": "How many causes of death have been associated with American citizens?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/citizenship> <http://dbpedia.org/resource/United_States> . ?x <http://dbpedia.org/ontology/deathCause> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "2"}}, "entities": [{"URI": "http://dbpedia.org/resource/United_States", "surface form": "American"}], "relations": [{"URI": "http://dbpedia.org/property/citizenship", "surface form": "citizens"}, {"URI": "http://dbpedia.org/ontology/deathCause", "surface form": "death"}]}, {"id": "1635", "question": [{"language": "en", "string": "For how many teams have the league players of Czech Extraliga, previously played?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/league> <http://dbpedia.org/resource/Czech_Extraliga> . ?x <http://dbpedia.org/ontology/formerTeam> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "1017"}}, "entities": [{"URI": "http://dbpedia.org/resource/Czech_Republic", "surface form": "Czech Extraliga,"}, {"URI": "http://dbpedia.org/resource/Czech_Extraliga", "surface form": "Czech Extraliga,"}], "relations": [{"URI": "http://dbpedia.org/property/league", "surface form": "league"}, {"URI": "http://dbpedia.org/ontology/formerTeam", "surface form": "teams"}]}, {"id": "1636", "question": [{"language": "en", "string": "Count the number of sports played by university which also plays Taekwondo ?"}], "query": {"sparql": " SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/athletics> <http://dbpedia.org/resource/Taekwondo> . ?x <http://dbpedia.org/property/athletics> ?uri }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "11"}}, "entities": [{"URI": "http://dbpedia.org/resource/Taekwondo", "surface form": "Taekwondo"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": "count"}, {"URI": "http://dbpedia.org/ontology/sport", "surface form": "sports"}, {"URI": "http://dbpedia.org/ontology/portrayer", "surface form": "played"}, {"URI": "http://dbpedia.org/ontology/university", "surface form": "university"}, {"URI": "http://dbpedia.org/ontology/plays", "surface form": "plays"}]}, {"id": "1637", "question": [{"language": "en", "string": "Which football players currently have their contracts with Stoke City F.C.?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/currentclub> <http://dbpedia.org/resource/Stoke_City_F.C.> } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/David_Rouse"}}, "entities": [{"URI": "http://dbpedia.org/resource/FC", "surface form": "FC"}, {"URI": "http://dbpedia.org/resource/Stoke_City_F.C.", "surface form": "Stoke City"}], "relations": [{"URI": "http://dbpedia.org/ontology/trainer", "surface form": "football players"}, {"URI": "http://dbpedia.org/ontology/thumbnail", "surface form": "contracts"}]}, {"id": "1638", "question": [{"language": "en", "string": "What are the cities around the sea which flows into the Atlantic?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/inflow> <http://dbpedia.org/resource/Atlantic_Ocean> . ?x <http://dbpedia.org/property/cities> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Sea>}"}, "answers": {"uri": {"type": "literal", "xml:lang": "en", "value": "Alexandria, Barcelona, Algiers, Izmir, Tel Aviv-Yafo, Rome, Athens, Antalya, Beirut, Tripoli, Mersin, Marseille, Mu\u011fla, Naples, Tangier, Tunis, Split,"}}, "entities": [{"URI": "http://dbpedia.org/resource/Atlantic_Ocean", "surface form": "Atlantic"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": "cities"}, {"URI": "http://dbpedia.org/property/shore", "surface form": "sea"}, {"URI": "http://dbpedia.org/ontology/outflow", "surface form": "flows"}]}, {"id": "1639", "question": [{"language": "en", "string": "Artists trained at art students league NY are buried where?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/training> <http://dbpedia.org/resource/Art_Students_League_of_New_York> . ?x <http://dbpedia.org/ontology/restingPlace> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Artist>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cremation"}}, "entities": [{"URI": "http://dbpedia.org/resource/Nymphicula_banauensis", "surface form": "NY"}, {"URI": "http://dbpedia.org/resource/Lithuanian_Students_Basketball_League", "surface form": "art students league"}], "relations": [{"URI": "http://dbpedia.org/ontology/rkdArtistsId", "surface form": "artists"}, {"URI": "http://dbpedia.org/ontology/coach", "surface form": "trained"}, {"URI": "http://dbpedia.org/ontology/family", "surface form": "buried"}]}, {"id": "1640", "question": [{"language": "en", "string": "Who is the owner of Bloomberg L.P. ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Bloomberg_L.P.> <http://dbpedia.org/property/owner> ?uri } "}, "answers": {"uri": {"type": "literal", "xml:lang": "en", "value": "Bank of America"}}, "entities": [{"URI": "http://dbpedia.org/resource/LP", "surface form": "LP"}, {"URI": "http://dbpedia.org/resource/Bloomberg_Radio", "surface form": "Bloomberg"}], "relations": [{"URI": "http://dbpedia.org/property/owner", "surface form": "owner"}]}, {"id": "1641", "question": [{"language": "en", "string": "What is the location of death of the skier who was the bronze medalist of Alpine skiing at the 1964 Winter Olympics Men's slalom ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Alpine_skiing_at_the_1964_Winter_Olympics_\u2013_Men's_slalom> <http://dbpedia.org/ontology/bronzeMedalist> ?x . ?x <http://dbpedia.org/property/deathPlace> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Skier>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Boulder,_Colorado"}}, "entities": [{"URI": "http://dbpedia.org/resource/Alpine_skiing_at_the_1964_Winter_Olympics_\u2013_Men's_slalom", "surface form": "Alpine skiing at the 1964 Winter Olympics Men's slalom"}], "relations": []}, {"id": "1642", "question": [{"language": "en", "string": "What is the debut team of the american football player who studied in North Fort Myers High School?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/highschool> <http://dbpedia.org/resource/North_Fort_Myers_High_School> . ?x <http://dbpedia.org/property/debutteam> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/AmericanFootballPlayer>}"}, "answers": {"uri": {"type": "literal", "xml:lang": "en", "value": "New York Yankees"}}, "entities": [{"URI": "http://dbpedia.org/resource/Bill_Walsh_(American_football_player)", "surface form": "american football player"}, {"URI": "http://dbpedia.org/resource/North_Fort_Myers_High_School", "surface form": "North Fort Myers High School"}], "relations": [{"URI": "http://dbpedia.org/ontology/debutTeam", "surface form": "debut team"}, {"URI": "http://dbpedia.org/ontology/course", "surface form": "studied"}]}, {"id": "1643", "question": [{"language": "en", "string": "In which races did Mouse Morris take part?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Mouse_Morris> <http://dbpedia.org/property/race> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Queen_Mother_Champion_Chase"}}, "entities": [{"URI": "http://dbpedia.org/resource/Mouse_Morris", "surface form": "Mouse Morris"}], "relations": [{"URI": "http://dbpedia.org/property/race", "surface form": "race"}]}, {"id": "1644", "question": [{"language": "en", "string": "Who are the writers of South Park: The Stick of Truth?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/South_Park:_The_Stick_of_Truth> <http://dbpedia.org/property/writer> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Matt_Stone"}}, "entities": [{"URI": "http://dbpedia.org/resource/South_Park:_The_Stick_of_Truth", "surface form": "South Park: The Stick of Truth"}], "relations": [{"URI": "http://dbpedia.org/ontology/writer", "surface form": "writers"}]}, {"id": "1645", "question": [{"language": "en", "string": "Whose commanders are Colin Powell and Jaber Al-Ahmad Al-Sabah?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/commander> <http://dbpedia.org/resource/Colin_Powell> . ?uri <http://dbpedia.org/ontology/commander> <http://dbpedia.org/resource/Jaber_Al-Ahmad_Al-Sabah> . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gulf_War"}}, "entities": [{"URI": "http://dbpedia.org/resource/Colin_Powell", "surface form": "Colin Powell"}, {"URI": "http://dbpedia.org/resource/Jaber_Al-Ahmad_Al-Sabah", "surface form": "Jaber Al-Ahmad Al-Sabah"}], "relations": [{"URI": "http://dbpedia.org/ontology/commander", "surface form": "commanders"}]}, {"id": "1646", "question": [{"language": "en", "string": "List the trainers of Shinya Aoki ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Shinya_Aoki> <http://dbpedia.org/ontology/trainer> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chatri_Sityodtong"}}, "entities": [{"URI": "http://dbpedia.org/resource/Shinya_Aoki", "surface form": "Shinya Aoki"}], "relations": [{"URI": "http://dbpedia.org/ontology/trainer", "surface form": "trainers"}]}, {"id": "1647", "question": [{"language": "en", "string": "What do typically NGOs work for?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/type> <http://dbpedia.org/resource/Non-governmental_organization> . ?x <http://dbpedia.org/property/purpose> ?uri . }"}, "answers": {"uri": {"type": "literal", "xml:lang": "en", "value": "philately, scripophily, numismatics, ex-libris collection"}}, "entities": [{"URI": "http://dbpedia.org/resource/Typically_Tropical", "surface form": "typically NGOs work"}], "relations": []}, {"id": "1648", "question": [{"language": "en", "string": "List few schools situated in Reading, Berkshire ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/city> <http://dbpedia.org/resource/Reading,_Berkshire> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/School>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Denefield_School"}}, "entities": [{"URI": "http://dbpedia.org/resource/Reading,_Berkshire", "surface form": "Reading, Berkshire"}], "relations": [{"URI": "http://dbpedia.org/property/city", "surface form": "in"}, {"URI": "http://dbpedia.org/ontology/School", "surface form": "school"}]}, {"id": "1649", "question": [{"language": "en", "string": "How many universities participate in the NCAA Division I Football Bowl Subdivision?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE {?uri <http://dbpedia.org/property/athletics> <http://dbpedia.org/resource/NCAA_Division_I_Football_Bowl_Subdivision> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/University>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/Universities_Ireland", "surface form": "universities"}, {"URI": "http://dbpedia.org/resource/National_Collegiate_Athletic_Association_(Philippines)", "surface form": "NCAA"}, {"URI": "http://dbpedia.org/resource/NCAA_Division_I_Football_Bowl_Subdivision", "surface form": "Division I Football Bowl Subdivision"}, {"URI": "http://dbpedia.org/resource/I", "surface form": "I"}, {"URI": "http://dbpedia.org/resource/NCAA_Division_I_Football_Bowl_Subdivision", "surface form": "NCAA Division Football Bowl Subdivision"}], "relations": [{"URI": "http://dbpedia.org/ontology/participant", "surface form": "participate"}]}, {"id": "1650", "question": [{"language": "en", "string": "What is the state of origin of Thomas Pfyl ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Thomas_Pfyl> <http://dbpedia.org/ontology/stateOfOrigin> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Switzerland"}}, "entities": [{"URI": "http://dbpedia.org/resource/Thomas_Pfyl", "surface form": "Thomas Pfyl"}], "relations": [{"URI": "http://dbpedia.org/ontology/stateOfOrigin", "surface form": "state of origin"}]}, {"id": "1651", "question": [{"language": "en", "string": "Give me a count of companies located in Texas ?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE {?uri <http://dbpedia.org/ontology/locationCity> <http://dbpedia.org/resource/Texas> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Company>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "60"}}, "entities": [{"URI": "http://dbpedia.org/resource/Companies_listed_on_the_New_York_Stock_Exchange_(J)", "surface form": "companies"}, {"URI": "http://dbpedia.org/resource/Texas", "surface form": "Texas"}], "relations": [{"URI": "http://dbpedia.org/ontology/locationCity", "surface form": "located"}]}, {"id": "1652", "question": [{"language": "en", "string": "Who is the cover artist of Doctor Mirabilis (novel) ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Doctor_Mirabilis_(novel)> <http://dbpedia.org/property/coverArtist> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Roger_Bacon"}}, "entities": [{"URI": "http://dbpedia.org/resource/Doctor_Mirabilis_(novel)", "surface form": "Doctor Mirabilis (novel)"}], "relations": [{"URI": "http://dbpedia.org/ontology/coverArtist", "surface form": "cover artist"}]}, {"id": "1653", "question": [{"language": "en", "string": "list some shawnee people?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/nationality> <http://dbpedia.org/resource/Shawnee> } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tecumseh"}}, "entities": [{"URI": "http://dbpedia.org/resource/Shawnee", "surface form": "Shawnee"}], "relations": []}, {"id": "1654", "question": [{"language": "en", "string": "Who is the common prime minster of William Deaner and mark Latham ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/William_Deane> <http://dbpedia.org/ontology/primeMinister> ?uri. <http://dbpedia.org/resource/Mark_Latham> <http://dbpedia.org/property/primeminister> ?uri} "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/John_Howard"}}, "entities": [{"URI": "http://dbpedia.org/resource/William_Deane", "surface form": "William Deaner"}, {"URI": "http://dbpedia.org/resource/Mark_Latham", "surface form": "mark Latham"}], "relations": [{"URI": "http://dbpedia.org/ontology/type", "surface form": "mark"}]}, {"id": "1655", "question": [{"language": "en", "string": "What is the parent company of company which owns Sony Bank?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Sony_Bank> <http://dbpedia.org/property/parent> ?x . ?x <http://dbpedia.org/ontology/parentCompany> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Company>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sony"}}, "entities": [{"URI": "http://dbpedia.org/resource/Sony_Bank", "surface form": "Sony Bank"}], "relations": [{"URI": "http://dbpedia.org/property/parent", "surface form": "parent company"}, {"URI": "http://dbpedia.org/ontology/company", "surface form": "company"}, {"URI": "http://dbpedia.org/ontology/relation", "surface form": "owns"}]}, {"id": "1656", "question": [{"language": "en", "string": "How many games are played at universities in Metro Manilla?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/state> <http://dbpedia.org/resource/Metro_Manila> . ?x <http://dbpedia.org/property/athletics> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "3"}}, "entities": [{"URI": "http://dbpedia.org/resource/Metro_Manila", "surface form": "Metro Manill"}], "relations": [{"URI": "http://dbpedia.org/ontology/games", "surface form": "games"}, {"URI": "http://dbpedia.org/ontology/portrayer", "surface form": "played"}]}, {"id": "1657", "question": [{"language": "en", "string": "Who is the former partner of the pupil of Dalilah Sappenfield?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/coach> <http://dbpedia.org/resource/Dalilah_Sappenfield> . ?x <http://dbpedia.org/ontology/formerPartner> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nathan_Miller_(figure_skater)"}}, "entities": [{"URI": "http://dbpedia.org/resource/Pupil", "surface form": "pupil"}, {"URI": "http://dbpedia.org/resource/Dalilah_Sappenfield", "surface form": "Dalilah Sappenfield"}], "relations": [{"URI": "http://dbpedia.org/ontology/spouse", "surface form": "former partner"}]}, {"id": "1658", "question": [{"language": "en", "string": "Who is the Pole driver of 1992 Canadian Grand Prix ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/1992_Canadian_Grand_Prix> <http://dbpedia.org/property/poleDriver> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ayrton_Senna"}}, "entities": [{"URI": "http://dbpedia.org/resource/Poland", "surface form": "Pole driver of 1992 Canadian Grand Prix"}, {"URI": "http://dbpedia.org/resource/1992_Canadian_Grand_Prix", "surface form": "Pole driver of 1992 Canadian Grand Prix"}], "relations": [{"URI": "http://dbpedia.org/property/poleDriver", "surface form": "Pole driver"}]}, {"id": "1659", "question": [{"language": "en", "string": "Which city's neighboring municipalities are Lancy and Pregny-Chambsy?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/neighboringMunicipalities> <http://dbpedia.org/resource/Lancy> . ?uri <http://dbpedia.org/ontology/neighboringMunicipality> <http://dbpedia.org/resource/Pregny-Chamb\u00e9sy> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Location>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Geneva"}}, "entities": [{"URI": "http://dbpedia.org/resource/Neighboring_Sounds", "surface form": " neighboring municipalities"}, {"URI": "http://dbpedia.org/resource/Institut_International_de_Lancy", "surface form": "Lancy and Pregny-Chambsy"}], "relations": [{"URI": "http://dbpedia.org/ontology/city", "surface form": "city"}]}, {"id": "1660", "question": [{"language": "en", "string": "Which home town of PAvel Moroz is the death location of the Yakov Estrin ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Pavel_Moroz> <http://dbpedia.org/property/hometown> ?uri. <http://dbpedia.org/resource/Yakov_Estrin> <http://dbpedia.org/ontology/deathPlace> ?uri} "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Moscow"}}, "entities": [{"URI": "http://dbpedia.org/resource/Pavel_Moroz", "surface form": "PAvel Moroz"}, {"URI": "http://dbpedia.org/resource/Yakov_Estrin", "surface form": "Yakov Estrin"}], "relations": [{"URI": "http://dbpedia.org/property/hometown", "surface form": "home town"}, {"URI": "http://dbpedia.org/ontology/deathPlace", "surface form": "death location"}]}, {"id": "1661", "question": [{"language": "en", "string": "Which mainter of Cheasty Boulevard South is also the county seat of the King County, Washingtonsu ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Cheasty_Boulevard_South> <http://dbpedia.org/ontology/maintainedBy> ?uri. <http://dbpedia.org/resource/King_County,_Washington> <http://dbpedia.org/ontology/countySeat> ?uri} "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Seattle"}}, "entities": [{"URI": "http://dbpedia.org/resource/Cheasty_Boulevard_South", "surface form": "Cheasty Boulevard South"}, {"URI": "http://dbpedia.org/resource/King_County,_Washington", "surface form": "King County, Washingtonsu"}], "relations": [{"URI": "http://dbpedia.org/ontology/owner", "surface form": "mainter"}, {"URI": "http://dbpedia.org/ontology/countySeat", "surface form": "county seat"}]}, {"id": "1662", "question": [{"language": "en", "string": "From what countries have people participated in the Excelsior Stakes?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/race> <http://dbpedia.org/resource/Excelsior_Stakes> . ?x <http://dbpedia.org/ontology/birthPlace> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "20"}}, "entities": [{"URI": "http://dbpedia.org/resource/Countries_of_the_United_Kingdom", "surface form": "countries"}, {"URI": "http://dbpedia.org/resource/Excelsior_Stakes", "surface form": "Excelsior Stakes"}], "relations": [{"URI": "http://dbpedia.org/ontology/participant", "surface form": "participated"}]}, {"id": "1663", "question": [{"language": "en", "string": "What are the largest cities in each of the destinations of TranStar Airlines?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/TranStar_Airlines> <http://dbpedia.org/ontology/destination> ?x . ?x <http://dbpedia.org/ontology/largestCity> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Houston"}}, "entities": [{"URI": "http://dbpedia.org/resource/Destinations_Academy", "surface form": "destinations"}, {"URI": "http://dbpedia.org/resource/TranStar_Airlines", "surface form": "TranStar Airlines"}], "relations": [{"URI": "http://dbpedia.org/ontology/destination", "surface form": "destination"}, {"URI": "http://dbpedia.org/ontology/largestCity", "surface form": "largest"}]}, {"id": "1664", "question": [{"language": "en", "string": "Which writer is famous for works written by Neil Gaiman?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/writers> <http://dbpedia.org/resource/Neil_Gaiman> . ?uri <http://dbpedia.org/ontology/notableWork> ?x . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Neil_Gaiman"}}, "entities": [{"URI": "http://dbpedia.org/resource/Neil_Gaiman", "surface form": "Neil Gaiman"}], "relations": [{"URI": "http://dbpedia.org/property/writers", "surface form": "written by"}, {"URI": "http://dbpedia.org/ontology/notableWork", "surface form": "works"}]}, {"id": "1665", "question": [{"language": "en", "string": "Who is the developer of the software which serves the platform for King's Quest VI?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/King's_Quest_VI> <http://dbpedia.org/ontology/computingPlatform> ?x . ?x <http://dbpedia.org/property/developer> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Software>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Microsoft"}}, "entities": [{"URI": "http://dbpedia.org/resource/King's_Quest_VI", "surface form": "King's Quest VI"}], "relations": [{"URI": "http://dbpedia.org/ontology/developer", "surface form": "developer"}, {"URI": "http://dbpedia.org/property/series", "surface form": "serves"}, {"URI": "http://dbpedia.org/ontology/computingPlatform", "surface form": "platform"}]}, {"id": "1666", "question": [{"language": "en", "string": "Who was in youth clubs of FC Barcelona and Newell's Old Boys?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/youthclubs> <http://dbpedia.org/resource/FC_Barcelona> . ?uri <http://dbpedia.org/property/youthclubs> <http://dbpedia.org/resource/Newell's_Old_Boys> . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lionel_Messi"}}, "entities": [{"URI": "http://dbpedia.org/resource/FC_Barcelona", "surface form": "FC Barcelona"}, {"URI": "http://dbpedia.org/resource/Newell's_Old_Boys", "surface form": "Newell's Old Boys"}], "relations": [{"URI": "http://dbpedia.org/property/youthclubs", "surface form": "youth clubs"}, {"URI": "http://dbpedia.org/property/youthclubs", "surface form": "youth clubs"}]}, {"id": "1667", "question": [{"language": "en", "string": "For which country did Alexander Lippisch design airplanes?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/designer> <http://dbpedia.org/resource/Alexander_Lippisch> . ?x <http://dbpedia.org/property/nationalOrigin> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Aircraft>}"}, "answers": {"uri": {"type": "literal", "xml:lang": "en", "value": "Germany"}}, "entities": [{"URI": "http://dbpedia.org/resource/Alexander_Lippisch", "surface form": "Alexander Lippisch design airplanes"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": "country"}]}, {"id": "1668", "question": [{"language": "en", "string": "Who is the former partner of Chris Knierim ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Chris_Knierim> <http://dbpedia.org/ontology/formerPartner> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alexa_Knierim"}}, "entities": [{"URI": "http://dbpedia.org/resource/Chris_Knierim", "surface form": "Chris Knierim"}], "relations": [{"URI": "http://dbpedia.org/ontology/formerPartner", "surface form": "former partner"}]}, {"id": "1669", "question": [{"language": "en", "string": "How many different kinds of softwares have been released under the GPL license?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/license> <http://dbpedia.org/resource/GNU_General_Public_License> . ?x <http://dbpedia.org/ontology/genre> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "1377"}}, "entities": [{"URI": "http://dbpedia.org/resource/Software", "surface form": "softwares"}, {"URI": "http://dbpedia.org/resource/GNU_General_Public_License", "surface form": "GPL"}], "relations": [{"URI": "http://dbpedia.org/ontology/genre", "surface form": "kinds"}, {"URI": "http://dbpedia.org/property/released", "surface form": "released"}, {"URI": "http://dbpedia.org/ontology/license", "surface form": "license"}]}, {"id": "1670", "question": [{"language": "en", "string": "What is the religion of the relatives of Carmela Soprano ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Carmela_Soprano> <http://dbpedia.org/ontology/relative> ?x . ?x <http://dbpedia.org/ontology/religion> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Evangelism"}}, "entities": [{"URI": "http://dbpedia.org/resource/Carmela_Soprano", "surface form": "Carmela Soprano"}], "relations": [{"URI": "http://dbpedia.org/ontology/religion", "surface form": "religion"}, {"URI": "http://dbpedia.org/ontology/relative", "surface form": "relatives"}]}, {"id": "1671", "question": [{"language": "en", "string": "In all the grand prixes where the first team was Scuderia Ferrari, who all were the pole drivers?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/firstTeam> <http://dbpedia.org/resource/Scuderia_Ferrari> . ?x <http://dbpedia.org/property/poleDriver> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/GrandPrix>}"}, "answers": {"uri": {"type": "literal", "xml:lang": "en", "value": "Antonio Brivio"}}, "entities": [{"URI": "http://dbpedia.org/resource/Scuderia_Ferrari", "surface form": "Scuderia Ferrari"}], "relations": [{"URI": "http://dbpedia.org/ontology/grandsire", "surface form": "grand prixes"}, {"URI": "http://dbpedia.org/ontology/team", "surface form": "team"}, {"URI": "http://dbpedia.org/property/drivers", "surface form": "pole drivers"}]}, {"id": "1672", "question": [{"language": "en", "string": "What is the citizenship of Erastus Wiman ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Erastus_Wiman> <http://dbpedia.org/ontology/citizenship> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Canadians"}}, "entities": [{"URI": "http://dbpedia.org/resource/Erastus_Wiman", "surface form": "Erastus Wiman"}], "relations": [{"URI": "http://dbpedia.org/ontology/citizenship", "surface form": "citizenship"}]}, {"id": "1673", "question": [{"language": "en", "string": "What are some awards given to the french people?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/stateOfOrigin> <http://dbpedia.org/resource/French_people> . ?x <http://dbpedia.org/property/awards> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Prix_Goncourt"}}, "entities": [], "relations": [{"URI": "http://dbpedia.org/ontology/award", "surface form": "awards"}, {"URI": "http://dbpedia.org/ontology/channel", "surface form": "french"}]}, {"id": "1674", "question": [{"language": "en", "string": "where are the sister stations of CFRB broadcasted?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/sisterStations> <http://dbpedia.org/resource/CFRB> . ?x <http://dbpedia.org/ontology/broadcastArea> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Greater_Toronto_Area"}}, "entities": [{"URI": "http://dbpedia.org/resource/CFRB", "surface form": "CFRB"}], "relations": [{"URI": "http://dbpedia.org/property/sisterStations", "surface form": "sister stations"}, {"URI": "http://dbpedia.org/ontology/broadcastArea", "surface form": "broadcasted"}]}, {"id": "1675", "question": [{"language": "en", "string": "Name the district of Robert William Wilcox ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Robert_William_Wilcox> <http://dbpedia.org/property/district> ?uri } "}, "answers": {"uri": {"type": "literal", "xml:lang": "en", "value": "AL"}}, "entities": [{"URI": "http://dbpedia.org/resource/Robert_William_Wilcox", "surface form": "Robert William Wilcox"}], "relations": [{"URI": "http://dbpedia.org/property/name", "surface form": "name"}, {"URI": "http://dbpedia.org/ontology/district", "surface form": "district"}]}, {"id": "1676", "question": [{"language": "en", "string": "What are the video games composed by Hirokazu Tanaka?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/composer> <http://dbpedia.org/resource/Hirokazu_Tanaka> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/VideoGame>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Wild_Gunman"}}, "entities": [{"URI": "http://dbpedia.org/resource/Hirokazu_Tanaka", "surface form": "Hirokazu Tanaka"}], "relations": [{"URI": "http://dbpedia.org/property/composer", "surface form": "composed"}, {"URI": "http://dbpedia.org/ontology/VideoGame", "surface form": "video game"}]}, {"id": "1677", "question": [{"language": "en", "string": "What are the academic interest of Philip Novak?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Philip_Novak> <http://dbpedia.org/property/mainInterests> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Buddhism"}}, "entities": [{"URI": "http://dbpedia.org/resource/Philip_Novak", "surface form": "Philip Novak"}], "relations": [{"URI": "http://dbpedia.org/property/mainInterests", "surface form": "interest"}]}, {"id": "1678", "question": [{"language": "en", "string": "Tandem Computers is the subsidiary of which company?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/subsidiary> <http://dbpedia.org/resource/Tandem_Computers> } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Compaq"}}, "entities": [{"URI": "http://dbpedia.org/resource/Tandem_Computers", "surface form": "tandem Computers"}], "relations": [{"URI": "http://dbpedia.org/ontology/subsidiary", "surface form": "subsidiary"}, {"URI": "http://dbpedia.org/ontology/company", "surface form": "company"}]}, {"id": "1679", "question": [{"language": "en", "string": "What is the division of the companies who make Runes of Magic?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/products> <http://dbpedia.org/resource/Runes_of_Magic> . ?x <http://dbpedia.org/ontology/division> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Company>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Asia"}}, "entities": [{"URI": "http://dbpedia.org/resource/Runes_of_Magic", "surface form": "Runes of Magic"}], "relations": [{"URI": "http://dbpedia.org/ontology/division", "surface form": "division"}]}, {"id": "1680", "question": [{"language": "en", "string": "List the birthplace of the medicians who studied in Harvard."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/institution> <http://dbpedia.org/resource/Harvard_Medical_School> . ?x <http://dbpedia.org/ontology/birthPlace> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Medician>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Norwalk,_Connecticut"}}, "entities": [{"URI": "http://dbpedia.org/resource/Medicina", "surface form": "medicians"}, {"URI": "http://dbpedia.org/resource/Harvard_Girl", "surface form": "Harvard"}], "relations": [{"URI": "http://dbpedia.org/ontology/birthPlace", "surface form": "birthplace"}, {"URI": "http://dbpedia.org/ontology/office", "surface form": "studied"}]}, {"id": "1681", "question": [{"language": "en", "string": "What are the movies whose director of photography is Jordan Cronenweth?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/cinematography> <http://dbpedia.org/resource/Jordan_Cronenweth> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Best_Friends_(1982_film)"}}, "entities": [{"URI": "http://dbpedia.org/resource/Jordan_Cronenweth", "surface form": "Jordan Cronenweth"}], "relations": [{"URI": "http://dbpedia.org/ontology/film", "surface form": "movies"}, {"URI": "http://dbpedia.org/ontology/director", "surface form": "director"}, {"URI": "http://dbpedia.org/ontology/picture", "surface form": "photography"}]}, {"id": "1682", "question": [{"language": "en", "string": "Which river ends at Thames Estuary and North Sea?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/riverMouth> <http://dbpedia.org/resource/Thames_Estuary> . ?uri <http://dbpedia.org/ontology/riverMouth> <http://dbpedia.org/resource/North_Sea> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/River>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/River_Thames"}}, "entities": [{"URI": "http://dbpedia.org/resource/Thames_Estuary", "surface form": "Thames Estuary"}, {"URI": "http://dbpedia.org/resource/North_Sea", "surface form": "North Sea"}], "relations": [{"URI": "http://dbpedia.org/ontology/river", "surface form": "river"}, {"URI": "http://dbpedia.org/ontology/fate", "surface form": "ends"}]}, {"id": "1683", "question": [{"language": "en", "string": "How many companies are located in Toronto ?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE {?uri <http://dbpedia.org/ontology/locationCity> <http://dbpedia.org/resource/Toronto> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Company>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "107"}}, "entities": [{"URI": "http://dbpedia.org/resource/Companies_listed_on_the_New_York_Stock_Exchange_(J)", "surface form": "companies"}, {"URI": "http://dbpedia.org/resource/Toronto", "surface form": "Toronto"}], "relations": [{"URI": "http://dbpedia.org/ontology/locatedInArea", "surface form": "located"}]}, {"id": "1684", "question": [{"language": "en", "string": "What are the movies whose editor died in Westwood, Los Angeles?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/deathPlace> <http://dbpedia.org/resource/Westwood,_Los_Angeles> . ?uri <http://dbpedia.org/ontology/editing> ?x . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Devil_and_Daniel_Webster_(film)"}}, "entities": [{"URI": "http://dbpedia.org/resource/Westwood,_Los_Angeles", "surface form": "Westwood, Los Angeles"}], "relations": [{"URI": "http://dbpedia.org/ontology/deathPlace", "surface form": "died in"}, {"URI": "http://dbpedia.org/ontology/editing", "surface form": "editor"}]}, {"id": "1685", "question": [{"language": "en", "string": "Which are the comics characters painted by Bruce Timm and created by Paul Dini?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/creator> <http://dbpedia.org/resource/Bruce_Timm> . ?uri <http://dbpedia.org/property/creators> <http://dbpedia.org/resource/Paul_Dini> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/ComicsCharacter>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Andrea_Beaumont"}}, "entities": [{"URI": "http://dbpedia.org/resource/List_of_Archie_Comics_characters", "surface form": "comics characters"}, {"URI": "http://dbpedia.org/resource/Bruce_Timm", "surface form": "Bruce Timm"}, {"URI": "http://dbpedia.org/resource/Paul_Dini", "surface form": "Paul Dini"}], "relations": [{"URI": "http://dbpedia.org/ontology/creator", "surface form": "painted"}, {"URI": "http://dbpedia.org/ontology/creator", "surface form": "created"}]}, {"id": "1686", "question": [{"language": "en", "string": "Where did Jerry Tagge do his elementary schooling?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Jerry_Tagge> <http://dbpedia.org/property/highSchool> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Green_Bay_West_High_School"}}, "entities": [{"URI": "http://dbpedia.org/resource/Jerry_Tagge", "surface form": "Jerry Tagge"}], "relations": [{"URI": "http://dbpedia.org/property/highSchool", "surface form": "schooling"}]}, {"id": "1687", "question": [{"language": "en", "string": "Who worked at A Goon's Deed in a Weary World and CBS?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/occupation> <http://dbpedia.org/resource/A_Goon's_Deed_in_a_Weary_World> . ?uri <http://dbpedia.org/ontology/occupation> <http://dbpedia.org/resource/CBS> . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kenneth_Parcell__Kenneth_Parcell__1"}}, "entities": [{"URI": "http://dbpedia.org/resource/A_Goon's_Deed_in_a_Weary_World", "surface form": " Deed in a Weary World Deed in a Weary World"}], "relations": [{"URI": "http://dbpedia.org/ontology/operator", "surface form": "worked"}]}, {"id": "1688", "question": [{"language": "en", "string": "Wo which countries have the members of Ukrainian ministry of internal affairs swore their oath?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/branch> <http://dbpedia.org/resource/Ministry_of_Internal_Affairs_(Ukraine)> . ?x <http://dbpedia.org/property/allegiance> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ukraine"}}, "entities": [{"URI": "http://dbpedia.org/resource/Ministry_of_Internal_Affairs_(Ukraine)", "surface form": "ministry of internal affairs"}], "relations": [{"URI": "http://dbpedia.org/ontology/languageFamily", "surface form": "members"}, {"URI": "http://dbpedia.org/property/home", "surface form": "internal affairs"}, {"URI": "http://dbpedia.org/ontology/part", "surface form": "swore"}, {"URI": "http://dbpedia.org/ontology/channel", "surface form": "oath"}, {"URI": "http://dbpedia.org/ontology/country", "surface form": ""}]}, {"id": "1689", "question": [{"language": "en", "string": "In which movies directed by Orson Welles has Bernard Herrmann as music composer ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/musicComposer> <http://dbpedia.org/resource/Bernard_Herrmann> . ?uri <http://dbpedia.org/property/director> <http://dbpedia.org/resource/Orson_Welles> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Citizen_Kane"}}, "entities": [{"URI": "http://dbpedia.org/resource/Bernard_Herrmann", "surface form": "Bernard Herrmann"}, {"URI": "http://dbpedia.org/resource/Orson_Welles", "surface form": "Orson Welles"}], "relations": [{"URI": "http://dbpedia.org/ontology/film", "surface form": "movies"}, {"URI": "http://dbpedia.org/ontology/principal", "surface form": "directed"}, {"URI": "http://dbpedia.org/ontology/musicComposer", "surface form": "music composer"}]}, {"id": "1690", "question": [{"language": "en", "string": "Who is the builder of Presidio Santa Cruz de Terrenate ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Presidio_Santa_Cruz_de_Terrenate> <http://dbpedia.org/ontology/builder> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Spain"}}, "entities": [{"URI": "http://dbpedia.org/resource/Presidio_Santa_Cruz_de_Terrenate", "surface form": "Presidio Santa Cruz de Terrenate"}], "relations": [{"URI": "http://dbpedia.org/ontology/builder", "surface form": "builder"}]}, {"id": "1691", "question": [{"language": "en", "string": "List all the home stadium of the soccer clubs which has one of the home stadium as Nairobi ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/homeStadium> <http://dbpedia.org/resource/Nairobi> . ?x <http://dbpedia.org/property/homeStadium> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/SoccerClub>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kenya"}}, "entities": [{"URI": "http://dbpedia.org/resource/Nairobi", "surface form": "Nairobi"}], "relations": [{"URI": "http://dbpedia.org/ontology/ground", "surface form": "home stadium"}, {"URI": "http://dbpedia.org/property/clubs", "surface form": "soccer clubs"}, {"URI": "http://dbpedia.org/ontology/ground", "surface form": "home stadium"}]}, {"id": "1692", "question": [{"language": "en", "string": "In which areas is the radio station broadcasted which is a sister station of WXME ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/WXME> <http://dbpedia.org/property/sisterStations> ?x . ?x <http://dbpedia.org/property/area> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/RadioStation>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Asia"}}, "entities": [{"URI": "http://dbpedia.org/resource/WXME", "surface form": "WXME"}], "relations": [{"URI": "http://dbpedia.org/ontology/plant", "surface form": "radio station"}, {"URI": "http://dbpedia.org/ontology/state", "surface form": "broadcasted"}, {"URI": "http://dbpedia.org/ontology/sisterStation", "surface form": "sister station"}]}, {"id": "1693", "question": [{"language": "en", "string": "How many shows are aired on Comedy Central?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE {?uri <http://dbpedia.org/property/network> <http://dbpedia.org/resource/Comedy_Central> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "87"}}, "entities": [{"URI": "http://dbpedia.org/resource/Comedy_Central", "surface form": "Comedy Central"}], "relations": [{"URI": "http://dbpedia.org/ontology/place", "surface form": "shows"}, {"URI": "http://dbpedia.org/ontology/flag", "surface form": "aired"}]}, {"id": "1694", "question": [{"language": "en", "string": "Which awards have Ingmar Bergman won?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Ingmar_Bergman> <http://dbpedia.org/property/awards> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Goethe_Prize"}}, "entities": [{"URI": "http://dbpedia.org/resource/Ingmar_Bergman", "surface form": "Ingmar Bergman"}], "relations": [{"URI": "http://dbpedia.org/property/awards", "surface form": "awards"}]}, {"id": "1695", "question": [{"language": "en", "string": "What are the products of the company who published Robot Wars: Metal Mayhem ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Robot_Wars:_Metal_Mayhem> <http://dbpedia.org/ontology/publisher> ?x . ?x <http://dbpedia.org/ontology/product> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Company>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Wallace_and_Gromit"}}, "entities": [{"URI": "http://dbpedia.org/resource/Robot_Wars:_Metal_Mayhem", "surface form": "Robot Wars: Metal Mayhem"}], "relations": [{"URI": "http://dbpedia.org/property/products", "surface form": "products"}, {"URI": "http://dbpedia.org/ontology/company", "surface form": "company"}, {"URI": "http://dbpedia.org/ontology/publisher", "surface form": "published"}]}, {"id": "1696", "question": [{"language": "en", "string": "Name the licensee of the TV station whose one of the licensee is Incorporation ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/licensee> <http://dbpedia.org/resource/Incorporation_(business)> . ?x <http://dbpedia.org/property/licensee> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionStation>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mississippi"}}, "entities": [{"URI": "http://dbpedia.org/resource/Incorporation_(business)", "surface form": "Incorporation"}], "relations": [{"URI": "http://dbpedia.org/property/name", "surface form": "name"}, {"URI": "http://dbpedia.org/ontology/licensee", "surface form": "licensee"}, {"URI": "http://dbpedia.org/ontology/order", "surface form": "station"}, {"URI": "http://dbpedia.org/ontology/licensee", "surface form": "licensee"}]}, {"id": "1697", "question": [{"language": "en", "string": "What is the company of Ford Theatre ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Ford_Theatre> <http://dbpedia.org/property/company> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ford_Motor_Company"}}, "entities": [{"URI": "http://dbpedia.org/resource/Ford_Theatre", "surface form": "Ford Theatre"}], "relations": [{"URI": "http://dbpedia.org/ontology/company", "surface form": "company"}]}, {"id": "1698", "question": [{"language": "en", "string": "What are Monrow Carell Jr Children Hospital and Vanderbilt University Medical Center both affiliated with?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Monroe_Carell_Jr._Children's_Hospital_at_Vanderbilt> <http://dbpedia.org/property/affiliation> ?uri. <http://dbpedia.org/resource/Vanderbilt_University_Medical_Center> <http://dbpedia.org/property/affiliation> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vanderbilt_University"}}, "entities": [{"URI": "http://dbpedia.org/resource/Monroe_Carell_Jr._Children's_Hospital_at_Vanderbilt", "surface form": "vanderbilt hospital children"}, {"URI": "http://dbpedia.org/resource/Vanderbilt_University_Medical_Center", "surface form": "Vanderbilt University Medical Center"}], "relations": [{"URI": "http://dbpedia.org/property/affiliation", "surface form": "affiliated"}, {"URI": "http://dbpedia.org/property/affiliation", "surface form": "affiliated"}]}, {"id": "1699", "question": [{"language": "en", "string": "How many politicians are in the US Senate?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE {?uri <http://dbpedia.org/property/order> <http://dbpedia.org/resource/United_States_Senate> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/OfficeHolder>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "13"}}, "entities": [{"URI": "http://dbpedia.org/resource/United_States_Senate", "surface form": " US Senate"}], "relations": []}, {"id": "1700", "question": [{"language": "en", "string": "List all the major shrines of the saints which has one of the shrines as Debre Libanos ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/majorShrine> <http://dbpedia.org/resource/Debre_Libanos> . ?x <http://dbpedia.org/ontology/majorShrine> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Saint>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Debre_Libanos"}}, "entities": [{"URI": "http://dbpedia.org/resource/Debre_Libanos", "surface form": "Debre Libanos"}], "relations": [{"URI": "http://dbpedia.org/ontology/majorShrine", "surface form": "major shrines"}, {"URI": "http://dbpedia.org/ontology/saint", "surface form": "saints"}, {"URI": "http://dbpedia.org/ontology/majorShrine", "surface form": "shrines"}]}, {"id": "1701", "question": [{"language": "en", "string": "Name the fictional character whose relatives are Huey, Dewey, and Louie and belongs to Duck family ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/relatives> <http://dbpedia.org/resource/Huey,_Dewey,_and_Louie> . ?uri <http://dbpedia.org/ontology/relative> <http://dbpedia.org/resource/Duck_family_(Disney)> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/FictionalCharacter>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Donald_Duck"}}, "entities": [{"URI": "http://dbpedia.org/resource/Huey,_Dewey,_and_Louie", "surface form": "Huey, Dewey, and Louie"}, {"URI": "http://dbpedia.org/resource/Duck_family_(Disney)", "surface form": "Duck family"}], "relations": [{"URI": "http://dbpedia.org/property/name", "surface form": "name"}, {"URI": "http://dbpedia.org/ontology/party", "surface form": "fictional character"}, {"URI": "http://dbpedia.org/ontology/relative", "surface form": "relatives"}, {"URI": "http://dbpedia.org/property/date", "surface form": "belongs"}]}, {"id": "1702", "question": [{"language": "en", "string": "How many bands are signed up with labels which were founded in Japan?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/foundation> <http://dbpedia.org/resource/Japan> . ?uri <http://dbpedia.org/property/label> ?x . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Band>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "8"}}, "entities": [{"URI": "http://dbpedia.org/resource/Japan", "surface form": "Japan"}], "relations": [{"URI": "http://dbpedia.org/ontology/staff", "surface form": "bands"}, {"URI": "http://dbpedia.org/property/locationSigned", "surface form": "signed"}, {"URI": "http://dbpedia.org/property/label", "surface form": "labels"}, {"URI": "http://dbpedia.org/ontology/leader", "surface form": "founded"}]}, {"id": "1703", "question": [{"language": "en", "string": "How many kings and queens have died in the Arabian Peninsula?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE {?uri <http://dbpedia.org/ontology/deathPlace> <http://dbpedia.org/resource/Arabian_Peninsula> . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "43"}}, "entities": [{"URI": "http://dbpedia.org/resource/Arabian_Peninsula", "surface form": "Arabian Peninsula"}, {"URI": "http://dbpedia.org/resource/Arabian_Peninsula", "surface form": "Arabian Peninsula"}], "relations": [{"URI": "http://dbpedia.org/ontology/leader", "surface form": "kings"}, {"URI": "http://dbpedia.org/ontology/leader", "surface form": "queens"}, {"URI": "http://dbpedia.org/property/deathPlace", "surface form": "died"}, {"URI": "http://dbpedia.org/ontology/country", "surface form": ""}]}, {"id": "1704", "question": [{"language": "en", "string": "What is the bloomington viaduct built to cross?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Bloomington_Viaduct> <http://dbpedia.org/property/crosses> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/North_Branch_Potomac_River"}}, "entities": [{"URI": "http://dbpedia.org/resource/Bloomington_Viaduct", "surface form": "bloomington viaduct"}], "relations": [{"URI": "http://dbpedia.org/property/crosses", "surface form": "cross"}]}, {"id": "1705", "question": [{"language": "en", "string": "How many politicians reside in Cape Town?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE {?uri <http://dbpedia.org/property/residence> <http://dbpedia.org/resource/Cape_Town> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/OfficeHolder>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "1"}}, "entities": [{"URI": "http://dbpedia.org/resource/Politicians_of_The_Wire", "surface form": "politicians"}, {"URI": "http://dbpedia.org/resource/Cape_Town", "surface form": "Cape Town"}], "relations": [{"URI": "http://dbpedia.org/property/residence", "surface form": "reside"}]}, {"id": "1706", "question": [{"language": "en", "string": "How many games are released for virtual consoles?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE {?uri <http://dbpedia.org/ontology/computingPlatform> <http://dbpedia.org/resource/Virtual_Console> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/VideoGame>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "117"}}, "entities": [{"URI": "http://dbpedia.org/resource/Virtual_Console", "surface form": "virtual console"}], "relations": [{"URI": "http://dbpedia.org/ontology/computingPlatform", "surface form": "released"}, {"URI": "http://dbpedia.org/ontology/VideoGame", "surface form": "games"}]}, {"id": "1707", "question": [{"language": "en", "string": "In what movies did Akira Ifukube compose the music?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/music> <http://dbpedia.org/resource/Akira_Ifukube> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/An_Actress"}}, "entities": [{"URI": "http://dbpedia.org/resource/Akira_Ifukube", "surface form": "Akira Ifukube"}], "relations": [{"URI": "http://dbpedia.org/ontology/film", "surface form": "movies"}, {"URI": "http://dbpedia.org/ontology/musicComposer", "surface form": "compose"}, {"URI": "http://dbpedia.org/ontology/musicComposer", "surface form": "music"}]}, {"id": "1708", "question": [{"language": "en", "string": "Who is the operator of Rainbow Warrior (1955) ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Rainbow_Warrior_(1955)> <http://dbpedia.org/ontology/operator> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Greenpeace"}}, "entities": [{"URI": "http://dbpedia.org/resource/Rainbow_Warrior_(1955)", "surface form": "Rainbow Warrior (1955)"}], "relations": [{"URI": "http://dbpedia.org/ontology/operator", "surface form": "operator"}]}, {"id": "1709", "question": [{"language": "en", "string": "To which state eorge M. Chilcott belong ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/George_M._Chilcott> <http://dbpedia.org/property/state> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Colorado"}}, "entities": [{"URI": "http://dbpedia.org/resource/George_M._Chilcott", "surface form": "eorge M. Chilcott"}], "relations": [{"URI": "http://dbpedia.org/property/state", "surface form": "state"}]}, {"id": "1710", "question": [{"language": "en", "string": "What are some products of the company whose parent is BBC?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/parent> <http://dbpedia.org/resource/BBC> . ?x <http://dbpedia.org/property/products> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Company>}"}, "answers": {"uri": {"type": "literal", "xml:lang": "en", "value": "Motion pictures"}}, "entities": [{"URI": "http://dbpedia.org/resource/BBC", "surface form": "BBC"}], "relations": [{"URI": "http://dbpedia.org/ontology/author", "surface form": "products"}, {"URI": "http://dbpedia.org/ontology/company", "surface form": "company"}, {"URI": "http://dbpedia.org/ontology/parent", "surface form": "parent"}]}, {"id": "1711", "question": [{"language": "en", "string": "Which producer of the Eristoff is also the distributor of Bombay Sapphire?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Eristoff> <http://dbpedia.org/property/manufacturer> ?uri. <http://dbpedia.org/resource/Bombay_Sapphire> <http://dbpedia.org/property/distributor> ?uri} "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bacardi"}}, "entities": [{"URI": "http://dbpedia.org/resource/Eristoff", "surface form": "Eristoff"}, {"URI": "http://dbpedia.org/resource/Bombay_Sapphire", "surface form": "Bombay Sapphire"}], "relations": [{"URI": "http://dbpedia.org/ontology/producer", "surface form": "producer"}, {"URI": "http://dbpedia.org/ontology/distributor", "surface form": "distributor"}]}, {"id": "1712", "question": [{"language": "en", "string": "How many islands belong to archipelagos located in the pacific?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/location> <http://dbpedia.org/resource/Pacific_Ocean> . ?uri <http://dbpedia.org/property/archipelago> ?x . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Island>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "265"}}, "entities": [{"URI": "http://dbpedia.org/resource/Pacific_Ocean", "surface form": "pacific"}], "relations": [{"URI": "http://dbpedia.org/ontology/numberOfIslands", "surface form": "islands"}, {"URI": "http://dbpedia.org/ontology/person", "surface form": "belong"}, {"URI": "http://dbpedia.org/ontology/archipelago", "surface form": "archipelagos"}, {"URI": "http://dbpedia.org/ontology/locatedInArea", "surface form": "located"}]}, {"id": "1713", "question": [{"language": "en", "string": "How many units follow the US Navy Department's command structure?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE {?uri <http://dbpedia.org/ontology/commandStructure> <http://dbpedia.org/resource/United_States_Department_of_the_Navy> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/MilitaryUnit>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "12"}}, "entities": [{"URI": "http://dbpedia.org/resource/United_States_Department_of_the_Navy", "surface form": "US Navy Department"}], "relations": [{"URI": "http://dbpedia.org/ontology/commandStructure", "surface form": "command structure"}, {"URI": "http://dbpedia.org/ontology/MilitaryUnit", "surface form": "units"}]}, {"id": "1714", "question": [{"language": "en", "string": "Name the home Stadium of Kenya national under-20 football team ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Kenya_national_under-20_football_team> <http://dbpedia.org/property/homeStadium> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kenya"}}, "entities": [{"URI": "http://dbpedia.org/resource/Kenya_national_under-20_football_team", "surface form": "home Stadium of Kenya national under-20 football team"}], "relations": [{"URI": "http://dbpedia.org/property/homeStadium", "surface form": "home Stadium"}]}, {"id": "1715", "question": [{"language": "en", "string": "Which associat of Martin Pugh is also married to Alana Stewert ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Martin_Pugh> <http://dbpedia.org/property/associatedActs> ?uri. <http://dbpedia.org/resource/Alana_Stewart> <http://dbpedia.org/ontology/spouse> ?uri} "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rod_Stewart"}}, "entities": [{"URI": "http://dbpedia.org/resource/Martin_Pugh", "surface form": "Martin Pugh"}, {"URI": "http://dbpedia.org/resource/Alana_Stewart", "surface form": "Alana Stewert"}], "relations": [{"URI": "http://dbpedia.org/ontology/team", "surface form": "associat"}, {"URI": "http://dbpedia.org/property/spouse", "surface form": "married"}]}, {"id": "1716", "question": [{"language": "en", "string": "How many people played for Newell's Old Boys?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE {?uri <http://dbpedia.org/property/youthclubs> <http://dbpedia.org/resource/Newell's_Old_Boys> . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "170"}}, "entities": [{"URI": "http://dbpedia.org/resource/Newell", "surface form": "Newell"}, {"URI": "http://dbpedia.org/resource/Old_Boys", "surface form": " Old Boys"}], "relations": [{"URI": "http://dbpedia.org/ontology/coach", "surface form": "played"}]}, {"id": "1717", "question": [{"language": "en", "string": "Give me the count of artist in the company whose Artist is Jean- Fran\u00e7ois Cot\u00e9 ?"}], "query": {"sparql": " SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/artist> <http://dbpedia.org/resource/Jean-Fran\u00e7ois_Cot\u00e9> . ?x <http://dbpedia.org/property/artist> ?uri }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "22"}}, "entities": [{"URI": "http://dbpedia.org/resource/Jean-Fran\u00e7ois_Cot\u00e9", "surface form": "Jean - Fran\u00e7ois Cot\u00e9"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": "count"}, {"URI": "http://dbpedia.org/ontology/artist", "surface form": "artist"}, {"URI": "http://dbpedia.org/ontology/company", "surface form": "company"}]}, {"id": "1718", "question": [{"language": "en", "string": "How many bands have members currently playing the Fender Stratocaster?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/notableInstruments> <http://dbpedia.org/resource/Fender_Stratocaster> . ?uri <http://dbpedia.org/property/currentMembers> ?x . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Band>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/Fender_Stratocaster", "surface form": "Fender Stratocaster"}], "relations": [{"URI": "http://dbpedia.org/ontology/staff", "surface form": "bands"}, {"URI": "http://dbpedia.org/ontology/family", "surface form": "members"}, {"URI": "http://dbpedia.org/ontology/field", "surface form": "playing"}]}, {"id": "1719", "question": [{"language": "en", "string": "Titus software publishes which genre of games?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/publisher> <http://dbpedia.org/resource/Titus_Software> . ?x <http://dbpedia.org/ontology/genre> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/VideoGame>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Platform_game"}}, "entities": [{"URI": "http://dbpedia.org/resource/Titus_Software", "surface form": "titus software"}], "relations": [{"URI": "http://dbpedia.org/ontology/publisher", "surface form": "publishes"}, {"URI": "http://dbpedia.org/ontology/genre", "surface form": "genre"}, {"URI": "http://dbpedia.org/ontology/games", "surface form": "games"}]}, {"id": "1720", "question": [{"language": "en", "string": "Which military people served their allegiance to Union (American Civil War)?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/allegiance> <http://dbpedia.org/resource/Union_(American_Civil_War)> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/MilitaryPerson>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Allen_and_James_Thompson"}}, "entities": [{"URI": "http://dbpedia.org/resource/Union_(American_Civil_War)", "surface form": "Union (American Civil War)"}], "relations": [{"URI": "http://dbpedia.org/property/allegiance", "surface form": "allegiance"}, {"URI": "http://dbpedia.org/ontology/MilitaryPerson", "surface form": "military"}]}, {"id": "1721", "question": [{"language": "en", "string": "Mac OS is the operating system of how many things?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE {?uri <http://dbpedia.org/ontology/operatingSystem> <http://dbpedia.org/resource/Mac_OS> . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/Mac_OS", "surface form": "Mac OS"}], "relations": [{"URI": "http://dbpedia.org/ontology/operatingSystem", "surface form": "operating system"}]}, {"id": "1722", "question": [{"language": "en", "string": "What are the television shows whose Composer is Stewart Copeland?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/composer> <http://dbpedia.org/resource/Stewart_Copeland> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Evel_Knievel_(2004_film)"}}, "entities": [{"URI": "http://dbpedia.org/resource/Composer", "surface form": "Composer"}, {"URI": "http://dbpedia.org/resource/Stewart_Copeland", "surface form": "Stewart Copeland"}], "relations": [{"URI": "http://dbpedia.org/ontology/composer", "surface form": "composer"}]}, {"id": "1723", "question": [{"language": "en", "string": "What is the draft team of the Antoine Bibeau and also has player named Nathan Dempsey ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Antoine_Bibeau> <http://dbpedia.org/property/draftTeam> ?uri. <http://dbpedia.org/resource/Nathan_Dempsey> <http://dbpedia.org/property/playedFor> ?uri} "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Toronto_Maple_Leafs"}}, "entities": [{"URI": "http://dbpedia.org/resource/Antoine_Bibeau", "surface form": "Antoine Bibeau"}, {"URI": "http://dbpedia.org/resource/Nathan_Dempsey", "surface form": "Nathan Dempsey"}], "relations": [{"URI": "http://dbpedia.org/property/draftTeam", "surface form": "draft team"}, {"URI": "http://dbpedia.org/property/playedFor", "surface form": "team"}]}, {"id": "1724", "question": [{"language": "en", "string": "List the broadcast area of the TV stations which also serves in Agalga ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/broadcastArea> <http://dbpedia.org/resource/Agal\u00e9ga> . ?x <http://dbpedia.org/property/broadcastArea> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mauritius"}}, "entities": [{"URI": "http://dbpedia.org/resource/Tv_test_pattern", "surface form": "TV"}, {"URI": "http://dbpedia.org/resource/Galga", "surface form": "Agalga"}], "relations": [{"URI": "http://dbpedia.org/ontology/broadcastArea", "surface form": "broadcast area"}, {"URI": "http://dbpedia.org/ontology/order", "surface form": "stations"}, {"URI": "http://dbpedia.org/ontology/order", "surface form": "serves"}]}, {"id": "1725", "question": [{"language": "en", "string": "Into what military organizations is the United States Department of Defense divided?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/commandStructure> <http://dbpedia.org/resource/United_States_Department_of_Defense> } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Texas_Army_National_Guard"}}, "entities": [{"URI": "http://dbpedia.org/resource/United_States_Department_of_Defense", "surface form": "United States Department of Defense"}], "relations": [{"URI": "http://dbpedia.org/ontology/militaryBranch", "surface form": "military organizations"}, {"URI": "http://dbpedia.org/ontology/riverBranch", "surface form": "divided"}]}, {"id": "1726", "question": [{"language": "en", "string": "Whose deputy is Neil Brown?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/deputy> <http://dbpedia.org/resource/Neil_Brown_(Australian_politician)> . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/John_Howard"}}, "entities": [{"URI": "http://dbpedia.org/resource/Neil_Brown_(Australian_politician)", "surface form": "Neil Brown"}], "relations": [{"URI": "http://dbpedia.org/ontology/deputy", "surface form": "deputy"}]}, {"id": "1727", "question": [{"language": "en", "string": "which astronaut's mission was Apollo 11?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/mission> <http://dbpedia.org/resource/Apollo_11> } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Command_module_Columbia"}}, "entities": [{"URI": "http://dbpedia.org/resource/Apollo_11", "surface form": "Apollo 11"}], "relations": [{"URI": "http://dbpedia.org/ontology/countryWithFirstAstronaut", "surface form": "astronaut"}, {"URI": "http://dbpedia.org/ontology/mission", "surface form": " mission"}]}, {"id": "1728", "question": [{"language": "en", "string": "What is debut team of the baseball players who died in Los Angeles?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/deathPlace> <http://dbpedia.org/resource/Los_Angeles> . ?x <http://dbpedia.org/property/debutteam> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/BaseballPlayer>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Indianapolis_ABCs"}}, "entities": [{"URI": "http://dbpedia.org/resource/Major_League_Baseball_Players_Association", "surface form": "baseball players"}, {"URI": "http://dbpedia.org/resource/Los_Angeles", "surface form": "Los Angeles"}], "relations": [{"URI": "http://dbpedia.org/ontology/team", "surface form": "debut team"}, {"URI": "http://dbpedia.org/property/deathPlace", "surface form": "died"}]}, {"id": "1729", "question": [{"language": "en", "string": "List all the operators of the train who operates in Budapest ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/operator> <http://dbpedia.org/resource/Budapest> . ?x <http://dbpedia.org/ontology/operator> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Train>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Budapest"}}, "entities": [{"URI": "http://dbpedia.org/resource/Budapest", "surface form": "Budapest"}], "relations": [{"URI": "http://dbpedia.org/ontology/operator", "surface form": "operators"}, {"URI": "http://dbpedia.org/ontology/training", "surface form": "train"}, {"URI": "http://dbpedia.org/ontology/operator", "surface form": "operates"}]}, {"id": "1730", "question": [{"language": "en", "string": "What are the awards won by the producer of Puss in Boots (film)?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Puss_in_Boots_(1922_film)> <http://dbpedia.org/ontology/producer> ?x . ?x <http://dbpedia.org/ontology/award> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Emmy_Awards"}}, "entities": [{"URI": "http://dbpedia.org/resource/Puss_in_Boots_(1922_film)", "surface form": "Puss in Boots (film)"}], "relations": [{"URI": "http://dbpedia.org/ontology/budget", "surface form": "awards"}, {"URI": "http://dbpedia.org/ontology/award", "surface form": "won"}, {"URI": "http://dbpedia.org/ontology/producer", "surface form": "producer"}]}, {"id": "1731", "question": [{"language": "en", "string": "In which state is the alma matter of Jan Paulsen located ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Jan_Paulsen> <http://dbpedia.org/ontology/almaMater> ?x . ?x <http://dbpedia.org/property/state> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Michigan"}}, "entities": [{"URI": "http://dbpedia.org/resource/Jan_Paulsen", "surface form": "Jan Paulsen"}], "relations": [{"URI": "http://dbpedia.org/ontology/almaMater", "surface form": "located"}, {"URI": "http://dbpedia.org/property/state", "surface form": "state"}]}, {"id": "1732", "question": [{"language": "en", "string": "How many politicians are in the militia?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE {?uri <http://dbpedia.org/property/branch> <http://dbpedia.org/resource/Militia> . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "24"}}, "entities": [{"URI": "http://dbpedia.org/resource/Militia", "surface form": "militia"}], "relations": [{"URI": "http://dbpedia.org/ontology/garrison", "surface form": "militia"}]}, {"id": "1733", "question": [{"language": "en", "string": "In which wars were people from the Saudi Arabian ministry of defense involved?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/office> <http://dbpedia.org/resource/Minister_of_Defense_(Saudi_Arabia)> . ?x <http://dbpedia.org/property/battles> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Person>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gulf_War"}}, "entities": [{"URI": "http://dbpedia.org/resource/Minister_of_Defense_(Saudi_Arabia)", "surface form": "Saudi Arabian"}], "relations": [{"URI": "http://dbpedia.org/property/battles", "surface form": "wars"}, {"URI": "http://dbpedia.org/ontology/garrison", "surface form": "defense"}, {"URI": "http://dbpedia.org/ontology/result", "surface form": "involved"}, {"URI": "http://dbpedia.org/ontology/country", "surface form": ""}]}, {"id": "1734", "question": [{"language": "en", "string": "Who were the first drivers in Grand Prixes where the first team was Scuderia Ferrari?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/firstTeam> <http://dbpedia.org/resource/Scuderia_Ferrari> . ?x <http://dbpedia.org/ontology/firstDriver> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/GrandPrix>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tazio_Nuvolari"}}, "entities": [{"URI": "http://dbpedia.org/resource/Grand", "surface form": "Grand Prixes"}, {"URI": "http://dbpedia.org/resource/Scuderia_Ferrari", "surface form": "Scuderia Ferrari"}], "relations": [{"URI": "http://dbpedia.org/property/drivers", "surface form": "drivers"}, {"URI": "http://dbpedia.org/ontology/team", "surface form": "team"}]}, {"id": "1735", "question": [{"language": "en", "string": "How many things do bridges designed by the UEM group go over?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/designer> <http://dbpedia.org/resource/UEM_Group> . ?x <http://dbpedia.org/property/crosses> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "4"}}, "entities": [{"URI": "http://dbpedia.org/resource/UEM_Group", "surface form": "UEM group"}], "relations": [{"URI": "http://dbpedia.org/property/designer", "surface form": "designed"}, {"URI": "http://dbpedia.org/property/crosses", "surface form": "over"}]}, {"id": "1736", "question": [{"language": "en", "string": "Under which US president was a politician in opposition of John G Schmitz?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/opponent> <http://dbpedia.org/resource/John_G._Schmitz> . ?x <http://dbpedia.org/ontology/incumbent> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Politician>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Richard_Nixon"}}, "entities": [{"URI": "http://dbpedia.org/resource/United_States", "surface form": "US"}, {"URI": "http://dbpedia.org/resource/G", "surface form": "G"}, {"URI": "http://dbpedia.org/resource/John_G._Schmitz", "surface form": "John Schmitz"}], "relations": [{"URI": "http://dbpedia.org/ontology/president", "surface form": "president"}, {"URI": "http://dbpedia.org/ontology/party", "surface form": "politician"}, {"URI": "http://dbpedia.org/ontology/opponent", "surface form": "opposition"}]}, {"id": "1737", "question": [{"language": "en", "string": "Who has recorded their singles in London?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/recordedIn> <http://dbpedia.org/resource/London> . ?x <http://dbpedia.org/ontology/writer> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Single>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/David_Bowie"}}, "entities": [{"URI": "http://dbpedia.org/resource/London", "surface form": "London"}], "relations": [{"URI": "http://dbpedia.org/ontology/recordedIn", "surface form": "recorded"}, {"URI": "http://dbpedia.org/ontology/parent", "surface form": "singles"}]}, {"id": "1738", "question": [{"language": "en", "string": "Who are the associated musical artist of the artists of band Shorty Rogers?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/associatedBand> <http://dbpedia.org/resource/Shorty_Rogers> . ?x <http://dbpedia.org/ontology/associatedMusicalArtist> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Freddie_Hubbard"}}, "entities": [{"URI": "http://dbpedia.org/resource/The_Artist_(film)", "surface form": "associated musical artist"}, {"URI": "http://dbpedia.org/resource/Shorty_Rogers", "surface form": "band Shorty Rogers"}], "relations": [{"URI": "http://dbpedia.org/ontology/associatedBand", "surface form": "associated band"}, {"URI": "http://dbpedia.org/ontology/associatedMusicalArtist", "surface form": "associated musical artist"}]}, {"id": "1739", "question": [{"language": "en", "string": "Who were the american football players who played for Dallas Cowboys?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/team> <http://dbpedia.org/resource/Dallas_Cowboys> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/AmericanFootballPlayer>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alois_Blackwell"}}, "entities": [{"URI": "http://dbpedia.org/resource/Les_Joueurs_de_football", "surface form": "american football players"}, {"URI": "http://dbpedia.org/resource/Dallas_Cowboys", "surface form": "Dallas Cowboys"}], "relations": [{"URI": "http://dbpedia.org/ontology/team", "surface form": "played for"}, {"URI": "http://dbpedia.org/ontology/AmericanFootballPlayer", "surface form": "american football player"}]}, {"id": "1740", "question": [{"language": "en", "string": "What is the debut team of the baseball player who was born in Williamsburg, Kansas ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/birthPlace> <http://dbpedia.org/resource/Williamsburg,_Kansas> . ?x <http://dbpedia.org/property/debutteam> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/BaseballPlayer>}"}, "answers": {"uri": {"type": "literal", "xml:lang": "en", "value": "Brooklyn Dodgers"}}, "entities": [{"URI": "http://dbpedia.org/resource/Williamsburg,_Kansas", "surface form": "Williamsburg, Kansas"}], "relations": [{"URI": "http://dbpedia.org/ontology/debutTeam", "surface form": "debut team"}, {"URI": "http://dbpedia.org/ontology/combatant", "surface form": "baseball player"}, {"URI": "http://dbpedia.org/ontology/birthPlace", "surface form": "born"}]}, {"id": "1741", "question": [{"language": "en", "string": "Which appliance's CPU is Cell (microprocessor) and predecessor is PlayStation 2?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/cpu> <http://dbpedia.org/resource/Cell_(microprocessor)> . ?uri <http://dbpedia.org/ontology/predecessor> <http://dbpedia.org/resource/PlayStation_2> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/InformationAppliance>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/PlayStation_3"}}, "entities": [{"URI": "http://dbpedia.org/resource/Scorpion_(CPU)", "surface form": "CPU"}, {"URI": "http://dbpedia.org/resource/Cell_(microprocessor)", "surface form": "Cell (microprocessor)"}, {"URI": "http://dbpedia.org/resource/PlayStation_2", "surface form": "PlayStation 2"}], "relations": [{"URI": "http://dbpedia.org/property/engine", "surface form": "appliance"}, {"URI": "http://dbpedia.org/ontology/predecessor", "surface form": "predecessor"}]}, {"id": "1742", "question": [{"language": "en", "string": "People who debuted from Houston Astros have played in which clubs?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/debutTeam> <http://dbpedia.org/resource/Houston_Astros> . ?x <http://dbpedia.org/ontology/team> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Person>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Houston_Astros"}}, "entities": [{"URI": "http://dbpedia.org/resource/Houston_Astros", "surface form": "Houston Astros"}], "relations": [{"URI": "http://dbpedia.org/ontology/debutTeam", "surface form": "debuted"}, {"URI": "http://dbpedia.org/ontology/participant", "surface form": "played"}, {"URI": "http://dbpedia.org/ontology/college", "surface form": "clubs"}]}, {"id": "1743", "question": [{"language": "en", "string": "Radios on what topics can be tuned in to in Washington DC?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/broadcastArea> <http://dbpedia.org/resource/Washington,_D.C.> . ?x <http://dbpedia.org/ontology/programmeFormat> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/RadioStation>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Contemporary_worship_music"}}, "entities": [{"URI": "http://dbpedia.org/resource/Topics_in_Early_Childhood_Special_Education", "surface form": "topics"}, {"URI": "http://dbpedia.org/resource/Dc_(computer_program)", "surface form": "DC"}, {"URI": "http://dbpedia.org/resource/Washington", "surface form": "Washington"}], "relations": [{"URI": "http://dbpedia.org/ontology/capital", "surface form": "radios"}, {"URI": "http://dbpedia.org/ontology/number", "surface form": "tuned"}]}, {"id": "1744", "question": [{"language": "en", "string": "Give me some shows related to the ones created by Russell Davies"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/creator> <http://dbpedia.org/resource/Russell_T_Davies> . ?uri <http://dbpedia.org/ontology/related> ?x . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Sarah_Jane_Adventures"}}, "entities": [{"URI": "http://dbpedia.org/resource/Russell_T_Davies", "surface form": "Russell Davies"}], "relations": [{"URI": "http://dbpedia.org/ontology/place", "surface form": "shows"}, {"URI": "http://dbpedia.org/ontology/related", "surface form": "related"}, {"URI": "http://dbpedia.org/ontology/creator", "surface form": "created"}]}, {"id": "1745", "question": [{"language": "en", "string": "What is the territory of the conflict whose commander is Feng Zicai?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/commander> <http://dbpedia.org/resource/Feng_Zicai> . ?x <http://dbpedia.org/ontology/territory> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/MilitaryConflict>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Annam_(French_protectorate)"}}, "entities": [{"URI": "http://dbpedia.org/resource/Feng_Zicai", "surface form": "Feng Zicai"}], "relations": [{"URI": "http://dbpedia.org/ontology/territory", "surface form": "territory"}, {"URI": "http://dbpedia.org/ontology/battle", "surface form": "conflict"}, {"URI": "http://dbpedia.org/ontology/commander", "surface form": "commander"}]}, {"id": "1746", "question": [{"language": "en", "string": "Which club of Michael Springer is also the parent organization of Syracuse University press ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Michael_Springer> <http://dbpedia.org/property/team> ?uri. <http://dbpedia.org/resource/Syracuse_University_Press> <http://dbpedia.org/property/parent> ?uri} "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Syracuse_University"}}, "entities": [{"URI": "http://dbpedia.org/resource/Michael_Springer", "surface form": "Michael Springer"}, {"URI": "http://dbpedia.org/resource/Syracuse_University_Press", "surface form": "Syracuse University press"}], "relations": [{"URI": "http://dbpedia.org/ontology/club", "surface form": "club"}, {"URI": "http://dbpedia.org/property/parentOrganization", "surface form": "parent organization"}]}, {"id": "1747", "question": [{"language": "en", "string": "Which company created BASIC and Language Integrated Query ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Microsoft_BASIC> <http://dbpedia.org/ontology/designer> ?uri. <http://dbpedia.org/resource/Language_Integrated_Query> <http://dbpedia.org/ontology/designer> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Microsoft"}}, "entities": [{"URI": "http://dbpedia.org/resource/BASIC", "surface form": "BASIC"}, {"URI": "http://dbpedia.org/resource/Language_Integrated_Query", "surface form": "Language Integrated Query"}], "relations": [{"URI": "http://dbpedia.org/ontology/company", "surface form": "company"}, {"URI": "http://dbpedia.org/ontology/designer", "surface form": "created"}]}, {"id": "1748", "question": [{"language": "en", "string": "Whihc successor of McDonnell Douglas was built bu Delta 3 ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Delta_III> <http://dbpedia.org/ontology/manufacturer> ?uri. <http://dbpedia.org/resource/McDonnell_Douglas> <http://dbpedia.org/property/successor> ?uri} "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Boeing"}}, "entities": [{"URI": "http://dbpedia.org/resource/The_Successor_(film)", "surface form": "whihc successor"}, {"URI": "http://dbpedia.org/resource/McDonnell_Douglas", "surface form": "McDonnell Douglas"}, {"URI": "http://dbpedia.org/resource/Bharathiar_University", "surface form": "bu Delta 3"}], "relations": [{"URI": "http://dbpedia.org/ontology/numberBuilt", "surface form": "built"}]}, {"id": "1749", "question": [{"language": "en", "string": "What people are known to work for Johnny Cash?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/associatedActs> <http://dbpedia.org/resource/Johnny_Cash> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Person>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Area_Code_615_(band)"}}, "entities": [{"URI": "http://dbpedia.org/resource/Johnny_Cash", "surface form": "Johnny Cash"}], "relations": [{"URI": "http://dbpedia.org/ontology/service", "surface form": "work"}]}, {"id": "1750", "question": [{"language": "en", "string": "Where did some of the matches take place where Columbus Crew SC played?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/team> <http://dbpedia.org/resource/Columbus_Crew_SC> . ?x <http://dbpedia.org/ontology/location> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/FootballMatch>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dignity_Health_Sports_Park"}}, "entities": [{"URI": "http://dbpedia.org/resource/SC", "surface form": "SC"}, {"URI": "http://dbpedia.org/resource/Columbus_Crew_SC", "surface form": "Columbus Crew"}], "relations": [{"URI": "http://dbpedia.org/property/matches", "surface form": "matches"}, {"URI": "http://dbpedia.org/ontology/place", "surface form": "place"}, {"URI": "http://dbpedia.org/ontology/combatant", "surface form": "played"}]}, {"id": "1751", "question": [{"language": "en", "string": "How many awards have been given to Italians?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/birthPlace> <http://dbpedia.org/resource/Italy> . ?x <http://dbpedia.org/property/awards> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "344"}}, "entities": [{"URI": "http://dbpedia.org/resource/Italy", "surface form": "Itali"}], "relations": [{"URI": "http://dbpedia.org/ontology/award", "surface form": "awards"}]}, {"id": "1752", "question": [{"language": "en", "string": "Count the number of cities around the American Mediterranean Sea?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { <http://dbpedia.org/resource/American_Mediterranean_Sea> <http://dbpedia.org/property/cities> ?uri . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/City>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "16"}}, "entities": [{"URI": "http://dbpedia.org/resource/Organization_of_American_States", "surface form": "American Mediterranean Sea"}, {"URI": "http://dbpedia.org/resource/American_Mediterranean_Sea", "surface form": "American Mediterranean Sea"}], "relations": [{"URI": "http://dbpedia.org/ontology/type", "surface form": "count"}, {"URI": "http://dbpedia.org/property/cities", "surface form": "cities"}, {"URI": "http://dbpedia.org/ontology/country", "surface form": ""}]}, {"id": "1753", "question": [{"language": "en", "string": "List the first drivers of Grand Prixes where Mika Hakkinen was a pole driver."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/poleDriver> <http://dbpedia.org/resource/Mika_H\u00e4kkinen> . ?x <http://dbpedia.org/ontology/firstDriver> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/GrandPrix>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jacques_Villeneuve"}}, "entities": [{"URI": "http://dbpedia.org/resource/Juho_Hakkinen", "surface form": "Grand Prixes where Mika Hakkinen"}], "relations": [{"URI": "http://dbpedia.org/ontology/operator", "surface form": "drivers"}, {"URI": "http://dbpedia.org/ontology/poleDriver", "surface form": "pole driver"}]}, {"id": "1754", "question": [{"language": "en", "string": "How many movies have their music signed up with Sony Music Entertainment."}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/recordLabel> <http://dbpedia.org/resource/Sony_Music_Entertainment> . ?uri <http://dbpedia.org/ontology/musicComposer> ?x . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/Sony_Music_Entertainment", "surface form": "Sony Music Entertainment"}], "relations": [{"URI": "http://dbpedia.org/ontology/film", "surface form": "movies"}, {"URI": "http://dbpedia.org/ontology/musicSubgenre", "surface form": "music"}, {"URI": "http://dbpedia.org/ontology/movement", "surface form": "signed"}]}, {"id": "1755", "question": [{"language": "en", "string": "What are the television shows whose network is BBC HD?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/network> <http://dbpedia.org/resource/BBC_HD> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dancing_on_the_Edge_(TV_series)"}}, "entities": [{"URI": "http://dbpedia.org/resource/BBC_HD", "surface form": "BBC HD"}], "relations": [{"URI": "http://dbpedia.org/property/tv", "surface form": "television"}, {"URI": "http://dbpedia.org/ontology/place", "surface form": "shows"}, {"URI": "http://dbpedia.org/ontology/network", "surface form": "network"}]}, {"id": "1756", "question": [{"language": "en", "string": "What is the destinations of the airline whose headquarters is in Manchester?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/headquarters> <http://dbpedia.org/resource/Manchester> . ?x <http://dbpedia.org/property/destinations> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Airline>}"}, "answers": {"uri": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "82"}}, "entities": [{"URI": "http://dbpedia.org/resource/Destinations", "surface form": "destinations"}, {"URI": "http://dbpedia.org/resource/Manchester", "surface form": "Manchester"}], "relations": [{"URI": "http://dbpedia.org/ontology/icaoAirlineCode", "surface form": "airline"}, {"URI": "http://dbpedia.org/ontology/headquarter", "surface form": "headquarters"}]}, {"id": "1757", "question": [{"language": "en", "string": "Who gave the voice to the characters sculpted by Clamp?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/creator> <http://dbpedia.org/resource/Clamp_(manga_artists)> . ?x <http://dbpedia.org/ontology/voice> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/FictionalCharacter>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Monica_Rial"}}, "entities": [{"URI": "http://dbpedia.org/resource/Clamp_(manga_artists)", "surface form": "Clamp"}], "relations": [{"URI": "http://dbpedia.org/ontology/voice", "surface form": "voice"}, {"URI": "http://dbpedia.org/property/type", "surface form": "characters"}, {"URI": "http://dbpedia.org/property/sculptor", "surface form": "sculpted"}]}, {"id": "1758", "question": [{"language": "en", "string": "On what subject does WTJC-LP air?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/WTJC-LP> <http://dbpedia.org/property/format> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Religious_broadcasting"}}, "entities": [{"URI": "http://dbpedia.org/resource/WTJC-LP", "surface form": "WTJC-LP"}], "relations": [{"URI": "http://dbpedia.org/ontology/discipline", "surface form": "subject"}, {"URI": "http://dbpedia.org/ontology/voice", "surface form": "air"}]}, {"id": "1759", "question": [{"language": "en", "string": "Who produced the TV shows for Fremantle Media?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/company> <http://dbpedia.org/resource/FremantleMedia> . ?x <http://dbpedia.org/ontology/producer> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vietnam_Television"}}, "entities": [{"URI": "http://dbpedia.org/resource/FremantleMedia", "surface form": "Fremantle Media"}], "relations": [{"URI": "http://dbpedia.org/ontology/manufacturer", "surface form": "produced"}]}, {"id": "1760", "question": [{"language": "en", "string": "What is the home stadium of the soccer club seasons whose chairman is Merritt Paulson?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/chairman> <http://dbpedia.org/resource/Merritt_Paulson> . ?x <http://dbpedia.org/ontology/homeStadium> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/SoccerClubSeason>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/List_of_association_football_stadiums_by_capacity"}}, "entities": [{"URI": "http://dbpedia.org/resource/Mooroolbark_Soccer_Club", "surface form": "soccer club seasons"}, {"URI": "http://dbpedia.org/resource/Merritt_Paulson", "surface form": "Merritt Paulson"}], "relations": [{"URI": "http://dbpedia.org/property/ground", "surface form": "home stadium"}, {"URI": "http://dbpedia.org/ontology/chairman", "surface form": "chairman"}]}, {"id": "1761", "question": [{"language": "en", "string": "How many movies did Michael Deeley produce?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE {?uri <http://dbpedia.org/property/producer> <http://dbpedia.org/resource/Michael_Deeley> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "10"}}, "entities": [{"URI": "http://dbpedia.org/resource/Michael_Deeley", "surface form": "Michael Deeley"}], "relations": [{"URI": "http://dbpedia.org/property/producer", "surface form": "produce"}, {"URI": "http://dbpedia.org/ontology/Film", "surface form": "movie"}]}, {"id": "1762", "question": [{"language": "en", "string": "What awards have been given to the anyone who raced in the Lawrence Realization Stakes?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/race> <http://dbpedia.org/resource/Lawrence_Realization_Stakes> . ?x <http://dbpedia.org/ontology/honours> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/BC_Sports_Hall_of_Fame"}}, "entities": [{"URI": "http://dbpedia.org/resource/Lawrence_Realization_Stakes", "surface form": "Lawrence Realization Stakes"}], "relations": [{"URI": "http://dbpedia.org/property/race", "surface form": "race"}, {"URI": "http://dbpedia.org/ontology/honours", "surface form": "awards"}]}, {"id": "1763", "question": [{"language": "en", "string": "How many battles have involved commanders of 1st Free French Division?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { <http://dbpedia.org/resource/1st_Free_French_Division> <http://dbpedia.org/property/notableCommanders> ?x . ?x <http://dbpedia.org/property/battles> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "14"}}, "entities": [{"URI": "http://dbpedia.org/resource/1st_Free_French_Division", "surface form": "1st Free French Division"}], "relations": [{"URI": "http://dbpedia.org/property/notableCommanders", "surface form": "commanders"}, {"URI": "http://dbpedia.org/property/battles", "surface form": "battles"}]}, {"id": "1764", "question": [{"language": "en", "string": "How many areas are led by Willem Alexander?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE {?uri <http://dbpedia.org/ontology/leader> <http://dbpedia.org/resource/Willem-Alexander_of_the_Netherlands> . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "3"}}, "entities": [{"URI": "http://dbpedia.org/resource/Willem-Alexander_of_the_Netherlands", "surface form": "Willem Alexander"}], "relations": [{"URI": "http://dbpedia.org/ontology/leader", "surface form": "led"}]}, {"id": "1765", "question": [{"language": "en", "string": "Name the movie in which Vangelis gave the music and Jordan was the cinematographer ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/music> <http://dbpedia.org/resource/Vangelis> . ?uri <http://dbpedia.org/ontology/cinematography> <http://dbpedia.org/resource/Jordan_Cronenweth> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Blade_Runner"}}, "entities": [{"URI": "http://dbpedia.org/resource/Vangelis", "surface form": "Vangelis"}, {"URI": "http://dbpedia.org/resource/Jordan_Cronenweth", "surface form": "jordan"}], "relations": [{"URI": "http://dbpedia.org/property/name", "surface form": "name"}, {"URI": "http://dbpedia.org/ontology/picture", "surface form": "movie"}, {"URI": "http://dbpedia.org/property/music", "surface form": "music"}]}, {"id": "1766", "question": [{"language": "en", "string": "In how many places are the companies founded in Canada operating?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/foundationPlace> <http://dbpedia.org/resource/Canada> . ?x <http://dbpedia.org/property/locations> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/Companies_listed_on_the_New_York_Stock_Exchange_(J)", "surface form": "companies"}, {"URI": "http://dbpedia.org/resource/Canada", "surface form": "Canada"}], "relations": [{"URI": "http://dbpedia.org/property/height", "surface form": "places"}, {"URI": "http://dbpedia.org/ontology/leader", "surface form": "founded"}, {"URI": "http://dbpedia.org/ontology/cost", "surface form": "operating"}]}, {"id": "1767", "question": [{"language": "en", "string": "Count the number of movies whose editors were born in UK?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/birthPlace> <http://dbpedia.org/resource/United_Kingdom> . ?uri <http://dbpedia.org/property/editing> ?x . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "478"}}, "entities": [{"URI": "http://dbpedia.org/resource/United_Kingdom", "surface form": "UK"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": "count"}, {"URI": "http://dbpedia.org/ontology/film", "surface form": "movies"}, {"URI": "http://dbpedia.org/ontology/editor", "surface form": "editors"}, {"URI": "http://dbpedia.org/ontology/birthPlace", "surface form": "born"}]}, {"id": "1768", "question": [{"language": "en", "string": "What is the television show whose cast members are Jeff Conaway and Jason Carter?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/starring> <http://dbpedia.org/resource/Jeff_Conaway> . ?uri <http://dbpedia.org/ontology/starring> <http://dbpedia.org/resource/Jason_Carter_(actor)> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Babylon_5"}}, "entities": [{"URI": "http://dbpedia.org/resource/Jeff_Conaway", "surface form": "Jeff Conaway"}, {"URI": "http://dbpedia.org/resource/Jason_Carter_(actor)", "surface form": "Jason Carter"}], "relations": [{"URI": "http://dbpedia.org/ontology/transmission", "surface form": "television show"}, {"URI": "http://dbpedia.org/ontology/type", "surface form": "cast members"}]}, {"id": "1769", "question": [{"language": "en", "string": "What state has a Brideun School for Exception Children and is the birthplace of B J Crombeen?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Brideun_School_for_Exceptional_Children> <http://dbpedia.org/property/state> ?uri. <http://dbpedia.org/resource/B._J._Crombeen> <http://dbpedia.org/ontology/birthPlace> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Colorado"}}, "entities": [{"URI": "http://dbpedia.org/resource/Brideun_School_for_Exceptional_Children", "surface form": "Brideun School for Exception Children"}, {"URI": "http://dbpedia.org/resource/B", "surface form": "B"}, {"URI": "http://dbpedia.org/resource/B._J._Crombeen", "surface form": "J Crombeen"}, {"URI": "http://dbpedia.org/resource/J", "surface form": "J"}, {"URI": "http://dbpedia.org/resource/B._J._Crombeen", "surface form": "B Crombeen"}], "relations": [{"URI": "http://dbpedia.org/ontology/birthPlace", "surface form": "birthplace"}]}, {"id": "1770", "question": [{"language": "en", "string": "How many companies were founded in places where Dallas is the governing body ?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/governingBody> <http://dbpedia.org/resource/Dallas> . ?uri <http://dbpedia.org/ontology/foundationPlace> ?x . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Company>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/Companies_listed_on_the_New_York_Stock_Exchange_(J)", "surface form": "companies"}, {"URI": "http://dbpedia.org/resource/Dallas", "surface form": "Dallas"}], "relations": [{"URI": "http://dbpedia.org/ontology/foundingYear", "surface form": "founded"}, {"URI": "http://dbpedia.org/property/height", "surface form": "places"}, {"URI": "http://dbpedia.org/ontology/governingBody", "surface form": "governing"}, {"URI": "http://dbpedia.org/ontology/assembly", "surface form": "body"}]}, {"id": "1771", "question": [{"language": "en", "string": "What Orson Welles directed movie has photography director as Gregg Toland ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/cinematography> <http://dbpedia.org/resource/Gregg_Toland> . ?uri <http://dbpedia.org/property/director> <http://dbpedia.org/resource/Orson_Welles> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Citizen_Kane"}}, "entities": [{"URI": "http://dbpedia.org/resource/Orson_Welles", "surface form": "Orson Welles"}, {"URI": "http://dbpedia.org/resource/Gregg_Toland", "surface form": "Gregg Toland"}], "relations": [{"URI": "http://dbpedia.org/ontology/principal", "surface form": "directed"}, {"URI": "http://dbpedia.org/ontology/picture", "surface form": "movie"}, {"URI": "http://dbpedia.org/ontology/principal", "surface form": "photography director"}]}, {"id": "1772", "question": [{"language": "en", "string": "Who founded the city at the end of the Pittsburgh Line route?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Pittsburgh_Line> <http://dbpedia.org/ontology/routeEnd> ?x . ?x <http://dbpedia.org/ontology/founder> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/George_Washington"}}, "entities": [{"URI": "http://dbpedia.org/resource/Pittsburgh_Line", "surface form": "Pittsburgh Line"}], "relations": [{"URI": "http://dbpedia.org/ontology/founder", "surface form": "founded"}, {"URI": "http://dbpedia.org/ontology/city", "surface form": "city"}, {"URI": "http://dbpedia.org/property/end", "surface form": "end"}]}, {"id": "1773", "question": [{"language": "en", "string": "Name the hubs of the airlines whose headquarters is in the Subang Interchange?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/headquarters> <http://dbpedia.org/resource/Subang_Interchange> . ?x <http://dbpedia.org/property/hubs> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Airline>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Selangor"}}, "entities": [{"URI": "http://dbpedia.org/resource/Subang_Interchange", "surface form": "Subang Interchange"}], "relations": [{"URI": "http://dbpedia.org/ontology/name", "surface form": "name"}, {"URI": "http://dbpedia.org/ontology/hubAirport", "surface form": "hubs"}, {"URI": "http://dbpedia.org/ontology/icaoAirlineCode", "surface form": "airlines"}, {"URI": "http://dbpedia.org/property/headquarters", "surface form": "headquarters"}]}, {"id": "1774", "question": [{"language": "en", "string": "List the honorary title given to the spouse of Lillian Disney ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Lillian_Disney> <http://dbpedia.org/property/spouse> ?x . ?x <http://dbpedia.org/ontology/award> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Emmy_Awards"}}, "entities": [{"URI": "http://dbpedia.org/resource/Lillian_Disney", "surface form": "Lillian Disney"}], "relations": [{"URI": "http://dbpedia.org/property/spouse", "surface form": "spouse"}, {"URI": "http://dbpedia.org/ontology/award", "surface form": "honorary title"}]}, {"id": "1775", "question": [{"language": "en", "string": "How many games have a publisher based in US?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/location> <http://dbpedia.org/resource/United_States> . ?uri <http://dbpedia.org/ontology/publisher> ?x . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/VideoGame>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "539"}}, "entities": [{"URI": "http://dbpedia.org/resource/United_States", "surface form": "US"}], "relations": [{"URI": "http://dbpedia.org/ontology/games", "surface form": "games"}, {"URI": "http://dbpedia.org/ontology/publisher", "surface form": "publisher"}, {"URI": "http://dbpedia.org/ontology/origin", "surface form": "based"}]}, {"id": "1776", "question": [{"language": "en", "string": "How many people have played for the NBA?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE {?uri <http://dbpedia.org/property/league> <http://dbpedia.org/resource/National_Basketball_Association> . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "798"}}, "entities": [{"URI": "http://dbpedia.org/resource/National_Basketball_Association", "surface form": "NBA"}], "relations": [{"URI": "http://dbpedia.org/ontology/participant", "surface form": "played"}]}, {"id": "1777", "question": [{"language": "en", "string": "Name the musician who gave the music in Tonight's the night and is also wedded to Alana Stewart ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Tonight's_the_Night_(2003_musical)> <http://dbpedia.org/property/music> ?uri. <http://dbpedia.org/resource/Alana_Stewart> <http://dbpedia.org/ontology/spouse> ?uri} "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rod_Stewart"}}, "entities": [{"URI": "http://dbpedia.org/resource/Tonight's_the_Night_(2003_musical)", "surface form": "Tonight's the night"}, {"URI": "http://dbpedia.org/resource/Alana_Stewart", "surface form": "Alana Stewart"}], "relations": [{"URI": "http://dbpedia.org/property/music", "surface form": "music"}, {"URI": "http://dbpedia.org/ontology/spouse", "surface form": "wedded to"}]}, {"id": "1778", "question": [{"language": "en", "string": "What is the nationality of the golf player who won the 2002 Players Championship ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/2002_Players_Championship> <http://dbpedia.org/ontology/champion> ?x . ?x <http://dbpedia.org/ontology/nationality> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/GolfPlayer>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/New_Zealand"}}, "entities": [{"URI": "http://dbpedia.org/resource/2002_Players_Championship", "surface form": "2002 Players Championship"}], "relations": [{"URI": "http://dbpedia.org/ontology/nationality", "surface form": "nationality"}, {"URI": "http://dbpedia.org/ontology/participant", "surface form": "golf player"}, {"URI": "http://dbpedia.org/ontology/award", "surface form": "won"}]}, {"id": "1779", "question": [{"language": "en", "string": "Who penned Emma and Jane Austen in Manhatten?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Jane_Austen_in_Manhattan> <http://dbpedia.org/ontology/writer> ?uri. <http://dbpedia.org/resource/Emma_(novel)> <http://dbpedia.org/property/author> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jane_Austen"}}, "entities": [{"URI": "http://dbpedia.org/resource/Jane_Austen_in_Manhattan", "surface form": "Jane Austen in Manhatten"}, {"URI": "http://dbpedia.org/resource/Emma_(novel)", "surface form": "Emma"}], "relations": [{"URI": "http://dbpedia.org/ontology/colour", "surface form": "penned"}]}, {"id": "1780", "question": [{"language": "en", "string": "How many labels sign up progressive rock artists?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/genre> <http://dbpedia.org/resource/Progressive_rock> . ?x <http://dbpedia.org/ontology/recordLabel> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "2750"}}, "entities": [{"URI": "http://dbpedia.org/resource/Gypsy_(band)", "surface form": "progressive rock artists"}], "relations": [{"URI": "http://dbpedia.org/property/label", "surface form": "labels"}, {"URI": "http://dbpedia.org/ontology/precursor", "surface form": "sign"}]}, {"id": "1781", "question": [{"language": "en", "string": "Which continents can be reached by flight companies available on Gatwick Airport?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/targetAirport> <http://dbpedia.org/resource/Gatwick_Airport> . ?x <http://dbpedia.org/property/destinations> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Airline>}"}, "answers": {"uri": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "30"}}, "entities": [{"URI": "http://dbpedia.org/resource/Gatwick_Airport", "surface form": "Gatwick Airport"}], "relations": [{"URI": "http://dbpedia.org/ontology/band", "surface form": "continents"}, {"URI": "http://dbpedia.org/ontology/trainer", "surface form": "reached"}, {"URI": "http://dbpedia.org/ontology/lastFlight", "surface form": "flight companies"}]}, {"id": "1782", "question": [{"language": "en", "string": "Where the club of Kiki Cutter located?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Kiki_Cutter> <http://dbpedia.org/property/club> ?x . ?x <http://dbpedia.org/ontology/location> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Deschutes_County,_Oregon"}}, "entities": [{"URI": "http://dbpedia.org/resource/Kiki_Cutter", "surface form": "Kiki Cutter"}], "relations": [{"URI": "http://dbpedia.org/ontology/club", "surface form": "club"}, {"URI": "http://dbpedia.org/ontology/position", "surface form": "located"}]}, {"id": "1783", "question": [{"language": "en", "string": "List the awards won by the wife of Ingrid von Rosen."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Ingrid_von_Rosen> <http://dbpedia.org/property/spouse> ?x . ?x <http://dbpedia.org/property/awards> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Goethe_Prize"}}, "entities": [{"URI": "http://dbpedia.org/resource/Ingrid_von_Rosen", "surface form": "Ingrid von Rosen"}], "relations": [{"URI": "http://dbpedia.org/ontology/award", "surface form": "awards"}, {"URI": "http://dbpedia.org/ontology/parent", "surface form": "won"}, {"URI": "http://dbpedia.org/ontology/spouse", "surface form": "wife"}]}, {"id": "1784", "question": [{"language": "en", "string": "List the movie whose music was given by Geoffrey Burgon and distributed by Cinema International Corporation?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/musicComposer> <http://dbpedia.org/resource/Geoffrey_Burgon> . ?uri <http://dbpedia.org/ontology/distributor> <http://dbpedia.org/resource/Cinema_International_Corporation> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Monty_Python's_Life_of_Brian"}}, "entities": [{"URI": "http://dbpedia.org/resource/Geoffrey_Burgon", "surface form": "Geoffrey Burgon"}, {"URI": "http://dbpedia.org/resource/Cinema_International_Corporation", "surface form": "Cinema International Corporation"}], "relations": [{"URI": "http://dbpedia.org/ontology/picture", "surface form": "movie"}, {"URI": "http://dbpedia.org/ontology/musicComposer", "surface form": "music"}, {"URI": "http://dbpedia.org/ontology/distributor", "surface form": "distributed"}]}, {"id": "1785", "question": [{"language": "en", "string": "Which musical artists have collaborated with Waylon Jennings?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/associatedMusicalArtist> <http://dbpedia.org/resource/Waylon_Jennings> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/MusicalArtist>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/David_Allan_Coe"}}, "entities": [{"URI": "http://dbpedia.org/resource/Waylon_Jennings", "surface form": "Waylon Jennings"}], "relations": [{"URI": "http://dbpedia.org/ontology/associatedMusicalArtist", "surface form": "musical"}, {"URI": "http://dbpedia.org/ontology/MusicalArtist", "surface form": "musical artist"}]}, {"id": "1786", "question": [{"language": "en", "string": "Where did the people canonized by John Paul II die?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/canonizedBy> <http://dbpedia.org/resource/Pope_John_Paul_II> . ?x <http://dbpedia.org/property/deathPlace> ?uri . }"}, "answers": {"uri": {"type": "literal", "xml:lang": "en", "value": "Madrid, Spain"}}, "entities": [{"URI": "http://dbpedia.org/resource/Pope_John_Paul_II", "surface form": "John Paul II"}], "relations": [{"URI": "http://dbpedia.org/property/canonizedBy", "surface form": "canonized by"}, {"URI": "http://dbpedia.org/property/deathPlace", "surface form": "die"}]}, {"id": "1787", "question": [{"language": "en", "string": "Count the different genres of games published by Titus Software"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/publisher> <http://dbpedia.org/resource/Titus_Software> . ?x <http://dbpedia.org/ontology/genre> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "1"}}, "entities": [{"URI": "http://dbpedia.org/resource/Titus_Software", "surface form": "Titus Software"}], "relations": [{"URI": "http://dbpedia.org/property/publisher", "surface form": "published"}, {"URI": "http://dbpedia.org/ontology/genre", "surface form": "genre"}]}, {"id": "1788", "question": [{"language": "en", "string": "Who has produced movies that have a James Horner score?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/music> <http://dbpedia.org/resource/James_Horner> . ?x <http://dbpedia.org/property/producer> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Todd_Phillips"}}, "entities": [{"URI": "http://dbpedia.org/resource/James_Horner", "surface form": "James Horner score"}], "relations": [{"URI": "http://dbpedia.org/ontology/wineProduced", "surface form": "produced"}, {"URI": "http://dbpedia.org/ontology/film", "surface form": "movies"}]}, {"id": "1789", "question": [{"language": "en", "string": "Which shows are voiced be US citizens?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/stateOfOrigin> <http://dbpedia.org/resource/United_States> . ?uri <http://dbpedia.org/property/voices> ?x . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Care_Bears:_Welcome_to_Care-a-Lot"}}, "entities": [{"URI": "http://dbpedia.org/resource/United_States", "surface form": "US"}], "relations": [{"URI": "http://dbpedia.org/ontology/place", "surface form": "shows"}, {"URI": "http://dbpedia.org/ontology/state", "surface form": "voiced"}, {"URI": "http://dbpedia.org/property/country", "surface form": "citizens"}]}, {"id": "1790", "question": [{"language": "en", "string": "Count the different places where the people died, who were born in England?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/placeOfBirth> <http://dbpedia.org/resource/England> . ?x <http://dbpedia.org/property/placeOfDeath> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/Wulfstan_(died_1095)", "surface form": "died,"}, {"URI": "http://dbpedia.org/resource/England", "surface form": "England"}], "relations": [{"URI": "http://dbpedia.org/property/placeOfBirth", "surface form": "born"}, {"URI": "http://dbpedia.org/property/placeOfDeath", "surface form": "died"}]}, {"id": "1791", "question": [{"language": "en", "string": "What are some relatives of Battle of the Bulge veterans?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/battles> <http://dbpedia.org/resource/Battle_of_the_Bulge> . ?x <http://dbpedia.org/ontology/relation> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/MilitaryPerson>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/General_(United_States)"}}, "entities": [{"URI": "http://dbpedia.org/resource/Battle_of_the_Bulge_(film)", "surface form": "Battle of the Bulge veterans"}], "relations": [{"URI": "http://dbpedia.org/ontology/languageFamily", "surface form": "relatives"}]}, {"id": "1792", "question": [{"language": "en", "string": "Who made the Y block engine and the SHO V8 engine?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Ford_Y-block_engine> <http://dbpedia.org/ontology/manufacturer> ?uri. <http://dbpedia.org/resource/Ford_SHO_V8_engine> <http://dbpedia.org/ontology/manufacturer> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ford_Motor_Company"}}, "entities": [{"URI": "http://dbpedia.org/resource/Y", "surface form": "Y"}, {"URI": "http://dbpedia.org/resource/Sho", "surface form": "SHO"}, {"URI": "http://dbpedia.org/resource/V8_engine", "surface form": "V8 engine"}, {"URI": "http://dbpedia.org/resource/V8_(beverage)", "surface form": "V8"}, {"URI": "http://dbpedia.org/resource/Ford_SHO_V8_engine", "surface form": "SHO engine"}], "relations": [{"URI": "http://dbpedia.org/ontology/manufacturer", "surface form": "made"}, {"URI": "http://dbpedia.org/ontology/manufacturer", "surface form": "made"}]}, {"id": "1793", "question": [{"language": "en", "string": "How many different genres of games are produced by Blizzard?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/developer> <http://dbpedia.org/resource/Blizzard_Entertainment> . ?x <http://dbpedia.org/property/genre> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "62"}}, "entities": [{"URI": "http://dbpedia.org/resource/Blizzard_Entertainment", "surface form": "blizzard"}], "relations": [{"URI": "http://dbpedia.org/ontology/developer", "surface form": "produced"}, {"URI": "http://dbpedia.org/property/genre", "surface form": "genre"}]}, {"id": "1794", "question": [{"language": "en", "string": "How many things are located in Ridgewood, New Jersey?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE {?uri <http://dbpedia.org/property/birthPlace> <http://dbpedia.org/resource/Ridgewood,_New_Jersey> . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "20"}}, "entities": [{"URI": "http://dbpedia.org/resource/Ridgewood,_New_Jersey", "surface form": "Ridgewood, New Jersey"}], "relations": [{"URI": "http://dbpedia.org/ontology/locatedInArea", "surface form": "located"}]}, {"id": "1795", "question": [{"language": "en", "string": "What award was won by executive producer of Shaun the Sheep?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Shaun_the_Sheep> <http://dbpedia.org/ontology/executiveProducer> ?x . ?x <http://dbpedia.org/ontology/award> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Academy_Awards"}}, "entities": [{"URI": "http://dbpedia.org/resource/Shaun_the_Sheep", "surface form": "Shaun the Sheep"}], "relations": [{"URI": "http://dbpedia.org/ontology/award", "surface form": "award"}, {"URI": "http://dbpedia.org/ontology/award", "surface form": "won"}, {"URI": "http://dbpedia.org/ontology/executiveProducer", "surface form": "executive producer"}]}, {"id": "1796", "question": [{"language": "en", "string": "What is the operator of SR class 3Sub ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/SR_class_3Sub> <http://dbpedia.org/ontology/operator> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/London"}}, "entities": [{"URI": "http://dbpedia.org/resource/Sr", "surface form": "SR"}, {"URI": "http://dbpedia.org/resource/SR_class_3Sub", "surface form": "class 3Sub"}], "relations": [{"URI": "http://dbpedia.org/ontology/operator", "surface form": "operator"}]}, {"id": "1797", "question": [{"language": "en", "string": "How many times has Jeff Conaway been casted?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE {?uri <http://dbpedia.org/ontology/starring> <http://dbpedia.org/resource/Jeff_Conaway> . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "15"}}, "entities": [{"URI": "http://dbpedia.org/resource/Jeff_Conaway", "surface form": "Jeff Conaway"}], "relations": [{"URI": "http://dbpedia.org/ontology/starring", "surface form": "casted"}]}, {"id": "1798", "question": [{"language": "en", "string": "who are some miss michigan usa?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/title> <http://dbpedia.org/resource/Miss_Michigan_USA> . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Crystal_Hayes"}}, "entities": [{"URI": "http://dbpedia.org/resource/Miss_Michigan_USA", "surface form": "michigan usa"}], "relations": []}, {"id": "1799", "question": [{"language": "en", "string": "What is the regional radio sports network associated with?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Regional_Radio_Sports_Network> <http://dbpedia.org/property/affiliations> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Indiana_High_School_Athletic_Association"}}, "entities": [{"URI": "http://dbpedia.org/resource/Regional_Radio_Sports_Network", "surface form": "regional radio sports network"}], "relations": [{"URI": "http://dbpedia.org/ontology/associate", "surface form": "associated"}]}, {"id": "1800", "question": [{"language": "en", "string": "Which fictional character's portrayer was edited by Roger Barton?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/editing> <http://dbpedia.org/resource/Roger_Barton_(film_editor)> . ?uri <http://dbpedia.org/ontology/portrayer> ?x . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/FictionalCharacter>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Skynet_(Terminator)"}}, "entities": [{"URI": "http://dbpedia.org/resource/Roger_Barton_(film_editor)", "surface form": "Roger Barton"}], "relations": [{"URI": "http://dbpedia.org/ontology/party", "surface form": "fictional character"}, {"URI": "http://dbpedia.org/ontology/portrayer", "surface form": " portrayer"}, {"URI": "http://dbpedia.org/ontology/editor", "surface form": "edited"}]}, {"id": "1801", "question": [{"language": "en", "string": "What can be cooked out of things belonging to the order Sapindales?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/order> <http://dbpedia.org/resource/Sapindales> . ?uri <http://dbpedia.org/ontology/ingredient> ?x . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mechado"}}, "entities": [{"URI": "http://dbpedia.org/resource/Sapindales", "surface form": "Sapindales"}], "relations": [{"URI": "http://dbpedia.org/ontology/order", "surface form": "order"}, {"URI": "http://dbpedia.org/ontology/ingredient", "surface form": "things"}]}, {"id": "1802", "question": [{"language": "en", "string": "What is the birth place of the children of Miguel Garca Granados ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Miguel_Garc\u00eda_Granados> <http://dbpedia.org/property/children> ?x . ?x <http://dbpedia.org/ontology/birthPlace> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Guatemala"}}, "entities": [{"URI": "http://dbpedia.org/resource/Miguel_Garc\u00eda_Granados", "surface form": "Miguel Garca Granados"}], "relations": [{"URI": "http://dbpedia.org/property/children", "surface form": "children"}, {"URI": "http://dbpedia.org/ontology/birthPlace", "surface form": "birth place"}]}, {"id": "1803", "question": [{"language": "en", "string": "List the fields of Sylvain Lvi ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Sylvain_L\u00e9vi> <http://dbpedia.org/property/fields> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sanskrit_literature"}}, "entities": [{"URI": "http://dbpedia.org/resource/LVI", "surface form": "Sylvain Lvi"}], "relations": [{"URI": "http://dbpedia.org/ontology/stadium", "surface form": "fields"}]}, {"id": "1804", "question": [{"language": "en", "string": "List the primeministers of Victor Hope, 2nd Marquess of Linlithgow ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Victor_Hope,_2nd_Marquess_of_Linlithgow> <http://dbpedia.org/property/primeminister> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Neville_Chamberlain"}}, "entities": [{"URI": "http://dbpedia.org/resource/Priceminister", "surface form": "primeministers"}, {"URI": "http://dbpedia.org/resource/Victor_Hope,_2nd_Marquess_of_Linlithgow", "surface form": "Victor Hope, 2nd Marquess of Linlithgow"}], "relations": [{"URI": "http://dbpedia.org/property/primeminister", "surface form": "primeminister"}]}, {"id": "1805", "question": [{"language": "en", "string": "Where do the airlines garrisoned at Manchester airport fly to?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/headquarter> <http://dbpedia.org/resource/Manchester_Airport> . ?x <http://dbpedia.org/property/destinations> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Airline>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Europe"}}, "entities": [{"URI": "http://dbpedia.org/resource/Manchester_Airport", "surface form": "Manchester airport"}], "relations": [{"URI": "http://dbpedia.org/ontology/icaoAirlineCode", "surface form": "airlines"}, {"URI": "http://dbpedia.org/ontology/garrison", "surface form": "garrisoned"}, {"URI": "http://dbpedia.org/property/speed", "surface form": "fly"}]}, {"id": "1806", "question": [{"language": "en", "string": "What all is owned by a company one of whose division is Paramount Domestic Television?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/division> <http://dbpedia.org/resource/Paramount_Domestic_Television> . ?uri <http://dbpedia.org/property/company> ?x . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Almost_Perfect"}}, "entities": [{"URI": "http://dbpedia.org/resource/Paramount_Domestic_Television", "surface form": "Paramount Domestic Television"}], "relations": [{"URI": "http://dbpedia.org/property/owner", "surface form": "owned"}, {"URI": "http://dbpedia.org/ontology/company", "surface form": "company"}, {"URI": "http://dbpedia.org/ontology/division", "surface form": "division"}]}, {"id": "1807", "question": [{"language": "en", "string": "Name the language of I Love How You Love Me ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/I_Love_How_You_Love_Me> <http://dbpedia.org/property/language> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Slovakia"}}, "entities": [{"URI": "http://dbpedia.org/resource/I_Love_How_You_Love_Me", "surface form": "I Love How You Love Me"}], "relations": [{"URI": "http://dbpedia.org/property/name", "surface form": "name"}, {"URI": "http://dbpedia.org/ontology/language", "surface form": "language"}, {"URI": "http://dbpedia.org/ontology/person", "surface form": "Love"}, {"URI": "http://dbpedia.org/ontology/person", "surface form": "Love"}]}, {"id": "1808", "question": [{"language": "en", "string": "Count the number of places where alumini of Edinburgh university have died?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/education> <http://dbpedia.org/resource/University_of_Edinburgh> . ?x <http://dbpedia.org/ontology/deathPlace> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "136"}}, "entities": [{"URI": "http://dbpedia.org/resource/NK_Aluminij", "surface form": "alumini"}, {"URI": "http://dbpedia.org/resource/University_of_Edinburgh", "surface form": "Edinburgh university"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": "count"}, {"URI": "http://dbpedia.org/ontology/position", "surface form": "places"}, {"URI": "http://dbpedia.org/ontology/flag", "surface form": "died"}]}, {"id": "1809", "question": [{"language": "en", "string": "What is the venue of Indy PopCon ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Indy_PopCon> <http://dbpedia.org/property/venue> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Downtown"}}, "entities": [{"URI": "http://dbpedia.org/resource/Indy_PopCon", "surface form": "Indy PopCon"}], "relations": [{"URI": "http://dbpedia.org/property/venue", "surface form": "venue"}]}, {"id": "1810", "question": [{"language": "en", "string": "Who are the associate musical artists of Dalma Kovcs ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Dalma_Kov\u00e1cs> <http://dbpedia.org/ontology/associatedMusicalArtist> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Eurovision_Song_Contest"}}, "entities": [{"URI": "http://dbpedia.org/resource/Dalma_Kov\u00e1cs", "surface form": "Dalma Kovcs"}], "relations": [{"URI": "http://dbpedia.org/ontology/associatedMusicalArtist", "surface form": "associate musical"}]}, {"id": "1811", "question": [{"language": "en", "string": "How many movies have had a cinematographer who died in US?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/deathPlace> <http://dbpedia.org/resource/United_States> . ?uri <http://dbpedia.org/property/cinematography> ?x . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "1191"}}, "entities": [{"URI": "http://dbpedia.org/resource/Cinematographer", "surface form": "cinematographer"}, {"URI": "http://dbpedia.org/resource/United_States", "surface form": "US"}], "relations": [{"URI": "http://dbpedia.org/property/deathPlace", "surface form": "died"}, {"URI": "http://dbpedia.org/property/cinematography", "surface form": "cinematographer"}]}, {"id": "1812", "question": [{"language": "en", "string": "Which cities were in the TV Show which came after The Ultimate Fighter: Brazil 2?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/The_Ultimate_Fighter:_Brazil_2> <http://dbpedia.org/ontology/subsequentWork> ?x . ?x <http://dbpedia.org/property/city> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/S\u00e3o_Paulo"}}, "entities": [{"URI": "http://dbpedia.org/resource/Tv_test_pattern", "surface form": "TV"}, {"URI": "http://dbpedia.org/resource/Show", "surface form": "Show"}, {"URI": "http://dbpedia.org/resource/The_Ultimate_Fighter:_Brazil_2", "surface form": "The Ultimate Fighter: Brazil 2"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": "cities"}]}, {"id": "1813", "question": [{"language": "en", "string": "Who is the label of The Producers (2005 film) ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/The_Producers_(2005_film)> <http://dbpedia.org/property/label> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sony"}}, "entities": [{"URI": "http://dbpedia.org/resource/The_Producers_(2005_film)", "surface form": "The Producers (2005 film)"}], "relations": [{"URI": "http://dbpedia.org/property/label", "surface form": "label"}]}, {"id": "1814", "question": [{"language": "en", "string": "Count the number of different religions that field marshals have followed?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/militaryRank> <http://dbpedia.org/resource/Field_marshal> . ?x <http://dbpedia.org/ontology/religion> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [], "relations": [{"URI": "http://dbpedia.org/ontology/time", "surface form": "count"}, {"URI": "http://dbpedia.org/ontology/religion", "surface form": "religions"}, {"URI": "http://dbpedia.org/ontology/stadium", "surface form": "field marshals"}]}, {"id": "1815", "question": [{"language": "en", "string": "Count the awards given to the recepients of the Becket fund for religious liberty."}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/award> <http://dbpedia.org/resource/Becket_Fund_for_Religious_Liberty> . ?x <http://dbpedia.org/property/awards> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/Drug_testing_welfare_recipients", "surface form": "recepients"}, {"URI": "http://dbpedia.org/resource/Thomas_Becket", "surface form": "Becket fund"}], "relations": [{"URI": "http://dbpedia.org/ontology/type", "surface form": "count"}, {"URI": "http://dbpedia.org/ontology/endowment", "surface form": "awards"}, {"URI": "http://dbpedia.org/ontology/religion", "surface form": "religious liberty"}]}, {"id": "1816", "question": [{"language": "en", "string": "What cars were built upon the cars which were assembled in Canada?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/assembly> <http://dbpedia.org/resource/Canada> . ?x <http://dbpedia.org/ontology/predecessor> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Automobile>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/DeSoto_Series_S-10"}}, "entities": [{"URI": "http://dbpedia.org/resource/Canada", "surface form": "Canada"}], "relations": [{"URI": "http://dbpedia.org/ontology/management", "surface form": "cars"}, {"URI": "http://dbpedia.org/ontology/ground", "surface form": "built"}, {"URI": "http://dbpedia.org/ontology/management", "surface form": "cars"}, {"URI": "http://dbpedia.org/property/assembly", "surface form": "assembled"}]}, {"id": "1817", "question": [{"language": "en", "string": "How many religions are followed by the people in the Royal Thai Army?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/militaryBranch> <http://dbpedia.org/resource/Royal_Thai_Army> . ?x <http://dbpedia.org/ontology/religion> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/Royal_Thai_Army", "surface form": "Royal Thai Army"}], "relations": [{"URI": "http://dbpedia.org/ontology/religion", "surface form": "religions"}]}, {"id": "1818", "question": [{"language": "en", "string": "How many guests have been there on broadway?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { <http://dbpedia.org/resource/On_Broadway_(Smash)> <http://dbpedia.org/property/guests> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "5"}}, "entities": [{"URI": "http://dbpedia.org/resource/On_Broadway_(Smash)", "surface form": "on broadway"}], "relations": [{"URI": "http://dbpedia.org/property/guests", "surface form": "guests"}]}, {"id": "1819", "question": [{"language": "en", "string": "Count everything garrisoned at the pentagon?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE {?uri <http://dbpedia.org/property/garrison> <http://dbpedia.org/resource/The_Pentagon> . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "11"}}, "entities": [{"URI": "http://dbpedia.org/resource/The_Pentagon", "surface form": "the pentagon"}], "relations": [{"URI": "http://dbpedia.org/ontology/floorCount", "surface form": "count"}, {"URI": "http://dbpedia.org/ontology/garrison", "surface form": "garrisoned"}]}, {"id": "1820", "question": [{"language": "en", "string": "What is the city of the 2015 MLS All-Star Game and birthplace of the The Okee Dokee Brothers"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/2015_MLS_All-Star_Game> <http://dbpedia.org/property/city> ?uri. <http://dbpedia.org/resource/The_Okee_Dokee_Brothers> <http://dbpedia.org/ontology/birthPlace> ?uri} "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Colorado"}}, "entities": [{"URI": "http://dbpedia.org/resource/2015_MLS_All-Star_Game", "surface form": "2015 MLS All-Star Game"}, {"URI": "http://dbpedia.org/resource/The_Okee_Dokee_Brothers", "surface form": "The Okee Dokee Brothers"}], "relations": [{"URI": "http://dbpedia.org/property/city", "surface form": "city"}, {"URI": "http://dbpedia.org/ontology/birthPlace", "surface form": "birthplace"}]}, {"id": "1821", "question": [{"language": "en", "string": "How many people were opponents of the ones buried in the tower of London?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/restingPlace> <http://dbpedia.org/resource/Tower_of_London> . ?x <http://dbpedia.org/ontology/opponent> ?uri . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Person>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "7"}}, "entities": [{"URI": "http://dbpedia.org/resource/Tower_of_London", "surface form": "tower of London"}], "relations": [{"URI": "http://dbpedia.org/ontology/rival", "surface form": "opponents"}, {"URI": "http://dbpedia.org/ontology/genre", "surface form": "buried"}, {"URI": "http://dbpedia.org/property/column", "surface form": "tower"}]}, {"id": "1822", "question": [{"language": "en", "string": "Count all the places where companies located in Ontario operate."}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/locationCity> <http://dbpedia.org/resource/Ontario> . ?x <http://dbpedia.org/property/locations> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "3"}}, "entities": [{"URI": "http://dbpedia.org/resource/Companies_listed_on_the_New_York_Stock_Exchange_(J)", "surface form": "companies"}, {"URI": "http://dbpedia.org/resource/Ontario", "surface form": "Ontario"}], "relations": [{"URI": "http://dbpedia.org/ontology/type", "surface form": "count"}, {"URI": "http://dbpedia.org/ontology/district", "surface form": "places"}, {"URI": "http://dbpedia.org/ontology/place", "surface form": "located"}, {"URI": "http://dbpedia.org/property/work", "surface form": "operate"}]}, {"id": "1823", "question": [{"language": "en", "string": "How many factions have fought when Egushawa was a commander?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/commander> <http://dbpedia.org/resource/Egushawa> . ?x <http://dbpedia.org/property/combatant> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "32"}}, "entities": [{"URI": "http://dbpedia.org/resource/Egushawa", "surface form": "Egushawa"}], "relations": [{"URI": "http://dbpedia.org/ontology/movement", "surface form": "factions"}, {"URI": "http://dbpedia.org/ontology/type", "surface form": "fought"}, {"URI": "http://dbpedia.org/ontology/commander", "surface form": "commander"}]}, {"id": "1824", "question": [{"language": "en", "string": "What is the honorary title of the narrator of Everything Will Be OK?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Everything_Will_Be_OK> <http://dbpedia.org/ontology/narrator> ?x . ?x <http://dbpedia.org/ontology/award> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Academy_Awards"}}, "entities": [{"URI": "http://dbpedia.org/resource/Everything_Will_Be_OK", "surface form": "Everything Will Be OK"}], "relations": [{"URI": "http://dbpedia.org/ontology/leaderTitle", "surface form": "honorary title"}, {"URI": "http://dbpedia.org/ontology/narrator", "surface form": "narrator"}, {"URI": "http://dbpedia.org/ontology/elevation", "surface form": "Will"}]}, {"id": "1825", "question": [{"language": "en", "string": "What is the layout of the automobiles designed by Olivier Boulay?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/designer> <http://dbpedia.org/resource/Olivier_Boulay> . ?x <http://dbpedia.org/ontology/layout> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Automobile>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rear-wheel_drive"}}, "entities": [{"URI": "http://dbpedia.org/resource/Olivier_Boulay", "surface form": "Olivier Boulay"}], "relations": [{"URI": "http://dbpedia.org/ontology/layout", "surface form": "layout"}, {"URI": "http://dbpedia.org/ontology/vehicle", "surface form": "automobiles"}, {"URI": "http://dbpedia.org/ontology/designer", "surface form": "designed"}]}, {"id": "1826", "question": [{"language": "en", "string": "What people were born in Ridgewood, New Jersey?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/birthPlace> <http://dbpedia.org/resource/Ridgewood,_New_Jersey> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Person>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dave_Butler_(American_football)"}}, "entities": [{"URI": "http://dbpedia.org/resource/Ridgewood,_New_Jersey", "surface form": "Ridgewood, New Jersey"}], "relations": [{"URI": "http://dbpedia.org/ontology/birthPlace", "surface form": "born"}]}, {"id": "1827", "question": [{"language": "en", "string": "Which predecessor of the PlayStation 4 is also the developer of Oddworld: Munch's Oddysee?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/PlayStation_4> <http://dbpedia.org/property/predecessor> ?uri. <http://dbpedia.org/resource/Oddworld:_Munch's_Oddysee> <http://dbpedia.org/ontology/developer> ?uri} "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/PlayStation_3"}}, "entities": [{"URI": "http://dbpedia.org/resource/PlayStation_4", "surface form": "PlayStation 4"}, {"URI": "http://dbpedia.org/resource/Oddworld:_Stranger's_Wrath", "surface form": "Oddworld: Munch"}, {"URI": "http://dbpedia.org/resource/Oddworld:_Munch's_Oddysee", "surface form": " oddysee"}], "relations": [{"URI": "http://dbpedia.org/ontology/predecessor", "surface form": "predecessor"}, {"URI": "http://dbpedia.org/ontology/developer", "surface form": "developer"}]}, {"id": "1828", "question": [{"language": "en", "string": "List the websites which the authors of Tornado own ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Tornado_(web_server)> <http://dbpedia.org/property/author> ?x . ?x <http://dbpedia.org/ontology/owner> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Meta_Platforms"}}, "entities": [{"URI": "http://dbpedia.org/resource/Tornado_(web_server)", "surface form": "Tornado"}], "relations": [{"URI": "http://dbpedia.org/property/author", "surface form": "authors"}, {"URI": "http://dbpedia.org/ontology/owner", "surface form": "own"}]}, {"id": "1829", "question": [{"language": "en", "string": "What are the movies whose music composer is Akira Ifukube?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/musicComposer> <http://dbpedia.org/resource/Akira_Ifukube> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/An_Actress"}}, "entities": [{"URI": "http://dbpedia.org/resource/Akira_Ifukube", "surface form": "Akira Ifukube"}], "relations": [{"URI": "http://dbpedia.org/ontology/musicComposer", "surface form": "music composer"}, {"URI": "http://dbpedia.org/ontology/Film", "surface form": "movie"}]}, {"id": "1830", "question": [{"language": "en", "string": "Which military personnel belong to the branch of Continental Army?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/militaryBranch> <http://dbpedia.org/resource/Continental_Army> } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Andrew_McClary"}}, "entities": [{"URI": "http://dbpedia.org/resource/Continental_Army", "surface form": "Continental Army"}], "relations": [{"URI": "http://dbpedia.org/ontology/militaryBranch", "surface form": "military personnel"}, {"URI": "http://dbpedia.org/property/rank", "surface form": "belong"}, {"URI": "http://dbpedia.org/property/branch", "surface form": "branch"}]}, {"id": "1831", "question": [{"language": "en", "string": "Who have rented the stadium operated by Maple Leaf S&E?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/operator> <http://dbpedia.org/resource/Maple_Leaf_Sports_&_Entertainment> . ?x <http://dbpedia.org/ontology/tenant> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Stadium>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hamilton_Nationals"}}, "entities": [{"URI": "http://dbpedia.org/resource/Maple_Leaf_Sports_&_Entertainment", "surface form": "Maple Leaf S&E"}], "relations": [{"URI": "http://dbpedia.org/property/center", "surface form": "rented"}, {"URI": "http://dbpedia.org/ontology/stadium", "surface form": "stadium"}, {"URI": "http://dbpedia.org/ontology/staff", "surface form": "operated"}]}, {"id": "1832", "question": [{"language": "en", "string": "Solon Spencer Beman has architected in how many cities?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/architect> <http://dbpedia.org/resource/Solon_Spencer_Beman> . ?x <http://dbpedia.org/property/locationTown> ?uri . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/City>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "3"}}, "entities": [{"URI": "http://dbpedia.org/resource/Solon_Spencer_Beman", "surface form": "Solon spencer beman"}], "relations": [{"URI": "http://dbpedia.org/ontology/architect", "surface form": "architected"}, {"URI": "http://dbpedia.org/ontology/country", "surface form": "cities"}]}, {"id": "1833", "question": [{"language": "en", "string": "What are the main interests of Timothy Morton?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Timothy_Morton> <http://dbpedia.org/property/mainInterests> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Buddhism"}}, "entities": [{"URI": "http://dbpedia.org/resource/Timothy_Morton", "surface form": "Timothy Morton"}], "relations": [{"URI": "http://dbpedia.org/property/mainInterests", "surface form": "main interests"}]}, {"id": "1834", "question": [{"language": "en", "string": "Count all those who previously played for a team which ownes Varsity Stadium ?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/field> <http://dbpedia.org/resource/Varsity_Stadium> . ?uri <http://dbpedia.org/ontology/formerTeam> ?x . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "2"}}, "entities": [{"URI": "http://dbpedia.org/resource/Varsity_Stadium", "surface form": "Varsity Stadium"}], "relations": [{"URI": "http://dbpedia.org/ontology/type", "surface form": "count"}, {"URI": "http://dbpedia.org/ontology/combatant", "surface form": "played"}, {"URI": "http://dbpedia.org/ontology/team", "surface form": "team"}, {"URI": "http://dbpedia.org/ontology/owner", "surface form": "ownes"}]}, {"id": "1835", "question": [{"language": "en", "string": "Count the awards won by the people who graduated from the National and Kapodistrian University of Athens."}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/almaMater> <http://dbpedia.org/resource/National_and_Kapodistrian_University_of_Athens> . ?x <http://dbpedia.org/ontology/award> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "31"}}, "entities": [{"URI": "http://dbpedia.org/resource/National", "surface form": "National"}, {"URI": "http://dbpedia.org/resource/National_and_Kapodistrian_University_of_Athens", "surface form": "Kapodistrian University of Athens"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": "count"}, {"URI": "http://dbpedia.org/ontology/award", "surface form": "awards"}, {"URI": "http://dbpedia.org/ontology/city", "surface form": "won"}, {"URI": "http://dbpedia.org/ontology/effectiveRadiatedPower", "surface form": "graduated"}]}, {"id": "1836", "question": [{"language": "en", "string": "What are the movies with Daniel Waters as screenwriter?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/screenplay> <http://dbpedia.org/resource/Daniel_Waters_(screenwriter)> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vampire_Academy_(film)"}}, "entities": [{"URI": "http://dbpedia.org/resource/Daniel_Waters", "surface form": "Daniel Waters"}], "relations": [{"URI": "http://dbpedia.org/ontology/film", "surface form": "movies"}, {"URI": "http://dbpedia.org/ontology/author", "surface form": "screenwriter"}]}, {"id": "1837", "question": [{"language": "en", "string": "Which awards are presented by the committee located in Stockholm?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/headquarters> <http://dbpedia.org/resource/Stockholm> . ?uri <http://dbpedia.org/ontology/presenter> ?x . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rockbj\u00f6rnen"}}, "entities": [{"URI": "http://dbpedia.org/resource/Stockholm", "surface form": "Stockholm"}], "relations": [{"URI": "http://dbpedia.org/ontology/award", "surface form": "awards"}, {"URI": "http://dbpedia.org/ontology/committee", "surface form": "committee"}, {"URI": "http://dbpedia.org/ontology/place", "surface form": "located"}]}, {"id": "1838", "question": [{"language": "en", "string": "Count the area of the radio stations whose serves in South Carolina ?"}], "query": {"sparql": " SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/area> <http://dbpedia.org/resource/South_Carolina> . ?x <http://dbpedia.org/property/area> ?uri }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "38"}}, "entities": [{"URI": "http://dbpedia.org/resource/South_Carolina", "surface form": "South Carolina"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": "count"}, {"URI": "http://dbpedia.org/ontology/areaLand", "surface form": "area"}, {"URI": "http://dbpedia.org/ontology/numberOfStations", "surface form": "radio stations"}, {"URI": "http://dbpedia.org/ontology/order", "surface form": "serves"}]}, {"id": "1839", "question": [{"language": "en", "string": "How many games are played at universities affiliated with the Association of Southeast Asian Institutions of Higher Learning?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/affiliation> <http://dbpedia.org/resource/Association_of_Southeast_Asian_Institutions_of_Higher_Learning> . ?x <http://dbpedia.org/ontology/sport> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/Universities_Ireland", "surface form": "universities"}, {"URI": "http://dbpedia.org/resource/Association_of_Southeast_Asian_Institutions_of_Higher_Learning", "surface form": "Association of Southeast Asian Institutions of Higher Learning"}], "relations": [{"URI": "http://dbpedia.org/ontology/games", "surface form": "games"}, {"URI": "http://dbpedia.org/ontology/portrayer", "surface form": "played"}, {"URI": "http://dbpedia.org/ontology/related", "surface form": "affiliated"}]}, {"id": "1840", "question": [{"language": "en", "string": "Who studied in universities located in suburbs?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/campus> <http://dbpedia.org/resource/Suburb> . ?uri <http://dbpedia.org/property/education> ?x . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/2017_Fresno_shootings"}}, "entities": [{"URI": "http://dbpedia.org/resource/Universities_Ireland", "surface form": "universities"}, {"URI": "http://dbpedia.org/resource/Suburbs_(The_Suburbs_album)", "surface form": "suburbs"}], "relations": [{"URI": "http://dbpedia.org/ontology/course", "surface form": "studied"}, {"URI": "http://dbpedia.org/ontology/position", "surface form": "located"}]}, {"id": "1841", "question": [{"language": "en", "string": "List down the cinematographers of Mickey's Mellerdrammer?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Mickey's_Mellerdrammer> <http://dbpedia.org/property/cinematography> ?uri } "}, "answers": {"uri": {"type": "literal", "xml:lang": "en", "value": "Walt Disney"}}, "entities": [{"URI": "http://dbpedia.org/resource/Indian_cinematographers", "surface form": "cinematographers"}, {"URI": "http://dbpedia.org/resource/Mickey", "surface form": "Mickey"}, {"URI": "http://dbpedia.org/resource/Mickey's_Mellerdrammer", "surface form": " mellerdrammer"}], "relations": [{"URI": "http://dbpedia.org/property/cinematography", "surface form": "cinematographer"}]}, {"id": "1842", "question": [{"language": "en", "string": "Who are the judges of the television show whose anchor is Josh Groban?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/presenter> <http://dbpedia.org/resource/Josh_Groban> . ?x <http://dbpedia.org/property/judges> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Brad_Paisley"}}, "entities": [{"URI": "http://dbpedia.org/resource/Josh_Groban", "surface form": "Josh Groban"}], "relations": [{"URI": "http://dbpedia.org/ontology/budget", "surface form": "judges"}, {"URI": "http://dbpedia.org/ontology/transmission", "surface form": "television show"}, {"URI": "http://dbpedia.org/ontology/artist", "surface form": "anchor"}]}, {"id": "1843", "question": [{"language": "en", "string": "What all are written in the C programming language?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/programmingLanguage> <http://dbpedia.org/resource/C_(programming_language)> } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/AllJoyn"}}, "entities": [{"URI": "http://dbpedia.org/resource/C_(programming_language)", "surface form": "C programming language"}], "relations": [{"URI": "http://dbpedia.org/property/writtenIn", "surface form": "written"}, {"URI": "http://dbpedia.org/property/programmingLanguage", "surface form": "programming language"}]}, {"id": "1844", "question": [{"language": "en", "string": "Count the number of artists in the Cirque du Soleil discography?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { <http://dbpedia.org/resource/Cirque_du_Soleil_discography> <http://dbpedia.org/property/artist> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "22"}}, "entities": [{"URI": "http://dbpedia.org/resource/Cirque_du_Soleil_discography", "surface form": "Cirque du Soleil discography"}], "relations": [{"URI": "http://dbpedia.org/ontology/type", "surface form": "count"}, {"URI": "http://dbpedia.org/property/artist", "surface form": "artists"}]}, {"id": "1845", "question": [{"language": "en", "string": "What are the movies whose director is Orson Welles?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/director> <http://dbpedia.org/resource/Orson_Welles> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Filming_Othello"}}, "entities": [{"URI": "http://dbpedia.org/resource/Orson_Welles", "surface form": "Orson Welles"}], "relations": [{"URI": "http://dbpedia.org/property/director", "surface form": "director"}, {"URI": "http://dbpedia.org/ontology/Film", "surface form": "movie"}]}, {"id": "1846", "question": [{"language": "en", "string": "What is the religion of character of Janice Soprano from The Soprano television show?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Janice_Soprano> <http://dbpedia.org/ontology/religion> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Evangelism"}}, "entities": [{"URI": "http://dbpedia.org/resource/Janice_Soprano", "surface form": "Janice Soprano from The Soprano television show"}], "relations": [{"URI": "http://dbpedia.org/ontology/religion", "surface form": "religion"}, {"URI": "http://dbpedia.org/ontology/description", "surface form": "character"}]}, {"id": "1847", "question": [{"language": "en", "string": "which planet was discovered by Urbain Le Verrier?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/discoverer> <http://dbpedia.org/resource/Urbain_Le_Verrier> } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Neptune"}}, "entities": [{"URI": "http://dbpedia.org/resource/Urbain_Le_Verrier", "surface form": "Urbain Le Verrier"}], "relations": [{"URI": "http://dbpedia.org/ontology/discoverer", "surface form": "discovered by"}]}, {"id": "1848", "question": [{"language": "en", "string": "?What are the airline hubs of Cascade Airways"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Cascade_Airways> <http://dbpedia.org/property/hubs> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Washington_(state)"}}, "entities": [{"URI": "http://dbpedia.org/resource/What", "surface form": "What"}, {"URI": "http://dbpedia.org/resource/Cascade_Airways", "surface form": "Cascade Airways"}], "relations": [{"URI": "http://dbpedia.org/property/hubs", "surface form": "hubs"}]}, {"id": "1849", "question": [{"language": "en", "string": "What sport is Eric Schiller known for, and employes Craig Van Tibury?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Eric_Schiller> <http://dbpedia.org/ontology/knownFor> ?uri. <http://dbpedia.org/resource/Craig_Van_Tilbury> <http://dbpedia.org/ontology/occupation> ?uri} "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chess"}}, "entities": [{"URI": "http://dbpedia.org/resource/Eric_Schiller", "surface form": "Eric Schiller"}, {"URI": "http://dbpedia.org/resource/Craig_Van_Tilbury", "surface form": "Craig Van Tibury"}], "relations": [{"URI": "http://dbpedia.org/ontology/knownFor", "surface form": "known for"}, {"URI": "http://dbpedia.org/ontology/occupation", "surface form": "employs"}]}, {"id": "1850", "question": [{"language": "en", "string": "How many rivers are crossed by different Box Girder bridges?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/design> <http://dbpedia.org/resource/Box_girder_bridge> . ?x <http://dbpedia.org/property/crosses> ?uri . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/River>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "85"}}, "entities": [{"URI": "http://dbpedia.org/resource/Box_girder_bridge", "surface form": "Box Girder bridge"}], "relations": [{"URI": "http://dbpedia.org/ontology/river", "surface form": "rivers"}, {"URI": "http://dbpedia.org/ontology/crosses", "surface form": "crossed"}]}, {"id": "1851", "question": [{"language": "en", "string": "Count the number of members of the organization which have Austria as one of the member ?"}], "query": {"sparql": " SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/membership> <http://dbpedia.org/resource/Austria> . ?x <http://dbpedia.org/property/membership> ?uri }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "60"}}, "entities": [{"URI": "http://dbpedia.org/resource/Austria", "surface form": "Austria"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": "count"}, {"URI": "http://dbpedia.org/ontology/family", "surface form": "members"}, {"URI": "http://dbpedia.org/property/house", "surface form": "organization"}, {"URI": "http://dbpedia.org/ontology/membership", "surface form": "member"}]}, {"id": "1852", "question": [{"language": "en", "string": "List the other members of the team where Jason Hayne currently plays?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/currentMember> <http://dbpedia.org/resource/Jason_Hayne> . ?x <http://dbpedia.org/property/name> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/OrganisationMember>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alvin_Mendoza"}}, "entities": [{"URI": "http://dbpedia.org/resource/Jason_Hayne", "surface form": "Jason Hayne"}], "relations": [{"URI": "http://dbpedia.org/ontology/part", "surface form": "members"}, {"URI": "http://dbpedia.org/ontology/team", "surface form": "team"}, {"URI": "http://dbpedia.org/ontology/plays", "surface form": "plays"}]}, {"id": "1853", "question": [{"language": "en", "string": "list the producer of the movies in which Rosemarie DeWitt in the star cast?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/starring> <http://dbpedia.org/resource/Rosemarie_DeWitt> . ?x <http://dbpedia.org/property/producer> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}"}, "answers": {"uri": {"type": "literal", "xml:lang": "en", "value": ""}}, "entities": [{"URI": "http://dbpedia.org/resource/Rosemarie_DeWitt", "surface form": "Rosemarie DeWitt"}], "relations": [{"URI": "http://dbpedia.org/ontology/producer", "surface form": "producer"}, {"URI": "http://dbpedia.org/ontology/film", "surface form": "movies"}, {"URI": "http://dbpedia.org/property/name", "surface form": "star cast"}]}, {"id": "1854", "question": [{"language": "en", "string": "How many groups have fought in wars where Richard Taylor fought too?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { <http://dbpedia.org/resource/Richard_Taylor_(colonel)> <http://dbpedia.org/property/battles> ?x . ?x <http://dbpedia.org/property/combatant> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/MilitaryConflict>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/Richard_Taylor_(colonel)", "surface form": " Richard Taylor"}], "relations": [{"URI": "http://dbpedia.org/ontology/type", "surface form": "fought"}, {"URI": "http://dbpedia.org/property/battles", "surface form": "wars"}, {"URI": "http://dbpedia.org/ontology/type", "surface form": "fought"}]}, {"id": "1855", "question": [{"language": "en", "string": "To which settlement does Elliot Bay belong to?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Elliott_Bay> <http://dbpedia.org/property/cities> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Seattle"}}, "entities": [{"URI": "http://dbpedia.org/resource/Elliot", "surface form": "Elliot Bay"}], "relations": [{"URI": "http://dbpedia.org/ontology/award", "surface form": "settlement"}, {"URI": "http://dbpedia.org/property/rank", "surface form": "belong"}]}, {"id": "1856", "question": [{"language": "en", "string": "What are the albums whose artists have performed with the Tangerine Dream?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/associatedBand> <http://dbpedia.org/resource/Tangerine_Dream> . ?uri <http://dbpedia.org/property/artist> ?x . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Album>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Das_Wagner_Desaster_Live"}}, "entities": [{"URI": "http://dbpedia.org/resource/Tangerine_Dream", "surface form": "Tangerine Dream"}], "relations": [{"URI": "http://dbpedia.org/ontology/album", "surface form": "albums"}, {"URI": "http://dbpedia.org/property/artist", "surface form": "artists"}, {"URI": "http://dbpedia.org/ontology/artist", "surface form": "performed"}]}, {"id": "1857", "question": [{"language": "en", "string": "Name the river on Batoka Gorge Hydroelectric Power Station ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Batoka_Gorge_Hydroelectric_Power_Station> <http://dbpedia.org/ontology/river> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Zambezi"}}, "entities": [{"URI": "http://dbpedia.org/resource/Batoka_Gorge_Hydroelectric_Power_Station", "surface form": "Batoka Gorge Hydroelectric Power Station"}], "relations": [{"URI": "http://dbpedia.org/property/name", "surface form": "name"}, {"URI": "http://dbpedia.org/ontology/river", "surface form": "river"}]}, {"id": "1858", "question": [{"language": "en", "string": "What university campuses are situated in Indiana?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/campus> <http://dbpedia.org/resource/Indiana> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/University>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Chef's_Academy"}}, "entities": [{"URI": "http://dbpedia.org/resource/Indiana", "surface form": "Indiana"}], "relations": [{"URI": "http://dbpedia.org/ontology/campus", "surface form": "campuses"}, {"URI": "http://dbpedia.org/ontology/University", "surface form": "university"}]}, {"id": "1859", "question": [{"language": "en", "string": "Who is the authority of Maine School of Science and Mathematics ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Maine_School_of_Science_and_Mathematics> <http://dbpedia.org/ontology/authority> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Maine"}}, "entities": [{"URI": "http://dbpedia.org/resource/Maine_School_of_Science_and_Mathematics", "surface form": "Maine School of Science Maine School of Science"}], "relations": [{"URI": "http://dbpedia.org/ontology/authority", "surface form": "authority"}]}, {"id": "1860", "question": [{"language": "en", "string": "List some writers which speak one of the Germanic languages."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/languageFamily> <http://dbpedia.org/resource/Germanic_languages> . ?uri <http://dbpedia.org/property/language> ?x . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Writer>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Frances_Sherwood"}}, "entities": [{"URI": "http://dbpedia.org/resource/Germanic_languages", "surface form": "Germanic languages"}], "relations": [{"URI": "http://dbpedia.org/ontology/writer", "surface form": "writers"}, {"URI": "http://dbpedia.org/ontology/language", "surface form": "speak"}]}, {"id": "1861", "question": [{"language": "en", "string": "What are some awards given to people who were born in sweden?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/birthPlace> <http://dbpedia.org/resource/Sweden> . ?x <http://dbpedia.org/property/awards> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Person>}"}, "answers": {"uri": {"type": "literal", "xml:lang": "en", "value": "Bj\u00f6rk\u00e9nska priset"}}, "entities": [{"URI": "http://dbpedia.org/resource/Sweden", "surface form": "sweden"}], "relations": [{"URI": "http://dbpedia.org/ontology/birthPlace", "surface form": "born"}, {"URI": "http://dbpedia.org/property/awards", "surface form": "awards"}]}, {"id": "1862", "question": [{"language": "en", "string": "ITV employes how many people?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE {?uri <http://dbpedia.org/property/employer> <http://dbpedia.org/resource/ITV_(TV_network)> . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "66"}}, "entities": [{"URI": "http://dbpedia.org/resource/ITV_(TV_network)", "surface form": "ITV"}], "relations": [{"URI": "http://dbpedia.org/property/employer", "surface form": "employes"}]}, {"id": "1863", "question": [{"language": "en", "string": "Name some schools with a bison as their mascot?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/mascot> <http://dbpedia.org/resource/Bison> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/School>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Benton_Central_Junior-Senior_High_School"}}, "entities": [{"URI": "http://dbpedia.org/resource/Bison", "surface form": "bison"}], "relations": [{"URI": "http://dbpedia.org/property/mascot", "surface form": "mascot"}, {"URI": "http://dbpedia.org/ontology/School", "surface form": "school"}]}, {"id": "1864", "question": [{"language": "en", "string": "What has Carl Sagan written his books about?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/author> <http://dbpedia.org/resource/Carl_Sagan> . ?x <http://dbpedia.org/property/subject> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Book>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Science"}}, "entities": [{"URI": "http://dbpedia.org/resource/Carl_Sagan", "surface form": "Carl Sagan"}], "relations": [{"URI": "http://dbpedia.org/ontology/writer", "surface form": "written"}, {"URI": "http://dbpedia.org/ontology/volume", "surface form": "books"}]}, {"id": "1865", "question": [{"language": "en", "string": "Who voiced in Peanuts Motion Comics and The Peanuts Movie?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/voice> <http://dbpedia.org/resource/Peanuts_Motion_Comics> . ?uri <http://dbpedia.org/ontology/voice> <http://dbpedia.org/resource/The_Peanuts_Movie> . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Snoopy"}}, "entities": [{"URI": "http://dbpedia.org/resource/Peanuts_Motion_Comics", "surface form": "Peanuts Motion Comics"}, {"URI": "http://dbpedia.org/resource/The_Peanuts_Movie", "surface form": "The Peanuts Movie"}], "relations": [{"URI": "http://dbpedia.org/property/voice", "surface form": "voiced"}]}, {"id": "1866", "question": [{"language": "en", "string": "Who is the owner of the bank where Thomas Secunda works ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Thomas_Secunda> <http://dbpedia.org/ontology/occupation> ?x . ?x <http://dbpedia.org/property/owner> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Bank>}"}, "answers": {"uri": {"type": "literal", "xml:lang": "en", "value": "Bank of America"}}, "entities": [{"URI": "http://dbpedia.org/resource/Thomas_Secunda", "surface form": "Thomas Secunda"}], "relations": [{"URI": "http://dbpedia.org/ontology/owner", "surface form": "owner"}, {"URI": "http://dbpedia.org/ontology/order", "surface form": "bank"}, {"URI": "http://dbpedia.org/ontology/language", "surface form": "works"}]}, {"id": "1867", "question": [{"language": "en", "string": "What are some US citizens famous for?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/nationality> <http://dbpedia.org/resource/United_States> . ?x <http://dbpedia.org/ontology/knownFor> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Autism_Science_Foundation"}}, "entities": [{"URI": "http://dbpedia.org/resource/United_States", "surface form": "US"}], "relations": [{"URI": "http://dbpedia.org/ontology/nationality", "surface form": "citizens"}, {"URI": "http://dbpedia.org/ontology/knownFor", "surface form": "famous"}]}, {"id": "1868", "question": [{"language": "en", "string": "Who founded a company which served Mid Wales ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/regionServed> <http://dbpedia.org/resource/Mid_Wales> . ?x <http://dbpedia.org/ontology/foundedBy> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Andrew_Carnegie"}}, "entities": [{"URI": "http://dbpedia.org/resource/Mid_Wales", "surface form": "Mid Wales"}], "relations": [{"URI": "http://dbpedia.org/ontology/regionServed", "surface form": "served"}, {"URI": "http://dbpedia.org/ontology/foundedBy", "surface form": "founded"}]}, {"id": "1869", "question": [{"language": "en", "string": "British people have edited which movies?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/birthPlace> <http://dbpedia.org/resource/United_Kingdom> . ?uri <http://dbpedia.org/property/editing> ?x . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Meet_Maxwell_Archer"}}, "entities": [{"URI": "http://dbpedia.org/resource/United_Kingdom", "surface form": "British"}], "relations": [{"URI": "http://dbpedia.org/ontology/animal", "surface form": "british"}, {"URI": "http://dbpedia.org/ontology/editor", "surface form": "edited"}, {"URI": "http://dbpedia.org/ontology/film", "surface form": "movies"}]}, {"id": "1870", "question": [{"language": "en", "string": "List the home town of the bands whose label is Alive Naturalsound Records ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/label> <http://dbpedia.org/resource/Alive_Naturalsound_Records> . ?x <http://dbpedia.org/ontology/hometown> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Band>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Woodstock,_New_York"}}, "entities": [{"URI": "http://dbpedia.org/resource/Alive_Naturalsound_Records", "surface form": "Alive Naturalsound Records"}], "relations": [{"URI": "http://dbpedia.org/ontology/city", "surface form": "home town"}, {"URI": "http://dbpedia.org/ontology/staff", "surface form": "bands"}, {"URI": "http://dbpedia.org/property/label", "surface form": "label"}]}, {"id": "1871", "question": [{"language": "en", "string": "Who are some US colonels?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/rank> <http://dbpedia.org/resource/Colonel_(United_States)> . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Allen_L._Anderson"}}, "entities": [{"URI": "http://dbpedia.org/resource/United_States", "surface form": "US"}], "relations": [{"URI": "http://dbpedia.org/ontology/distance", "surface form": "colonels"}]}, {"id": "1872", "question": [{"language": "en", "string": "Count the different alma maters of people employed by the CNN"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/employer> <http://dbpedia.org/resource/CNN> . ?x <http://dbpedia.org/ontology/almaMater> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "20"}}, "entities": [{"URI": "http://dbpedia.org/resource/CNN", "surface form": "CNN"}], "relations": [{"URI": "http://dbpedia.org/property/employer", "surface form": "employed by"}, {"URI": "http://dbpedia.org/ontology/almaMater", "surface form": "alma mater"}]}, {"id": "1873", "question": [{"language": "en", "string": "Where did Steve Romeo dies ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Steve_Romeo> <http://dbpedia.org/ontology/deathPlace> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/United_States"}}, "entities": [{"URI": "http://dbpedia.org/resource/Steve_Romeo", "surface form": "Steve Romeo"}], "relations": [{"URI": "http://dbpedia.org/ontology/deathPlace", "surface form": "dies"}]}, {"id": "1874", "question": [{"language": "en", "string": "How many universities are in the National Collegiate Athletic Association?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE {?uri <http://dbpedia.org/ontology/athletics> <http://dbpedia.org/resource/National_Collegiate_Athletic_Association> . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/Universities_Ireland", "surface form": "universities"}, {"URI": "http://dbpedia.org/resource/National_Collegiate_Athletic_Association", "surface form": "National Collegiate Athletic Association"}], "relations": [{"URI": "http://dbpedia.org/ontology/athletics", "surface form": "athletic"}]}, {"id": "1875", "question": [{"language": "en", "string": "Which company developed the language designed by Lars Bak?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/designer> <http://dbpedia.org/resource/Lars_Bak_(computer_programmer)> . ?x <http://dbpedia.org/property/developer> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Language>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Google"}}, "entities": [{"URI": "http://dbpedia.org/resource/Lars_Bak_(computer_programmer)", "surface form": "Lars Bak"}], "relations": [{"URI": "http://dbpedia.org/ontology/company", "surface form": "company"}, {"URI": "http://dbpedia.org/ontology/leader", "surface form": "developed"}, {"URI": "http://dbpedia.org/ontology/language", "surface form": "language"}, {"URI": "http://dbpedia.org/ontology/designer", "surface form": "designed"}]}, {"id": "1876", "question": [{"language": "en", "string": "Which country gave birth to the Lemberger LD20b and Start+Flug H101 aircrafts?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Lemberger_LD20b> <http://dbpedia.org/property/nationalOrigin> ?uri. <http://dbpedia.org/resource/Start_+_Flug_H-101> <http://dbpedia.org/property/nationalOrigin> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/West_Germany"}}, "entities": [{"URI": "http://dbpedia.org/resource/Lemberger_LD20b", "surface form": "Lemberger LD20b"}, {"URI": "http://dbpedia.org/resource/H101", "surface form": "H101"}, {"URI": "http://dbpedia.org/resource/Karnit_Flug", "surface form": "Start+Flug aircrafts"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": "country"}, {"URI": "http://dbpedia.org/ontology/origin", "surface form": "birth"}]}, {"id": "1877", "question": [{"language": "en", "string": "What is the workplace of Christopher S. Stewart ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Christopher_S._Stewart> <http://dbpedia.org/property/employer> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Wall_Street_Journal"}}, "entities": [{"URI": "http://dbpedia.org/resource/Christopher_S._Stewart", "surface form": "Christopher S. Stewart"}], "relations": [{"URI": "http://dbpedia.org/property/studio", "surface form": "workplace"}]}, {"id": "1878", "question": [{"language": "en", "string": "What are some things people born in Louisiana are famous for?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/placeOfBirth> <http://dbpedia.org/resource/Louisiana> . ?x <http://dbpedia.org/property/knownFor> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/Louisiana", "surface form": "Louisiana"}], "relations": [{"URI": "http://dbpedia.org/property/placeOfBirth", "surface form": "born"}, {"URI": "http://dbpedia.org/property/knownFor", "surface form": "famous for"}]}, {"id": "1879", "question": [{"language": "en", "string": "Where did Fort Lauderdale Strikers season of 16 take place?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/2016_Fort_Lauderdale_Strikers_season> <http://dbpedia.org/ontology/ground> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lauderhill,_Florida"}}, "entities": [{"URI": "http://dbpedia.org/resource/2016_Fort_Lauderdale_Strikers_season", "surface form": "Fort Lauderdale Strikers season of 16"}], "relations": [{"URI": "http://dbpedia.org/ontology/place", "surface form": "place"}]}, {"id": "1880", "question": [{"language": "en", "string": "Who is the founder of Hohenau, Paraguay?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Hohenau,_Paraguay> <http://dbpedia.org/ontology/founder> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Germans"}}, "entities": [{"URI": "http://dbpedia.org/resource/Hohenau,_Paraguay", "surface form": "Hohenau, Paraguay"}], "relations": [{"URI": "http://dbpedia.org/ontology/founder", "surface form": "founder"}]}, {"id": "1881", "question": [{"language": "en", "string": "Who gave the musical score of 9 to 5 (musical) ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/9_to_5_(musical)> <http://dbpedia.org/ontology/musicBy> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dolly_Parton"}}, "entities": [{"URI": "http://dbpedia.org/resource/9_to_5_(musical)", "surface form": "9 to 5 (musical)"}], "relations": [{"URI": "http://dbpedia.org/ontology/musicBy", "surface form": "musical"}]}, {"id": "1882", "question": [{"language": "en", "string": "Who are the spouse of the actors of Wrongfully Accused?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Wrongfully_Accused> <http://dbpedia.org/ontology/starring> ?x . ?x <http://dbpedia.org/ontology/spouse> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Victor_Drai"}}, "entities": [{"URI": "http://dbpedia.org/resource/Wrongfully_Accused", "surface form": "Wrongfully"}], "relations": [{"URI": "http://dbpedia.org/ontology/starring", "surface form": "actor"}, {"URI": "http://dbpedia.org/ontology/spouse", "surface form": "spouse"}]}, {"id": "1883", "question": [{"language": "en", "string": "Count all that was built by a company whose leader is Kazuo Hirai?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/keyPeople> <http://dbpedia.org/resource/Kazuo_Hirai> . ?uri <http://dbpedia.org/ontology/manufacturer> ?x . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/Kazuo_Hirai", "surface form": "Kazuo Hirai"}], "relations": [{"URI": "http://dbpedia.org/ontology/type", "surface form": "count"}, {"URI": "http://dbpedia.org/ontology/numberBuilt", "surface form": "built"}, {"URI": "http://dbpedia.org/ontology/company", "surface form": "company"}, {"URI": "http://dbpedia.org/ontology/leader", "surface form": "leader"}]}, {"id": "1884", "question": [{"language": "en", "string": "For which band did Dave Hollister perform in the past?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/pastMembers> <http://dbpedia.org/resource/Dave_Hollister> } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Blackstreet"}}, "entities": [{"URI": "http://dbpedia.org/resource/Dave_Hollister", "surface form": "Dave Hollister"}], "relations": [{"URI": "http://dbpedia.org/ontology/band", "surface form": "band"}, {"URI": "http://dbpedia.org/ontology/artist", "surface form": "perform"}]}, {"id": "1885", "question": [{"language": "en", "string": "Which builder has made concrete bridges?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/material> <http://dbpedia.org/resource/Concrete> . ?x <http://dbpedia.org/ontology/builder> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Bridge>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Baulderstone"}}, "entities": [], "relations": [{"URI": "http://dbpedia.org/ontology/builder", "surface form": "builder"}, {"URI": "http://dbpedia.org/ontology/material", "surface form": "concrete bridges"}]}, {"id": "1886", "question": [{"language": "en", "string": "What is the serving railway line of Rostov-Glavny ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Rostov-Glavny> <http://dbpedia.org/ontology/servingRailwayLine> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Krasnodar"}}, "entities": [{"URI": "http://dbpedia.org/resource/Rostov-Glavny", "surface form": "Rostov-Glavny"}], "relations": [{"URI": "http://dbpedia.org/ontology/servingRailwayLine", "surface form": "serving"}, {"URI": "http://dbpedia.org/ontology/railwayPlatforms", "surface form": "railway"}]}, {"id": "1887", "question": [{"language": "en", "string": "How many different products are there of the companies located in the US?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/location> <http://dbpedia.org/resource/United_States> . ?x <http://dbpedia.org/ontology/product> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "2671"}}, "entities": [{"URI": "http://dbpedia.org/resource/Companies_listed_on_the_New_York_Stock_Exchange_(J)", "surface form": "companies"}, {"URI": "http://dbpedia.org/resource/United_States", "surface form": "US"}], "relations": [{"URI": "http://dbpedia.org/property/products", "surface form": "products"}, {"URI": "http://dbpedia.org/ontology/locatedInArea", "surface form": "located"}]}, {"id": "1888", "question": [{"language": "en", "string": "How many licensee are there, of the radio stations whose area is Nashville, Tennessee ?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/area> <http://dbpedia.org/resource/Nashville,_Tennessee> . ?x <http://dbpedia.org/property/licensee> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "11"}}, "entities": [{"URI": "http://dbpedia.org/resource/Nashville,_Tennessee", "surface form": "Nashville, Tennessee"}], "relations": [{"URI": "http://dbpedia.org/ontology/licensee", "surface form": "licensee"}, {"URI": "http://dbpedia.org/ontology/show", "surface form": "there,"}, {"URI": "http://dbpedia.org/ontology/numberOfStations", "surface form": "radio stations"}, {"URI": "http://dbpedia.org/ontology/area", "surface form": "area"}]}, {"id": "1889", "question": [{"language": "en", "string": "What actor starred in Splash and is married to Rita Wilson?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Splash_(film)> <http://dbpedia.org/property/starring> ?uri. <http://dbpedia.org/resource/Rita_Wilson> <http://dbpedia.org/property/spouse> ?uri . }"}, "answers": {"uri": {"type": "literal", "xml:lang": "en", "value": ""}}, "entities": [{"URI": "http://dbpedia.org/resource/Splash", "surface form": "Splash"}, {"URI": "http://dbpedia.org/resource/Rita_Wilson", "surface form": "Rita Wilson"}], "relations": [{"URI": "http://dbpedia.org/ontology/artist", "surface form": "actor"}, {"URI": "http://dbpedia.org/property/started", "surface form": "starred"}, {"URI": "http://dbpedia.org/property/spouse", "surface form": "married"}]}, {"id": "1890", "question": [{"language": "en", "string": "What is the river on which the Kariba Dam and Batoka Gorge Hydroelectirc power station exist?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Kariba_Dam> <http://dbpedia.org/ontology/river> ?uri. <http://dbpedia.org/resource/Batoka_Gorge_Hydroelectric_Power_Station> <http://dbpedia.org/ontology/river> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Zambezi"}}, "entities": [{"URI": "http://dbpedia.org/resource/Kariba_Dam", "surface form": "Kariba Dam"}, {"URI": "http://dbpedia.org/resource/Butlers_Gorge_Power_Station", "surface form": "Batoka Gorge Hydroelectirc power station"}], "relations": [{"URI": "http://dbpedia.org/ontology/river", "surface form": "river"}, {"URI": "http://dbpedia.org/property/last", "surface form": "exist"}]}, {"id": "1891", "question": [{"language": "en", "string": "Players from how many teams have participated in the National Hockey League?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/league> <http://dbpedia.org/resource/National_Hockey_League> . ?x <http://dbpedia.org/ontology/team> ?uri . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/SportsTeam>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "1206"}}, "entities": [{"URI": "http://dbpedia.org/resource/National_Hockey_League", "surface form": "National Hockey League"}], "relations": [{"URI": "http://dbpedia.org/ontology/participant", "surface form": "players"}, {"URI": "http://dbpedia.org/property/teams", "surface form": "teams"}, {"URI": "http://dbpedia.org/ontology/participant", "surface form": "participated"}]}, {"id": "1892", "question": [{"language": "en", "string": "What are the movies whose editor is Robert Wise?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/editing> <http://dbpedia.org/resource/Robert_Wise> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Devil_and_Daniel_Webster_(film)"}}, "entities": [{"URI": "http://dbpedia.org/resource/Robert_Wise", "surface form": "Robert Wise"}], "relations": [{"URI": "http://dbpedia.org/ontology/editing", "surface form": "editor"}, {"URI": "http://dbpedia.org/ontology/Film", "surface form": "movie"}]}, {"id": "1893", "question": [{"language": "en", "string": "List the music of Open House (American Horror Story)?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Open_House_(American_Horror_Story)> <http://dbpedia.org/property/music> ?uri } "}, "answers": {"uri": {"type": "literal", "xml:lang": "en", "value": ""}}, "entities": [{"URI": "http://dbpedia.org/resource/Open_House_(American_Horror_Story)", "surface form": "Open House (American Horror Story)"}], "relations": [{"URI": "http://dbpedia.org/property/music", "surface form": "music"}]}, {"id": "1894", "question": [{"language": "en", "string": "Where did the narrators of the Championship snooker die?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Championship_Snooker> <http://dbpedia.org/property/narrated> ?x . ?x <http://dbpedia.org/ontology/deathPlace> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Toronto"}}, "entities": [{"URI": "http://dbpedia.org/resource/Championship_Snooker", "surface form": "Championship snooker"}], "relations": [{"URI": "http://dbpedia.org/ontology/narrator", "surface form": "narrators"}, {"URI": "http://dbpedia.org/ontology/deathDate", "surface form": "die"}]}, {"id": "1895", "question": [{"language": "en", "string": "What are some families of mammals in the animal kingdom?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/kingdom> <http://dbpedia.org/resource/Animal> . ?x <http://dbpedia.org/ontology/family> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Mammal>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Eggysodontidae"}}, "entities": [{"URI": "http://dbpedia.org/resource/Animal", "surface form": "animal"}], "relations": [{"URI": "http://dbpedia.org/ontology/established", "surface form": "families"}, {"URI": "http://dbpedia.org/ontology/country", "surface form": "animal kingdom"}]}, {"id": "1896", "question": [{"language": "en", "string": "How many things are people who died in St. Petersburg known for?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/deathPlace> <http://dbpedia.org/resource/Saint_Petersburg> . ?x <http://dbpedia.org/ontology/knownFor> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "57"}}, "entities": [{"URI": "http://dbpedia.org/resource/St._Petersburg,_Florida", "surface form": "St Petersburg"}], "relations": [{"URI": "http://dbpedia.org/property/deathPlace", "surface form": "died"}]}, {"id": "1897", "question": [{"language": "en", "string": "List down the important people of The Elders ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/The_Elders_(organization)> <http://dbpedia.org/property/keyPeople> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mary_Robinson"}}, "entities": [{"URI": "http://dbpedia.org/resource/The_Elders_(organization)", "surface form": "The Elders"}], "relations": [{"URI": "http://dbpedia.org/property/keyPeople", "surface form": "people"}]}, {"id": "1898", "question": [{"language": "en", "string": "In how many nations is Coconut a common food ingredient?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/ingredient> <http://dbpedia.org/resource/Coconut> . ?x <http://dbpedia.org/property/country> ?uri . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Country>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "108"}}, "entities": [{"URI": "http://dbpedia.org/resource/Coconut", "surface form": "Coconut"}, {"URI": "http://dbpedia.org/resource/Ingredient", "surface form": "common food ingredient"}], "relations": [{"URI": "http://dbpedia.org/ontology/kingdom", "surface form": "nations"}]}, {"id": "1899", "question": [{"language": "en", "string": "Who all have created new kinds of cookies?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/type> <http://dbpedia.org/resource/Cookie> . ?x <http://dbpedia.org/property/creator> ?uri . }"}, "answers": {"uri": {"type": "literal", "xml:lang": "en", "value": "DeBaufre Bakeries"}}, "entities": [], "relations": [{"URI": "http://dbpedia.org/ontology/author", "surface form": "created"}, {"URI": "http://dbpedia.org/ontology/category", "surface form": "kinds"}, {"URI": "http://dbpedia.org/ontology/person", "surface form": "cookies"}]}, {"id": "1900", "question": [{"language": "en", "string": "What country is Jeffrey Werleman from, which also has the American Mediterranean Sea?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Jeffrey_Werleman> <http://dbpedia.org/ontology/birthPlace> ?uri. <http://dbpedia.org/resource/American_Mediterranean_Sea> <http://dbpedia.org/ontology/country> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Aruba"}}, "entities": [{"URI": "http://dbpedia.org/resource/Jeffrey_Vanan", "surface form": "Jeffrey Werleman from,"}, {"URI": "http://dbpedia.org/resource/Organization_of_American_States", "surface form": "American Mediterranean Sea"}, {"URI": "http://dbpedia.org/resource/American_Mediterranean_Sea", "surface form": "American Mediterranean Sea"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": "country"}, {"URI": "http://dbpedia.org/ontology/country", "surface form": ""}]}, {"id": "1901", "question": [{"language": "en", "string": "List the television shows whose network's owning company is Turner Broadcasting System?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/owningCompany> <http://dbpedia.org/resource/Turner_Broadcasting_System> . ?uri <http://dbpedia.org/property/network> ?x . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/American_Morning"}}, "entities": [{"URI": "http://dbpedia.org/resource/Turner_Broadcasting_System", "surface form": "Turner Broadcasting System"}], "relations": [{"URI": "http://dbpedia.org/property/tv", "surface form": "television"}, {"URI": "http://dbpedia.org/ontology/place", "surface form": "shows"}, {"URI": "http://dbpedia.org/ontology/network", "surface form": "network"}, {"URI": "http://dbpedia.org/ontology/owningCompany", "surface form": "owning"}, {"URI": "http://dbpedia.org/ontology/company", "surface form": "company"}]}, {"id": "1902", "question": [{"language": "en", "string": "For how many things are people famous, who were born in Nebraska?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/birthPlace> <http://dbpedia.org/resource/Nebraska> . ?x <http://dbpedia.org/ontology/knownFor> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "18"}}, "entities": [{"URI": "http://dbpedia.org/resource/Nebraska", "surface form": "Nebraska"}], "relations": [{"URI": "http://dbpedia.org/property/established", "surface form": "famous,"}, {"URI": "http://dbpedia.org/ontology/birthPlace", "surface form": "born"}]}, {"id": "1903", "question": [{"language": "en", "string": "List the maintainers of Pandaruan Bridge?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Pandaruan_Bridge> <http://dbpedia.org/ontology/maintainedBy> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Brunei"}}, "entities": [{"URI": "http://dbpedia.org/resource/Pandaruan_Bridge", "surface form": "Pandaruan Bridge"}], "relations": [{"URI": "http://dbpedia.org/ontology/maintainedBy", "surface form": "maintainers"}]}, {"id": "1904", "question": [{"language": "en", "string": "What is the home town of the musical artist who is the current members of Slapstick?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Slapstick_(band)> <http://dbpedia.org/property/currentMembers> ?x . ?x <http://dbpedia.org/ontology/hometown> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/MusicalArtist>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Missouri"}}, "entities": [{"URI": "http://dbpedia.org/resource/Slapstick_(band)", "surface form": "Slapstick"}], "relations": [{"URI": "http://dbpedia.org/ontology/hometown", "surface form": "home town"}, {"URI": "http://dbpedia.org/ontology/artist", "surface form": "musical artist"}, {"URI": "http://dbpedia.org/property/currentMembers", "surface form": "current members"}]}, {"id": "1905", "question": [{"language": "en", "string": "What are some rivers in Zambia which have a dam on them?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/country> <http://dbpedia.org/resource/Zambia> . ?x <http://dbpedia.org/ontology/river> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Dam>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Zambezi"}}, "entities": [{"URI": "http://dbpedia.org/resource/Zambia", "surface form": "Zambia"}], "relations": [{"URI": "http://dbpedia.org/ontology/river", "surface form": "rivers"}, {"URI": "http://dbpedia.org/ontology/dam", "surface form": "dam"}]}, {"id": "1906", "question": [{"language": "en", "string": "what does the cahora bassa flow into?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Cahora_Bassa> <http://dbpedia.org/property/inflow> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Zambezi_River"}}, "entities": [{"URI": "http://dbpedia.org/resource/Cahora_Bassa", "surface form": "Cahora bassa"}], "relations": [{"URI": "http://dbpedia.org/property/inflow", "surface form": "flow"}]}, {"id": "1907", "question": [{"language": "en", "string": "In which city is Arsenal Cider House ? located ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Arsenal_Cider_House> <http://dbpedia.org/property/locationCity> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pittsburgh"}}, "entities": [{"URI": "http://dbpedia.org/resource/Arsenal_Cider_House", "surface form": "Arsenal Cider House"}], "relations": [{"URI": "http://dbpedia.org/ontology/city", "surface form": "city"}, {"URI": "http://dbpedia.org/ontology/gross", "surface form": "located"}]}, {"id": "1908", "question": [{"language": "en", "string": "List the American MEditerranean Sea city is also the place of death of Laszlo Bellak ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/American_Mediterranean_Sea> <http://dbpedia.org/property/cities> ?uri. <http://dbpedia.org/resource/Laszlo_Bellak> <http://dbpedia.org/ontology/deathPlace> ?uri} "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Miami"}}, "entities": [{"URI": "http://dbpedia.org/resource/Organization_of_American_States", "surface form": "American MEditerranean Sea city"}, {"URI": "http://dbpedia.org/resource/Mediterranean_Sea", "surface form": "American MEditerranean Sea city"}, {"URI": "http://dbpedia.org/resource/Laszlo_Bellak", "surface form": "Laszlo Bellak"}], "relations": [{"URI": "http://dbpedia.org/property/cities", "surface form": "city"}, {"URI": "http://dbpedia.org/ontology/deathPlace", "surface form": "place death"}]}, {"id": "1909", "question": [{"language": "en", "string": "List down the TV shows whose producer is Stephen E. Ambros and writer is John Orloff ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/producer> <http://dbpedia.org/resource/Stephen_E._Ambrose> . ?uri <http://dbpedia.org/property/writer> <http://dbpedia.org/resource/John_Orloff> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Band_of_Brothers_(miniseries)"}}, "entities": [{"URI": "http://dbpedia.org/resource/Stephen_E._Ambrose", "surface form": "Stephen E. Ambros "}, {"URI": "http://dbpedia.org/resource/John_Orloff", "surface form": "John Orloff"}], "relations": [{"URI": "http://dbpedia.org/ontology/place", "surface form": "shows"}, {"URI": "http://dbpedia.org/ontology/producer", "surface form": "producer"}, {"URI": "http://dbpedia.org/ontology/writer", "surface form": "writer"}]}, {"id": "1910", "question": [{"language": "en", "string": "What is the alma mater of Fikret Orman?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Fikret_Orman> <http://dbpedia.org/property/almaMater> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/University_of_Florida"}}, "entities": [{"URI": "http://dbpedia.org/resource/Fikret_Orman", "surface form": "Fikret Orman"}], "relations": [{"URI": "http://dbpedia.org/ontology/almaMater", "surface form": "alma mater"}]}, {"id": "1911", "question": [{"language": "en", "string": "Which soccer players are currently playing for NYC FC?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/currentclub> <http://dbpedia.org/resource/New_York_City_FC> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/SoccerPlayer>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Andres_Jasson"}}, "entities": [{"URI": "http://dbpedia.org/resource/The_Players_(film)", "surface form": "soccer players"}, {"URI": "http://dbpedia.org/resource/New_York_Central_Railroad", "surface form": "NYC"}, {"URI": "http://dbpedia.org/resource/FC", "surface form": "FC"}, {"URI": "http://dbpedia.org/resource/FC", "surface form": "FC"}, {"URI": "http://dbpedia.org/resource/New_York_Central_Railroad", "surface form": "NYC"}], "relations": [{"URI": "http://dbpedia.org/ontology/gross", "surface form": "playing"}]}, {"id": "1912", "question": [{"language": "en", "string": "Which company owns Evraz ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Evraz> <http://dbpedia.org/ontology/owningCompany> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Roman_Abramovich"}}, "entities": [{"URI": "http://dbpedia.org/resource/Evraz", "surface form": "Evraz"}], "relations": [{"URI": "http://dbpedia.org/ontology/owningCompany", "surface form": "company"}]}, {"id": "1913", "question": [{"language": "en", "string": "How many party leaders are there whose parties are headquartered in Berlin?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/headquarter> <http://dbpedia.org/resource/Berlin> . ?x <http://dbpedia.org/ontology/leader> ?uri . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Politician>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "57"}}, "entities": [{"URI": "http://dbpedia.org/resource/Berlin", "surface form": "Berlin"}], "relations": [{"URI": "http://dbpedia.org/ontology/headquarter", "surface form": "headquarter"}, {"URI": "http://dbpedia.org/ontology/leader", "surface form": "leaders"}]}, {"id": "1914", "question": [{"language": "en", "string": "Where was the trainer of Java Gold born?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Java_Gold> <http://dbpedia.org/property/trainer> ?x . ?x <http://dbpedia.org/property/birthPlace> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Versailles,_Kentucky"}}, "entities": [{"URI": "http://dbpedia.org/resource/Java_Gold", "surface form": "Java Gold"}], "relations": [{"URI": "http://dbpedia.org/ontology/trainer", "surface form": "trainer"}, {"URI": "http://dbpedia.org/ontology/birthPlace", "surface form": "born"}]}, {"id": "1915", "question": [{"language": "en", "string": "Where can I find some buildings of modern architecture?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/architecturalStyle> <http://dbpedia.org/resource/Modern_architecture> . ?x <http://dbpedia.org/property/address> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Building>}"}, "answers": {"uri": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "127"}}, "entities": [{"URI": "http://dbpedia.org/resource/I", "surface form": "I"}, {"URI": "http://dbpedia.org/resource/Modern_architecture", "surface form": "modern architecture"}], "relations": [{"URI": "http://dbpedia.org/ontology/production", "surface form": "buildings"}]}, {"id": "1916", "question": [{"language": "en", "string": "Who are the people who played for San Francisco 49ers?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/team> <http://dbpedia.org/resource/San_Francisco_49ers> . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alyn_Beals"}}, "entities": [{"URI": "http://dbpedia.org/resource/San_Francisco_49ers", "surface form": "San Francisco 49ers"}], "relations": [{"URI": "http://dbpedia.org/ontology/team", "surface form": "played for"}]}, {"id": "1917", "question": [{"language": "en", "string": "Name a famous relative of barry voight"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/relative> <http://dbpedia.org/resource/Barry_Voight> . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Angelina_Jolie"}}, "entities": [{"URI": "http://dbpedia.org/resource/Barry_Voight", "surface form": "Barry voight"}], "relations": [{"URI": "http://dbpedia.org/property/name", "surface form": "name"}, {"URI": "http://dbpedia.org/ontology/relative", "surface form": "famous relative"}]}, {"id": "1918", "question": [{"language": "en", "string": "List places that are associated to cities in the state of Mecklenburg-Vorpommern."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/federalState> <http://dbpedia.org/resource/Mecklenburg-Vorpommern> . ?uri <http://dbpedia.org/property/cities> ?x . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Melzer_See_(Waren)"}}, "entities": [{"URI": "http://dbpedia.org/resource/Mecklenburg-Vorpommern", "surface form": "Mecklenburg-Vorpommern"}], "relations": [{"URI": "http://dbpedia.org/ontology/district", "surface form": "places"}, {"URI": "http://dbpedia.org/ontology/team", "surface form": "associated"}, {"URI": "http://dbpedia.org/ontology/country", "surface form": "cities"}]}, {"id": "1919", "question": [{"language": "en", "string": "Which awards did the writer, who is the creator of Creature Comforts, won ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Creature_Comforts> <http://dbpedia.org/property/creator> ?x . ?x <http://dbpedia.org/property/awards> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Writer>}"}, "answers": {"uri": {"type": "literal", "xml:lang": "en", "value": "Four Academy Awards"}}, "entities": [{"URI": "http://dbpedia.org/resource/Creature_Comforts", "surface form": "Creature Comforts,"}], "relations": [{"URI": "http://dbpedia.org/ontology/award", "surface form": "awards"}, {"URI": "http://dbpedia.org/ontology/writer", "surface form": "writer,"}, {"URI": "http://dbpedia.org/ontology/creator", "surface form": "creator"}, {"URI": "http://dbpedia.org/ontology/award", "surface form": "won"}]}, {"id": "1920", "question": [{"language": "en", "string": "Count the number of sports played by the universities whihc also plays Volleyball ?"}], "query": {"sparql": " SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/athletics> <http://dbpedia.org/resource/Volleyball> . ?x <http://dbpedia.org/property/athletics> ?uri }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/Est\u00e1cio_S.A.", "surface form": "universities whihc"}, {"URI": "http://dbpedia.org/resource/Volleyball", "surface form": "Volleyball"}], "relations": [{"URI": "http://dbpedia.org/ontology/type", "surface form": "count"}, {"URI": "http://dbpedia.org/ontology/athletics", "surface form": "sports"}, {"URI": "http://dbpedia.org/ontology/portrayer", "surface form": "played"}, {"URI": "http://dbpedia.org/ontology/plays", "surface form": "plays"}]}, {"id": "1921", "question": [{"language": "en", "string": "In which areas are the radio stations of Monticello, Maine available too?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/city> <http://dbpedia.org/resource/Monticello,_Maine> . ?x <http://dbpedia.org/property/area> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/RadioStation>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Asia"}}, "entities": [{"URI": "http://dbpedia.org/resource/Monticello,_Maine", "surface form": "Monticello, Maine"}], "relations": [{"URI": "http://dbpedia.org/ontology/numberOfStations", "surface form": "radio stations"}]}, {"id": "1922", "question": [{"language": "en", "string": "Through how many labels has Katy B released her singles?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/writer> <http://dbpedia.org/resource/Katy_B> . ?x <http://dbpedia.org/ontology/recordLabel> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "13"}}, "entities": [{"URI": "http://dbpedia.org/resource/B", "surface form": "B"}, {"URI": "http://dbpedia.org/resource/Katy", "surface form": "Katy"}], "relations": [{"URI": "http://dbpedia.org/ontology/flag", "surface form": "labels"}, {"URI": "http://dbpedia.org/ontology/channel", "surface form": "released"}, {"URI": "http://dbpedia.org/ontology/slogan", "surface form": "singles"}]}, {"id": "1923", "question": [{"language": "en", "string": "Name the sstadium of 2015 Pro Duta FC season ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/2015_Pro_Duta_FC_season> <http://dbpedia.org/property/stadium> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Teladan_Stadium"}}, "entities": [{"URI": "http://dbpedia.org/resource/FC", "surface form": "FC"}, {"URI": "http://dbpedia.org/resource/2015_Pro_Duta_FC_season", "surface form": "2015 Pro Duta season"}], "relations": [{"URI": "http://dbpedia.org/property/stadium", "surface form": "stadium"}]}, {"id": "1924", "question": [{"language": "en", "string": "Pointe d'Aveneyre belongs to which mountain range?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Pointe_d'Aveneyre> <http://dbpedia.org/ontology/mountainRange> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Swiss_Alps"}}, "entities": [{"URI": "http://dbpedia.org/resource/Pointe_d'Aveneyre", "surface form": "Pointe d'Aveneyre"}], "relations": [{"URI": "http://dbpedia.org/ontology/date", "surface form": "pointe d"}, {"URI": "http://dbpedia.org/ontology/date", "surface form": "belongs"}, {"URI": "http://dbpedia.org/ontology/mountainRange", "surface form": "mountain range"}]}, {"id": "1925", "question": [{"language": "en", "string": "Jerry Bock's musicals has been adapted from how many things?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/music> <http://dbpedia.org/resource/Jerry_Bock> . ?x <http://dbpedia.org/ontology/basedOn> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "12"}}, "entities": [{"URI": "http://dbpedia.org/resource/Jerry_Bock", "surface form": "Jerry bock"}], "relations": [{"URI": "http://dbpedia.org/property/music", "surface form": "music"}, {"URI": "http://dbpedia.org/ontology/basedOn", "surface form": "adapted from"}]}, {"id": "1926", "question": [{"language": "en", "string": "Count the movies edited by Mark Stevens (film editor) and were directed by Joel Schumacher?"}], "query": {"sparql": " SELECT DISTINCT COUNT(?uri) WHERE {?uri <http://dbpedia.org/property/editing> <http://dbpedia.org/resource/Mark_Stevens_(film_editor)> . ?uri <http://dbpedia.org/ontology/director> <http://dbpedia.org/resource/Joel_Schumacher> } "}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "7"}}, "entities": [{"URI": "http://dbpedia.org/resource/Mark_Stevens_(film_editor)", "surface form": "Mark Stevens (film editor)"}, {"URI": "http://dbpedia.org/resource/Joel_Schumacher", "surface form": "Joel Schumacher"}], "relations": [{"URI": "http://dbpedia.org/property/editing", "surface form": "edited by"}, {"URI": "http://dbpedia.org/ontology/director", "surface form": "directed by"}]}, {"id": "1927", "question": [{"language": "en", "string": "What television shows's distributor is Eurovision?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/distributor> <http://dbpedia.org/resource/Eurovision_(network)> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Eurovision_Choir"}}, "entities": [{"URI": "http://dbpedia.org/resource/Eurovision_(network)", "surface form": "Eurovision"}], "relations": [{"URI": "http://dbpedia.org/ontology/distributor", "surface form": "distributor"}, {"URI": "http://dbpedia.org/ontology/TelevisionShow", "surface form": "television show"}]}, {"id": "1928", "question": [{"language": "en", "string": "List the judge of the TV show whose one of the judge is Ludacris ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/judges> <http://dbpedia.org/resource/Ludacris> . ?x <http://dbpedia.org/property/judges> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Brad_Paisley"}}, "entities": [{"URI": "http://dbpedia.org/resource/Tv_test_pattern", "surface form": "TV"}, {"URI": "http://dbpedia.org/resource/Ludacris", "surface form": "Ludacris"}], "relations": [{"URI": "http://dbpedia.org/ontology/showJudge", "surface form": "judge"}, {"URI": "http://dbpedia.org/ontology/show", "surface form": "show"}, {"URI": "http://dbpedia.org/ontology/showJudge", "surface form": "judge"}]}, {"id": "1929", "question": [{"language": "en", "string": "Whose youth clubs used to participate in Argentine Primera Division?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/league> <http://dbpedia.org/resource/Argentine_Primera_Divisi\u00f3n> . ?uri <http://dbpedia.org/property/youthclubs> ?x . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Valent\u00edn_Larralde"}}, "entities": [{"URI": "http://dbpedia.org/resource/Argentina", "surface form": "Argentine Primera Division"}, {"URI": "http://dbpedia.org/resource/Argentine_Primera_Divisi\u00f3n", "surface form": "Argentine Primera Division"}], "relations": [{"URI": "http://dbpedia.org/property/league", "surface form": "Division"}, {"URI": "http://dbpedia.org/property/youthclubs", "surface form": "youth clubs"}]}, {"id": "1930", "question": [{"language": "en", "string": "List some people who were opponents of someone who was died by hanging? "}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/deathCause> <http://dbpedia.org/resource/Hanging> . ?x <http://dbpedia.org/ontology/opponent> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Person>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Francis_Bacon"}}, "entities": [], "relations": [{"URI": "http://dbpedia.org/ontology/rival", "surface form": "opponents"}, {"URI": "http://dbpedia.org/ontology/board", "surface form": "died"}, {"URI": "http://dbpedia.org/ontology/configuration", "surface form": "hanging"}]}, {"id": "1931", "question": [{"language": "en", "string": "Who owns the railway line which goes through the Newark Station?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Newark_station_(Delaware)> <http://dbpedia.org/property/line> ?x . ?x <http://dbpedia.org/property/owner> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Amtrak"}}, "entities": [{"URI": "http://dbpedia.org/resource/Newark_station_(Delaware)", "surface form": "Newark Station"}], "relations": [{"URI": "http://dbpedia.org/property/line", "surface form": "line"}, {"URI": "http://dbpedia.org/property/owner", "surface form": "owns"}]}, {"id": "1932", "question": [{"language": "en", "string": "What is the parent company of Edsel?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Edsel> <http://dbpedia.org/property/parent> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ford_Motor_Company"}}, "entities": [{"URI": "http://dbpedia.org/resource/Edsel", "surface form": "Edsel"}], "relations": [{"URI": "http://dbpedia.org/property/parent", "surface form": "parent"}]}, {"id": "1933", "question": [{"language": "en", "string": "How many shows are made by Playtone?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE {?uri <http://dbpedia.org/property/company> <http://dbpedia.org/resource/Playtone> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "11"}}, "entities": [{"URI": "http://dbpedia.org/resource/Playtone", "surface form": "Playtone"}], "relations": [{"URI": "http://dbpedia.org/ontology/place", "surface form": "shows"}]}, {"id": "1934", "question": [{"language": "en", "string": "From which country is Lawrence Okoye's nationality ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Lawrence_Okoye> <http://dbpedia.org/property/nationality> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Great_Britain"}}, "entities": [{"URI": "http://dbpedia.org/resource/Lawrence_Okoye", "surface form": "Lawrence Okoye"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": "country"}, {"URI": "http://dbpedia.org/property/nationality", "surface form": " nationality"}]}, {"id": "1935", "question": [{"language": "en", "string": "From which party is the politician who was selected in Barasat constituency?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/constituency> <http://dbpedia.org/resource/Barasat_(Lok_Sabha_constituency)> . ?x <http://dbpedia.org/ontology/party> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/OfficeHolder>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/All_India_Forward_Bloc"}}, "entities": [{"URI": "http://dbpedia.org/resource/Barasat_(Lok_Sabha_constituency)", "surface form": "Barasat constituency"}], "relations": [{"URI": "http://dbpedia.org/ontology/party", "surface form": "party"}, {"URI": "http://dbpedia.org/ontology/party", "surface form": "politician"}, {"URI": "http://dbpedia.org/ontology/name", "surface form": "selected"}]}, {"id": "1936", "question": [{"language": "en", "string": "Name the associate acts of Martin Pugh?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Martin_Pugh> <http://dbpedia.org/property/associatedActs> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Steamhammer_(band)"}}, "entities": [{"URI": "http://dbpedia.org/resource/Martin_Pugh", "surface form": "Martin Pugh"}], "relations": [{"URI": "http://dbpedia.org/property/name", "surface form": "name"}, {"URI": "http://dbpedia.org/ontology/team", "surface form": "associate acts"}]}, {"id": "1937", "question": [{"language": "en", "string": "Who authored the work illustrated by Hiroyuki Takei?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/illustrator> <http://dbpedia.org/resource/Hiroyuki_Takei> . ?x <http://dbpedia.org/property/author> ?uri . }"}, "answers": {"uri": {"type": "literal", "xml:lang": "en", "value": "Stan Lee"}}, "entities": [{"URI": "http://dbpedia.org/resource/Hiroyuki_Takei", "surface form": "Hiroyuki Takei"}], "relations": [{"URI": "http://dbpedia.org/ontology/author", "surface form": "authored"}, {"URI": "http://dbpedia.org/ontology/title", "surface form": "work"}, {"URI": "http://dbpedia.org/ontology/illustrator", "surface form": "illustrated"}]}, {"id": "1938", "question": [{"language": "en", "string": "Who was the president at the time when both Carl Stokes and Joseph Stiglitz held a position in US political framework?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Carl_Stokes> <http://dbpedia.org/property/president> ?uri. <http://dbpedia.org/resource/Joseph_Stiglitz> <http://dbpedia.org/property/president> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bill_Clinton"}}, "entities": [{"URI": "http://dbpedia.org/resource/Carl_Stokes", "surface form": "Carl Stokes"}, {"URI": "http://dbpedia.org/resource/Joseph_Stiglitz", "surface form": "Joseph Stiglitz"}, {"URI": "http://dbpedia.org/resource/United_States", "surface form": "US"}], "relations": [{"URI": "http://dbpedia.org/ontology/president", "surface form": "president"}, {"URI": "http://dbpedia.org/ontology/time", "surface form": "time"}, {"URI": "http://dbpedia.org/ontology/office", "surface form": "held"}, {"URI": "http://dbpedia.org/ontology/position", "surface form": "position"}, {"URI": "http://dbpedia.org/ontology/party", "surface form": "political framework"}]}, {"id": "1939", "question": [{"language": "en", "string": "List all the presidents of the school which had atleast one of the president as Queen Noor of Jordan ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/president> <http://dbpedia.org/resource/Queen_Noor_of_Jordan> . ?x <http://dbpedia.org/ontology/president> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/School>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nelson_Mandela"}}, "entities": [{"URI": "http://dbpedia.org/resource/Queen_Noor_of_Jordan", "surface form": "Queen Noor of Jordan"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": "presidents"}, {"URI": "http://dbpedia.org/ontology/show", "surface form": "atleast"}, {"URI": "http://dbpedia.org/ontology/president", "surface form": "president"}]}, {"id": "1940", "question": [{"language": "en", "string": "What is the birth city of trainer of Leallah?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Leallah> <http://dbpedia.org/property/trainer> ?x . ?x <http://dbpedia.org/property/birthPlace> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Versailles,_Kentucky"}}, "entities": [{"URI": "http://dbpedia.org/resource/Leallah", "surface form": "Leallah"}], "relations": [{"URI": "http://dbpedia.org/ontology/languageFamily", "surface form": "birth city"}, {"URI": "http://dbpedia.org/ontology/trainer", "surface form": "trainer"}]}, {"id": "1941", "question": [{"language": "en", "string": "What are some TV shows similar to the one produced by Susie Liggat?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/producer> <http://dbpedia.org/resource/Susie_Liggat> . ?uri <http://dbpedia.org/ontology/related> ?x . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sarah_Jane's_Alien_Files"}}, "entities": [{"URI": "http://dbpedia.org/resource/Tv_test_pattern", "surface form": "TV"}, {"URI": "http://dbpedia.org/resource/Susie_Liggat", "surface form": "Susie Liggat"}], "relations": [{"URI": "http://dbpedia.org/ontology/place", "surface form": "shows"}, {"URI": "http://dbpedia.org/ontology/manufacturer", "surface form": "produced"}]}, {"id": "1942", "question": [{"language": "en", "string": "Who has canonized someone who's a doctor of the church?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/titles> <http://dbpedia.org/resource/Doctor_of_the_Church> . ?x <http://dbpedia.org/ontology/canonizedBy> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pope_Pius_XI"}}, "entities": [], "relations": [{"URI": "http://dbpedia.org/property/canonizedBy", "surface form": "canonized"}, {"URI": "http://dbpedia.org/ontology/spike", "surface form": "doctor"}, {"URI": "http://dbpedia.org/ontology/parish", "surface form": "church"}]}, {"id": "1943", "question": [{"language": "en", "string": "What currencies are prevalent in the countries governed by the President of France?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/leaderTitle> <http://dbpedia.org/resource/President_of_France> . ?x <http://dbpedia.org/ontology/currency> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Country>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Euro"}}, "entities": [{"URI": "http://dbpedia.org/resource/Currencies_Direct", "surface form": "Currencies"}, {"URI": "http://dbpedia.org/resource/Countries_of_the_United_Kingdom", "surface form": "countries"}, {"URI": "http://dbpedia.org/resource/President_of_France", "surface form": "President of France"}], "relations": [{"URI": "http://dbpedia.org/ontology/currency", "surface form": "prevalent"}, {"URI": "http://dbpedia.org/ontology/employer", "surface form": "governed"}]}, {"id": "1944", "question": [{"language": "en", "string": "Which company manufactured Delta III?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Delta_III> <http://dbpedia.org/ontology/manufacturer> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mitsubishi_Heavy_Industries"}}, "entities": [{"URI": "http://dbpedia.org/resource/Delta_III", "surface form": "Delta III"}], "relations": [{"URI": "http://dbpedia.org/ontology/manufacturer", "surface form": "manufactured"}]}, {"id": "1945", "question": [{"language": "en", "string": "In which fields are pupils of Edouard Chavannes working?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/academicAdvisor> <http://dbpedia.org/resource/\u00c9douard_Chavannes> . ?x <http://dbpedia.org/property/fields> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Daoism"}}, "entities": [{"URI": "http://dbpedia.org/resource/\u00c9douard_Chavannes", "surface form": "Edouard Chavannes"}], "relations": [{"URI": "http://dbpedia.org/ontology/area", "surface form": "fields"}, {"URI": "http://dbpedia.org/ontology/school", "surface form": "pupils"}, {"URI": "http://dbpedia.org/ontology/capital", "surface form": "working"}]}, {"id": "1946", "question": [{"language": "en", "string": "Who is the artist of Time Radio hour ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Theme_Time_Radio_Hour> <http://dbpedia.org/property/creator> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bob_Dylan"}}, "entities": [{"URI": "http://dbpedia.org/resource/Isopanisad_Radio_Hour", "surface form": "Time Radio hour"}], "relations": [{"URI": "http://dbpedia.org/ontology/artist", "surface form": "artist"}]}, {"id": "1947", "question": [{"language": "en", "string": "Where did the genres originate, which were in the Harry and the Potters album?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { <http://dbpedia.org/resource/Harry_and_the_Potters_(album)> <http://dbpedia.org/ontology/genre> ?x . ?x <http://dbpedia.org/ontology/stylisticOrigin> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/Harry_and_the_Potters_(album)", "surface form": "Harry and the Potters"}], "relations": [{"URI": "http://dbpedia.org/ontology/genre", "surface form": "genre"}, {"URI": "http://dbpedia.org/ontology/stylisticOrigin", "surface form": "album"}]}, {"id": "1948", "question": [{"language": "en", "string": "How many sitcoms are there whose theme music is composed by a New Yorker?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/hometown> <http://dbpedia.org/resource/New_York> . ?uri <http://dbpedia.org/property/themeMusicComposer> ?x . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/New_Yorker", "surface form": "New Yorker"}], "relations": [{"URI": "http://dbpedia.org/ontology/series", "surface form": "sitcoms"}, {"URI": "http://dbpedia.org/ontology/openingTheme", "surface form": "theme music"}, {"URI": "http://dbpedia.org/ontology/creator", "surface form": "composed"}]}, {"id": "1949", "question": [{"language": "en", "string": "Who was succeeded by Arthur Gegei as the office ho0lder ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/successor> <http://dbpedia.org/resource/Art\u00far_G\u00f6rgei> . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lajos_Kossuth__Tenure__1"}}, "entities": [{"URI": "http://dbpedia.org/resource/Arthur_%22Big_Boy%22_Spires", "surface form": "Arthur Gegei"}], "relations": [{"URI": "http://dbpedia.org/ontology/founder", "surface form": "succeeded"}, {"URI": "http://dbpedia.org/ontology/arm", "surface form": "office ho0lder"}]}, {"id": "1950", "question": [{"language": "en", "string": "Give me a count of movies whose editor is Mark Stevens?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE {?uri <http://dbpedia.org/property/editing> <http://dbpedia.org/resource/Mark_Stevens_(film_editor)> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "14"}}, "entities": [{"URI": "http://dbpedia.org/resource/Mark_Stevens_(film_editor)", "surface form": "Mark Stevens"}], "relations": [{"URI": "http://dbpedia.org/property/editing", "surface form": "editor"}, {"URI": "http://dbpedia.org/ontology/Film", "surface form": "movie"}]}, {"id": "1951", "question": [{"language": "en", "string": "How many other awards have been given to people who have won the Golden Globe?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/award> <http://dbpedia.org/resource/Golden_Globe_Award> . ?x <http://dbpedia.org/property/awards> ?uri . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Award>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/Golden_Globe_Award", "surface form": "Golden Globe"}], "relations": [{"URI": "http://dbpedia.org/ontology/award", "surface form": "awards"}, {"URI": "http://dbpedia.org/ontology/award", "surface form": "won"}]}, {"id": "1952", "question": [{"language": "en", "string": "What was developed by someone working in Cockroach Labs?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/employer> <http://dbpedia.org/resource/Cockroach_Labs> . ?uri <http://dbpedia.org/property/author> ?x . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/GIMP"}}, "entities": [{"URI": "http://dbpedia.org/resource/Cockroach_Labs", "surface form": "Cockroach Labs"}], "relations": [{"URI": "http://dbpedia.org/ontology/employer", "surface form": "working"}, {"URI": "http://dbpedia.org/ontology/author", "surface form": "developed"}]}, {"id": "1953", "question": [{"language": "en", "string": "The people who did their high school in Palm City, Florida did their college where?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/highschool> <http://dbpedia.org/resource/Palm_City,_Florida> . ?x <http://dbpedia.org/ontology/college> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Person>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tulane_University"}}, "entities": [{"URI": "http://dbpedia.org/resource/Palm_City,_Florida", "surface form": "Palm City, Florida"}], "relations": [{"URI": "http://dbpedia.org/ontology/highschool", "surface form": "high school"}, {"URI": "http://dbpedia.org/ontology/college", "surface form": "college"}]}, {"id": "1954", "question": [{"language": "en", "string": "Where is the radio broadcasted in, whose sister station is CKFM-FM?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/sisterStation> <http://dbpedia.org/resource/CKFM-FM> . ?x <http://dbpedia.org/ontology/broadcastArea> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/RadioStation>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Southern_Ontario"}}, "entities": [{"URI": "http://dbpedia.org/resource/CKFM-FM", "surface form": "CKFM-FM"}], "relations": [{"URI": "http://dbpedia.org/ontology/parent", "surface form": "radio"}, {"URI": "http://dbpedia.org/ontology/state", "surface form": "broadcasted"}, {"URI": "http://dbpedia.org/ontology/recordedIn", "surface form": "in,"}, {"URI": "http://dbpedia.org/ontology/sisterStation", "surface form": "sister station"}]}, {"id": "1955", "question": [{"language": "en", "string": "What is the academic discipline of the Journal of Cerebral Blood Flow & Metabolism and also an ingredient of the Ragout fin ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Journal_of_Cerebral_Blood_Flow_&_Metabolism> <http://dbpedia.org/ontology/academicDiscipline> ?uri. <http://dbpedia.org/resource/Ragout_fin> <http://dbpedia.org/ontology/ingredient> ?uri} "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Brain"}}, "entities": [{"URI": "http://dbpedia.org/resource/Journal_of_Cerebral_Blood_Flow_&_Metabolism", "surface form": "Journal of Cerebral Blood Flow & Metabolism"}, {"URI": "http://dbpedia.org/resource/Ragout_fin", "surface form": "Ragout fin"}], "relations": [{"URI": "http://dbpedia.org/ontology/academicDiscipline", "surface form": "academic discipline"}, {"URI": "http://dbpedia.org/ontology/ingredient", "surface form": "ingredient"}]}, {"id": "1956", "question": [{"language": "en", "string": "In what tv shows did Jason Carter act?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/starring> <http://dbpedia.org/resource/Jason_Carter_(actor)> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Babylon_5"}}, "entities": [{"URI": "http://dbpedia.org/resource/Jason_Carter", "surface form": "Jason Carter"}], "relations": [{"URI": "http://dbpedia.org/ontology/starring", "surface form": "act"}]}, {"id": "1957", "question": [{"language": "en", "string": "Pennsylvania has how many american football teams?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE {?uri <http://dbpedia.org/property/city> <http://dbpedia.org/resource/Pennsylvania> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/AmericanFootballTeam>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/Pennsylvania", "surface form": "pennsylvania"}, {"URI": "http://dbpedia.org/resource/American_Football_League_All-League_Teams", "surface form": "american football teams"}], "relations": []}, {"id": "1958", "question": [{"language": "en", "string": "To which sports team is Aubie the mascot?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/mascot> <http://dbpedia.org/resource/Aubie> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/SportsTeam>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Auburn_Tigers"}}, "entities": [{"URI": "http://dbpedia.org/resource/Aubie", "surface form": "Aubie"}], "relations": [{"URI": "http://dbpedia.org/property/mascot", "surface form": "mascot"}, {"URI": "http://dbpedia.org/ontology/SportsTeam", "surface form": "sports team"}]}, {"id": "1959", "question": [{"language": "en", "string": "What is the religious affiliation of Hong Kong Taoist Association Tang Hin Memorial Secondary School ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Hong_Kong_Taoist_Association_Tang_Hin_Memorial_Secondary_School> <http://dbpedia.org/property/religiousAffiliation> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Taoism"}}, "entities": [{"URI": "http://dbpedia.org/resource/Hong_Kong_Taoist_Association_Tang_Hin_Memorial_Secondary_School", "surface form": "Hong Kong Taoist Association Tang Hin Memorial Secondary School"}], "relations": [{"URI": "http://dbpedia.org/property/religiousAffiliation", "surface form": "religious affiliation"}]}, {"id": "1960", "question": [{"language": "en", "string": "Which royal people are buried in Rome?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/placeOfBurial> <http://dbpedia.org/resource/Rome> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Royalty>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rory_O'Donnell,_1st_Earl_of_Tyrconnell"}}, "entities": [{"URI": "http://dbpedia.org/resource/Rome", "surface form": "Rome"}], "relations": [{"URI": "http://dbpedia.org/property/placeOfBurial", "surface form": "buried"}]}, {"id": "1961", "question": [{"language": "en", "string": "What artist was associated closely with the bare necessities and rock a doodle?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/The_Bare_Necessities> <http://dbpedia.org/ontology/artist> ?uri. <http://dbpedia.org/resource/Rock-a-Doodle> <http://dbpedia.org/ontology/starring> ?uri} "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Phil_Harris"}}, "entities": [], "relations": [{"URI": "http://dbpedia.org/ontology/artist", "surface form": "artist"}, {"URI": "http://dbpedia.org/ontology/associate", "surface form": "associated"}, {"URI": "http://dbpedia.org/ontology/block", "surface form": "closely"}, {"URI": "http://dbpedia.org/ontology/supplies", "surface form": "bare necessities"}, {"URI": "http://dbpedia.org/ontology/strength", "surface form": "rock"}, {"URI": "http://dbpedia.org/ontology/capital", "surface form": "doodle"}]}, {"id": "1962", "question": [{"language": "en", "string": "Which parent company of the Cornell University Press is also the alma mater of the Mario Garca Menocal?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Cornell_University_Press> <http://dbpedia.org/ontology/parentCompany> ?uri. <http://dbpedia.org/resource/Mario_Garc\u00eda_Menocal> <http://dbpedia.org/ontology/almaMater> ?uri} "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cornell_University"}}, "entities": [{"URI": "http://dbpedia.org/resource/Cornell_University_Press", "surface form": "Cornell University Press"}, {"URI": "http://dbpedia.org/resource/Mario_Garc\u00eda_Menocal", "surface form": "Mario Garca Menocal"}], "relations": [{"URI": "http://dbpedia.org/property/parent", "surface form": "parent company"}, {"URI": "http://dbpedia.org/ontology/almaMater", "surface form": "alma mater"}]}, {"id": "1963", "question": [{"language": "en", "string": "Which religions are followed by people in England?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/residence> <http://dbpedia.org/resource/England> . ?x <http://dbpedia.org/property/religion> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Person>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Roman_Catholic"}}, "entities": [{"URI": "http://dbpedia.org/resource/England", "surface form": "England"}], "relations": [{"URI": "http://dbpedia.org/ontology/religion", "surface form": "religions"}]}, {"id": "1964", "question": [{"language": "en", "string": "Where was MacKenzie Miller born?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/MacKenzie_Miller> <http://dbpedia.org/property/birthPlace> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Versailles,_Kentucky"}}, "entities": [{"URI": "http://dbpedia.org/resource/MacKenzie_Miller", "surface form": "MacKenzie Miller"}], "relations": [{"URI": "http://dbpedia.org/ontology/birthPlace", "surface form": "born"}]}, {"id": "1965", "question": [{"language": "en", "string": "What company involved in the development of Sherlock did Arthur Levinson work for?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Arthur_D._Levinson> <http://dbpedia.org/ontology/occupation> ?uri. <http://dbpedia.org/resource/Sherlock_(software)> <http://dbpedia.org/ontology/developer> ?uri} "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Apple_Inc."}}, "entities": [{"URI": "http://dbpedia.org/resource/Arthur_D._Levinson", "surface form": "Arthur Levinson"}, {"URI": "http://dbpedia.org/resource/Sherlock_(software)", "surface form": "Sherlock"}], "relations": [{"URI": "http://dbpedia.org/ontology/occupation", "surface form": "work for"}, {"URI": "http://dbpedia.org/ontology/developer", "surface form": "development"}]}, {"id": "1966", "question": [{"language": "en", "string": "Who was the president during the time the opponent of John Hospers was in the office?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/opponent> <http://dbpedia.org/resource/John_Hospers> . ?x <http://dbpedia.org/ontology/incumbent> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Richard_Nixon"}}, "entities": [{"URI": "http://dbpedia.org/resource/John_Hospers", "surface form": "John Hospers"}], "relations": [{"URI": "http://dbpedia.org/ontology/president", "surface form": "president"}, {"URI": "http://dbpedia.org/ontology/time", "surface form": "time"}, {"URI": "http://dbpedia.org/ontology/opponent", "surface form": "opponent"}, {"URI": "http://dbpedia.org/ontology/office", "surface form": "office"}]}, {"id": "1967", "question": [{"language": "en", "string": "What is the birth location of the pope who was canonized by Agatha of Sicily?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Agatha_of_Sicily> <http://dbpedia.org/ontology/canonizedBy> ?x . ?x <http://dbpedia.org/property/birthPlace> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Pope>}"}, "answers": {"uri": {"type": "literal", "xml:lang": "en", "value": "Rome, Eastern Roman Empire"}}, "entities": [{"URI": "http://dbpedia.org/resource/Agatha_of_Sicily", "surface form": "Agatha of Sicily"}], "relations": [{"URI": "http://dbpedia.org/ontology/origin", "surface form": "birth location"}, {"URI": "http://dbpedia.org/ontology/canonizedBy", "surface form": "canonized"}]}, {"id": "1968", "question": [{"language": "en", "string": "Which set of researchers won the Gold Medal of the Royal Astronomical Society award?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/prizes> <http://dbpedia.org/resource/Gold_Medal_of_the_Royal_Astronomical_Society> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Scientist>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Walter_Sydney_Adams"}}, "entities": [{"URI": "http://dbpedia.org/resource/Royal_Astronomical_Society", "surface form": "Gold Medal of the Royal Astronomical Society award"}], "relations": [{"URI": "http://dbpedia.org/ontology/type", "surface form": "set"}]}, {"id": "1969", "question": [{"language": "en", "string": "List the members of Skull Gang?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Skull_Gang> <http://dbpedia.org/ontology/bandMember> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Juelz_Santana"}}, "entities": [{"URI": "http://dbpedia.org/resource/Skull_Gang", "surface form": "Skull Gang"}], "relations": [{"URI": "http://dbpedia.org/ontology/bandMember", "surface form": "members"}]}, {"id": "1970", "question": [{"language": "en", "string": "Which destination of the Novair International Airway is the source origin of Spaghetti squash ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Novair_International_Airways> <http://dbpedia.org/ontology/destination> ?uri. <http://dbpedia.org/resource/Spaghetti_squash> <http://dbpedia.org/ontology/origin> ?uri} "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/North_America"}}, "entities": [{"URI": "http://dbpedia.org/resource/Novair_International_Airways", "surface form": "Novair International Airway"}, {"URI": "http://dbpedia.org/resource/Spaghetti_squash", "surface form": "Spaghetti squash"}], "relations": [{"URI": "http://dbpedia.org/ontology/destination", "surface form": "destination"}, {"URI": "http://dbpedia.org/ontology/origin", "surface form": "origin"}]}, {"id": "1971", "question": [{"language": "en", "string": "Which animator of Tommy Tucker's Tooth is also the film director of Alice's Wonderland ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Alice's_Wonderland> <http://dbpedia.org/ontology/director> ?uri. <http://dbpedia.org/resource/Tommy_Tucker's_Tooth> <http://dbpedia.org/property/animator> ?uri} "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Walt_Disney"}}, "entities": [{"URI": "http://dbpedia.org/resource/Alice's_Wonderland", "surface form": "Alice's Wonderland"}, {"URI": "http://dbpedia.org/resource/Tommy_Tucker's_Tooth", "surface form": "Tommy Tucker's Tooth"}], "relations": [{"URI": "http://dbpedia.org/ontology/animator", "surface form": "animator"}, {"URI": "http://dbpedia.org/property/director", "surface form": "film director"}]}, {"id": "1972", "question": [{"language": "en", "string": "What show has writing of Erik Jendresen and Graham Yost?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/writer> <http://dbpedia.org/resource/Erik_Jendresen> . ?uri <http://dbpedia.org/property/writer> <http://dbpedia.org/resource/Graham_Yost> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Band_of_Brothers_(miniseries)"}}, "entities": [{"URI": "http://dbpedia.org/resource/Erik_Jendresen", "surface form": "Erik Jendresen"}, {"URI": "http://dbpedia.org/resource/Graham_Yost", "surface form": "Graham Yost"}], "relations": [{"URI": "http://dbpedia.org/ontology/show", "surface form": "show"}, {"URI": "http://dbpedia.org/ontology/language", "surface form": "writing"}]}, {"id": "1973", "question": [{"language": "en", "string": "Name the movies in which music is give by Laurie Johnson and edited by Anthony Harvey ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/music> <http://dbpedia.org/resource/Laurie_Johnson> . ?uri <http://dbpedia.org/ontology/editing> <http://dbpedia.org/resource/Anthony_Harvey> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dr._Strangelove"}}, "entities": [{"URI": "http://dbpedia.org/resource/Laurie_Johnson", "surface form": "Laurie Johnson"}, {"URI": "http://dbpedia.org/resource/Anthony_Harvey", "surface form": "Anthony Harvey"}], "relations": [{"URI": "http://dbpedia.org/property/name", "surface form": "name"}, {"URI": "http://dbpedia.org/ontology/film", "surface form": "movies"}, {"URI": "http://dbpedia.org/ontology/musicComposer", "surface form": "music"}, {"URI": "http://dbpedia.org/ontology/editor", "surface form": "edited"}]}, {"id": "1974", "question": [{"language": "en", "string": "Give me the places where people who worked in Church of England died in ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/occupation> <http://dbpedia.org/resource/Church_of_England> . ?x <http://dbpedia.org/ontology/deathPlace> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Scarborough,_North_Yorkshire"}}, "entities": [{"URI": "http://dbpedia.org/resource/Church_of_England", "surface form": "Church of England"}], "relations": [{"URI": "http://dbpedia.org/ontology/occupation", "surface form": "work"}, {"URI": "http://dbpedia.org/ontology/deathPlace", "surface form": "died in"}]}, {"id": "1975", "question": [{"language": "en", "string": "Who is the producer of the song which is the previous work of He's a Liar ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/He's_a_Liar> <http://dbpedia.org/ontology/previousWork> ?x . ?x <http://dbpedia.org/ontology/producer> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Song>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Albhy_Galuten"}}, "entities": [{"URI": "http://dbpedia.org/resource/He's_a_Liar", "surface form": "He's a Liar"}], "relations": [{"URI": "http://dbpedia.org/ontology/producer", "surface form": "producer"}, {"URI": "http://dbpedia.org/ontology/anthem", "surface form": "song"}, {"URI": "http://dbpedia.org/ontology/previousWork", "surface form": "previous work"}]}, {"id": "1976", "question": [{"language": "en", "string": "How many universities are located in a country led by Olemic Thommessen?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/leaderName> <http://dbpedia.org/resource/Olemic_Thommessen> . ?uri <http://dbpedia.org/ontology/country> ?x . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/University>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/Universities_South_Africa", "surface form": "universities"}, {"URI": "http://dbpedia.org/resource/Olemic_Thommessen", "surface form": "Olemic Thommessen"}], "relations": [{"URI": "http://dbpedia.org/ontology/position", "surface form": "located"}, {"URI": "http://dbpedia.org/ontology/country", "surface form": "country"}, {"URI": "http://dbpedia.org/ontology/license", "surface form": "led"}]}, {"id": "1977", "question": [{"language": "en", "string": "where are renaissance centers located?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Renaissance_Center> <http://dbpedia.org/property/address> ?uri } "}, "answers": {"uri": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "400"}}, "entities": [{"URI": "http://dbpedia.org/resource/Renaissance_Center", "surface form": "renaissance centers"}], "relations": [{"URI": "http://dbpedia.org/ontology/address", "surface form": "located"}]}, {"id": "1978", "question": [{"language": "en", "string": "Which television shows have been produced by Erik Bork?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/producer> <http://dbpedia.org/resource/Erik_Bork> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/UC:_Undercover"}}, "entities": [{"URI": "http://dbpedia.org/resource/Erik_Bork", "surface form": "Erik Bork"}], "relations": [{"URI": "http://dbpedia.org/ontology/producer", "surface form": "produced"}]}, {"id": "1979", "question": [{"language": "en", "string": "What are the gadgets whose manufacturing company is founded by Terry Gou?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/founder> <http://dbpedia.org/resource/Terry_Gou> . ?uri <http://dbpedia.org/ontology/manufacturer> ?x . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Device>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Amazon_Fire_TV"}}, "entities": [{"URI": "http://dbpedia.org/resource/Terry_Gou", "surface form": "Terry Gou"}], "relations": [{"URI": "http://dbpedia.org/ontology/equipment", "surface form": "gadgets"}, {"URI": "http://dbpedia.org/ontology/industry", "surface form": "manufacturing"}, {"URI": "http://dbpedia.org/ontology/company", "surface form": "company"}, {"URI": "http://dbpedia.org/property/founder", "surface form": "founded"}]}, {"id": "1980", "question": [{"language": "en", "string": "What party are Siddharta Shankar Ray and Kamla Beniwal from?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Siddhartha_Shankar_Ray> <http://dbpedia.org/ontology/party> ?uri. <http://dbpedia.org/resource/Kamla_Beniwal> <http://dbpedia.org/property/party> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Indian_National_Congress"}}, "entities": [{"URI": "http://dbpedia.org/resource/Siddhartha_Shankar_Ray", "surface form": "Siddharta Shankar Ray"}, {"URI": "http://dbpedia.org/resource/Kamla_Beniwal", "surface form": "Kamla Beniwal"}], "relations": [{"URI": "http://dbpedia.org/ontology/party", "surface form": "party"}]}, {"id": "1981", "question": [{"language": "en", "string": "How many books are there whose author's tomb is in Madrid?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/restingPlace> <http://dbpedia.org/resource/Madrid> . ?uri <http://dbpedia.org/ontology/author> ?x . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Book>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "4"}}, "entities": [{"URI": "http://dbpedia.org/resource/The_Tomb_(2007_film)", "surface form": " tomb"}, {"URI": "http://dbpedia.org/resource/Madrid", "surface form": "Madrid"}], "relations": [{"URI": "http://dbpedia.org/ontology/title", "surface form": "books"}, {"URI": "http://dbpedia.org/ontology/author", "surface form": "author"}]}, {"id": "1982", "question": [{"language": "en", "string": "What are the television shows whose writers did notable work for Band of Brothers ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/notableWork> <http://dbpedia.org/resource/Band_of_Brothers_(miniseries)> . ?uri <http://dbpedia.org/property/writer> ?x . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Killing_Lincoln_(film)"}}, "entities": [{"URI": "http://dbpedia.org/resource/Band_of_Brothers_(miniseries)", "surface form": "Band of Brothers"}], "relations": [{"URI": "http://dbpedia.org/ontology/televisionSeries", "surface form": "television shows"}, {"URI": "http://dbpedia.org/ontology/composer", "surface form": "writers"}, {"URI": "http://dbpedia.org/ontology/notableWork", "surface form": "notable work"}]}, {"id": "1983", "question": [{"language": "en", "string": "To how many different species does the members of the Animal Kingdom belong?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/kingdom> <http://dbpedia.org/resource/Animal> . ?x <http://dbpedia.org/ontology/species> ?uri . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Species>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "70"}}, "entities": [{"URI": "http://dbpedia.org/resource/Animal", "surface form": "Animal Kingdom"}], "relations": [{"URI": "http://dbpedia.org/ontology/species", "surface form": "species"}, {"URI": "http://dbpedia.org/ontology/part", "surface form": "members"}, {"URI": "http://dbpedia.org/ontology/date", "surface form": "belong"}]}, {"id": "1984", "question": [{"language": "en", "string": "What water bodies are nearest to Helsinki city?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/nearestCity> <http://dbpedia.org/resource/Helsinki> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/BodyOfWater>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Baltic_Sea"}}, "entities": [{"URI": "http://dbpedia.org/resource/Helsinki", "surface form": "Helsinki city"}], "relations": [{"URI": "http://dbpedia.org/ontology/nearestCity", "surface form": "nearest city"}, {"URI": "http://dbpedia.org/ontology/BodyOfWater", "surface form": "water"}]}, {"id": "1985", "question": [{"language": "en", "string": "Which relative of ralf schumacher is a famous formula one racer?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/relatives> <http://dbpedia.org/resource/Ralf_Schumacher> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/FormulaOneRacer>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Michael_Schumacher"}}, "entities": [{"URI": "http://dbpedia.org/resource/Ralf_Schumacher", "surface form": "Ralf schumacher"}], "relations": [{"URI": "http://dbpedia.org/property/relatives", "surface form": "relative"}, {"URI": "http://dbpedia.org/ontology/FormulaOneRacer", "surface form": "formula one racer"}]}, {"id": "1986", "question": [{"language": "en", "string": "What country did the successor of William Ofori Atta swear his oath to?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/predecessor> <http://dbpedia.org/resource/William_Ofori_Atta> . ?x <http://dbpedia.org/property/allegiance> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ghana"}}, "entities": [{"URI": "http://dbpedia.org/resource/William_Ofori_Atta", "surface form": "William Ofori Atta"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": "country"}, {"URI": "http://dbpedia.org/ontology/successor", "surface form": "successor"}, {"URI": "http://dbpedia.org/ontology/state", "surface form": "swear"}, {"URI": "http://dbpedia.org/ontology/channel", "surface form": "oath"}]}, {"id": "1987", "question": [{"language": "en", "string": "What is the prize awarded to Bruce Beutler ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Bruce_Beutler> <http://dbpedia.org/ontology/award> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nobel_Prize_in_Physiology_or_Medicine"}}, "entities": [{"URI": "http://dbpedia.org/resource/Bruce_Beutler", "surface form": "Bruce Beutler"}], "relations": [{"URI": "http://dbpedia.org/ontology/award", "surface form": "prize"}, {"URI": "http://dbpedia.org/ontology/award", "surface form": "awarded"}]}, {"id": "1988", "question": [{"language": "en", "string": "To which books Thomas Egerton, an editor?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/publisher> <http://dbpedia.org/resource/Thomas_Egerton_(publisher)> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Book>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sense_and_Sensibility"}}, "entities": [{"URI": "http://dbpedia.org/resource/Thomas_Egerton_(publisher)", "surface form": "Thomas Egerton,"}], "relations": [{"URI": "http://dbpedia.org/ontology/publisher", "surface form": "editor"}]}, {"id": "1989", "question": [{"language": "en", "string": "Where did Marvo originate?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Mavro> <http://dbpedia.org/ontology/origin> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cyprus"}}, "entities": [{"URI": "http://dbpedia.org/resource/Mavro", "surface form": "Marvo"}], "relations": [{"URI": "http://dbpedia.org/ontology/origin", "surface form": "origin"}]}, {"id": "1990", "question": [{"language": "en", "string": "Who all have been a commander during the battles of Ohio?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/place> <http://dbpedia.org/resource/Ohio> . ?x <http://dbpedia.org/ontology/commander> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/MilitaryConflict>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/George_Croghan_(soldier)"}}, "entities": [{"URI": "http://dbpedia.org/resource/Ohio", "surface form": "Ohio"}], "relations": [{"URI": "http://dbpedia.org/ontology/commander", "surface form": "commander"}, {"URI": "http://dbpedia.org/ontology/battle", "surface form": "battles"}]}, {"id": "1991", "question": [{"language": "en", "string": "What is the appliance build jointly by Sony and Asus?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/manufacturer> <http://dbpedia.org/resource/Sony> . ?uri <http://dbpedia.org/ontology/manufacturer> <http://dbpedia.org/resource/Asus> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/InformationAppliance>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/PlayStation_3"}}, "entities": [{"URI": "http://dbpedia.org/resource/Sony", "surface form": "Sony and Asus"}], "relations": [{"URI": "http://dbpedia.org/property/instrument", "surface form": "appliance"}, {"URI": "http://dbpedia.org/ontology/order", "surface form": "build"}, {"URI": "http://dbpedia.org/ontology/jointCommunity", "surface form": "jointly"}]}, {"id": "1992", "question": [{"language": "en", "string": "How many groups speak the English Language?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE {?uri <http://dbpedia.org/property/languages> <http://dbpedia.org/resource/English_language> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/EthnicGroup>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "167"}}, "entities": [{"URI": "http://dbpedia.org/resource/English_language", "surface form": "English Language"}], "relations": [{"URI": "http://dbpedia.org/property/languages", "surface form": "language"}, {"URI": "http://dbpedia.org/ontology/EthnicGroup", "surface form": "groups"}]}, {"id": "1993", "question": [{"language": "en", "string": "What was founded by Congress of Industrial Organizations ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Congress_of_Industrial_Organizations> <http://dbpedia.org/property/founded> ?uri } "}, "answers": {"uri": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#date", "value": "1935-11-09"}}, "entities": [{"URI": "http://dbpedia.org/resource/Congress_of_Industrial_Organizations", "surface form": "Congress of Industrial Organizations"}], "relations": [{"URI": "http://dbpedia.org/ontology/leader", "surface form": "founded"}]}, {"id": "1994", "question": [{"language": "en", "string": "Which current players once played for Toronto argonauts?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/formerTeam> <http://dbpedia.org/resource/Toronto_Argonauts> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/AmericanFootballPlayer>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alphonso_Hodge"}}, "entities": [{"URI": "http://dbpedia.org/resource/Toronto_Argonauts", "surface form": "Toronto argonauts"}], "relations": [{"URI": "http://dbpedia.org/ontology/formerTeam", "surface form": "played"}, {"URI": "http://dbpedia.org/ontology/AmericanFootballPlayer", "surface form": "players"}]}, {"id": "1995", "question": [{"language": "en", "string": "Give me a count of movies distributed by Warner Bros?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE {?uri <http://dbpedia.org/property/distributor> <http://dbpedia.org/resource/Warner_Bros.> . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "1428"}}, "entities": [{"URI": "http://dbpedia.org/resource/Warner_Bros.", "surface form": "Warner Bros"}], "relations": [{"URI": "http://dbpedia.org/ontology/type", "surface form": "count"}, {"URI": "http://dbpedia.org/ontology/film", "surface form": "movies"}, {"URI": "http://dbpedia.org/property/distributor", "surface form": "distributed"}]}, {"id": "1996", "question": [{"language": "en", "string": "Which magazines were founded by ann Wenner ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/founder> <http://dbpedia.org/resource/Jann_Wenner> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Magazine>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Men's_Journal"}}, "entities": [{"URI": "http://dbpedia.org/resource/Jann_Wenner", "surface form": "ann Wenner"}], "relations": [{"URI": "http://dbpedia.org/ontology/founder", "surface form": "founded by"}, {"URI": "http://dbpedia.org/ontology/Magazine", "surface form": "magazine"}]}, {"id": "1997", "question": [{"language": "en", "string": "Who was the president at the time when the opponent of Benjamin Spock held office?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/opponent> <http://dbpedia.org/resource/Benjamin_Spock> . ?x <http://dbpedia.org/property/incumbent> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Richard_Nixon"}}, "entities": [{"URI": "http://dbpedia.org/resource/Benjamin_Spock", "surface form": "Benjamin Spock"}], "relations": [{"URI": "http://dbpedia.org/ontology/president", "surface form": "president"}, {"URI": "http://dbpedia.org/ontology/time", "surface form": "time"}, {"URI": "http://dbpedia.org/ontology/opponent", "surface form": "opponent"}, {"URI": "http://dbpedia.org/ontology/president", "surface form": "held"}, {"URI": "http://dbpedia.org/ontology/office", "surface form": "office"}]}, {"id": "1998", "question": [{"language": "en", "string": "List the shrines of the saint whose one of the shrine is Ponza ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/majorShrine> <http://dbpedia.org/resource/Pozna\u0144> . ?x <http://dbpedia.org/ontology/majorShrine> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Saint>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Poland"}}, "entities": [{"URI": "http://dbpedia.org/resource/Pozna\u0144", "surface form": ""}], "relations": [{"URI": "http://dbpedia.org/ontology/majorShrine", "surface form": "shrines"}, {"URI": "http://dbpedia.org/ontology/saint", "surface form": "saint"}, {"URI": "http://dbpedia.org/ontology/majorShrine", "surface form": "shrine"}]}, {"id": "1999", "question": [{"language": "en", "string": "Where is the headquarters of the company which runs the Metro Blue Line in minnesota?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Metro_Blue_Line_(Minnesota)> <http://dbpedia.org/property/operator> ?x . ?x <http://dbpedia.org/property/headquarters> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Organisation>}"}, "answers": {"uri": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "560"}}, "entities": [{"URI": "http://dbpedia.org/resource/Metro_Blue_Line_(Minnesota)", "surface form": "Metro Blue Line in Minnesota"}], "relations": [{"URI": "http://dbpedia.org/ontology/headquarter", "surface form": "headquarters"}, {"URI": "http://dbpedia.org/ontology/company", "surface form": "company"}, {"URI": "http://dbpedia.org/ontology/symbol", "surface form": "runs"}]}, {"id": "2000", "question": [{"language": "en", "string": "How many people are in the continental army?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE {?uri <http://dbpedia.org/ontology/militaryBranch> <http://dbpedia.org/resource/Continental_Army> . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "154"}}, "entities": [], "relations": [{"URI": "http://dbpedia.org/ontology/band", "surface form": "continental army"}]}, {"id": "2001", "question": [{"language": "en", "string": "What are the movies whose music is composed by Vangelis?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/musicComposer> <http://dbpedia.org/resource/Vangelis> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/De_Mantel_der_Liefde"}}, "entities": [{"URI": "http://dbpedia.org/resource/Vangelis", "surface form": "Vangelis"}], "relations": [{"URI": "http://dbpedia.org/ontology/musicComposer", "surface form": "composed"}, {"URI": "http://dbpedia.org/ontology/Film", "surface form": "movie"}]}, {"id": "2002", "question": [{"language": "en", "string": "In which areas can I find wine made of Vitis vinifera grapes?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/species> <http://dbpedia.org/resource/Vitis_vinifera> . ?x <http://dbpedia.org/ontology/wineRegion> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Grape>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tuscany"}}, "entities": [{"URI": "http://dbpedia.org/resource/I", "surface form": "I"}, {"URI": "http://dbpedia.org/resource/Kyoho_(grape)", "surface form": "Vitis vinifera grapes"}], "relations": [{"URI": "http://dbpedia.org/ontology/wineRegion", "surface form": "wine"}]}, {"id": "2003", "question": [{"language": "en", "string": "Who is the publisher of The Rolling Stone Album Guide ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/The_Rolling_Stone_Album_Guide> <http://dbpedia.org/ontology/publisher> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Random_House"}}, "entities": [{"URI": "http://dbpedia.org/resource/The_Rolling_Stone_Album_Guide", "surface form": "The Rolling Stone Album Guide"}], "relations": [{"URI": "http://dbpedia.org/ontology/publisher", "surface form": "publisher"}]}, {"id": "2004", "question": [{"language": "en", "string": "How many services does 21Vianet provide?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { <http://dbpedia.org/resource/21Vianet> <http://dbpedia.org/property/services> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "9"}}, "entities": [{"URI": "http://dbpedia.org/resource/21Vianet", "surface form": "21vianet"}], "relations": [{"URI": "http://dbpedia.org/property/services", "surface form": "services"}]}, {"id": "2005", "question": [{"language": "en", "string": "What are the former team of the american football players who played at gridiron football position ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/position> <http://dbpedia.org/resource/Tackle_(gridiron_football_position)> . ?x <http://dbpedia.org/ontology/formerTeam> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/AmericanFootballPlayer>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Green_Bay_Packers"}}, "entities": [{"URI": "http://dbpedia.org/resource/Les_Joueurs_de_football", "surface form": "american football players"}, {"URI": "http://dbpedia.org/resource/Canadian_football", "surface form": "gridiron football position"}], "relations": [{"URI": "http://dbpedia.org/ontology/formerTeam", "surface form": "former team"}, {"URI": "http://dbpedia.org/ontology/participant", "surface form": "played"}]}, {"id": "2006", "question": [{"language": "en", "string": "What are some rivers over which there is a box girder bridge?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/design> <http://dbpedia.org/resource/Box_girder_bridge> . ?x <http://dbpedia.org/property/crosses> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hackensack_River"}}, "entities": [{"URI": "http://dbpedia.org/resource/Box_girder_bridge", "surface form": "box girder bridge"}], "relations": [{"URI": "http://dbpedia.org/ontology/river", "surface form": "rivers"}]}, {"id": "2007", "question": [{"language": "en", "string": "Where is the lake located into which the Winnipeg River flows?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/outflow> <http://dbpedia.org/resource/Winnipeg_River> . ?x <http://dbpedia.org/property/location> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/North_America"}}, "entities": [{"URI": "http://dbpedia.org/resource/Winnipeg_River", "surface form": "Winnipeg River"}], "relations": [{"URI": "http://dbpedia.org/ontology/lake", "surface form": "lake"}, {"URI": "http://dbpedia.org/ontology/locatedInArea", "surface form": "located"}, {"URI": "http://dbpedia.org/ontology/outflow", "surface form": "flows"}]}, {"id": "2008", "question": [{"language": "en", "string": "Which municipality is neighbored by Cologny and Chne-Bougeries?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/neighboringMunicipalities> <http://dbpedia.org/resource/Cologny> . ?uri <http://dbpedia.org/property/neighboringMunicipalities> <http://dbpedia.org/resource/Ch\u00eane-Bougeries> . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vand\u0153uvres"}}, "entities": [{"URI": "http://dbpedia.org/resource/Cologny", "surface form": "Cologny and Chne-Bougeries"}], "relations": [{"URI": "http://dbpedia.org/ontology/municipality", "surface form": "municipality"}, {"URI": "http://dbpedia.org/property/neighbors", "surface form": "neighbored"}]}, {"id": "2009", "question": [{"language": "en", "string": "Who is the designer of Saleen S5S Raptor ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Saleen_S5S_Raptor> <http://dbpedia.org/property/designer> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Warren,_Michigan"}}, "entities": [{"URI": "http://dbpedia.org/resource/Saleen_S5S_Raptor", "surface form": "S5S"}, {"URI": "http://dbpedia.org/resource/Saleen_S5S_Raptor", "surface form": "Saleen Raptor"}], "relations": [{"URI": "http://dbpedia.org/ontology/designer", "surface form": "designer"}]}, {"id": "2010", "question": [{"language": "en", "string": "Name the newspaper owned by Schibsted and headquartered at Stockholm?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/owners> <http://dbpedia.org/resource/Schibsted> . ?uri <http://dbpedia.org/property/headquarters> <http://dbpedia.org/resource/Stockholm> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Newspaper>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Aftonbladet"}}, "entities": [{"URI": "http://dbpedia.org/resource/Schibsted", "surface form": "Schibsted"}, {"URI": "http://dbpedia.org/resource/Stockholm", "surface form": "Stockholm"}], "relations": [{"URI": "http://dbpedia.org/property/name", "surface form": "name"}, {"URI": "http://dbpedia.org/ontology/title", "surface form": "newspaper"}, {"URI": "http://dbpedia.org/ontology/owner", "surface form": "owned"}, {"URI": "http://dbpedia.org/ontology/headquarter", "surface form": "headquartered"}]}, {"id": "2011", "question": [{"language": "en", "string": "How many party are there of the office holders whose one of the party is Janata Dal ?"}], "query": {"sparql": " SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/otherParty> <http://dbpedia.org/resource/Janata_Dal> . ?x <http://dbpedia.org/ontology/otherParty> ?uri }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "5"}}, "entities": [{"URI": "http://dbpedia.org/resource/Janata_Dal", "surface form": "Janata Dal"}], "relations": [{"URI": "http://dbpedia.org/ontology/otherParty", "surface form": "party"}, {"URI": "http://dbpedia.org/ontology/otherParty", "surface form": "party"}]}, {"id": "2012", "question": [{"language": "en", "string": "Name the first driver of 1999 San Marino Grand Prix ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/1999_San_Marino_Grand_Prix> <http://dbpedia.org/ontology/firstDriver> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Michael_Schumacher"}}, "entities": [{"URI": "http://dbpedia.org/resource/1999_San_Marino_Grand_Prix", "surface form": "1999 San Marino Grand Prix"}], "relations": [{"URI": "http://dbpedia.org/ontology/firstDriver", "surface form": "first driver"}]}, {"id": "2013", "question": [{"language": "en", "string": "What is the scientist whose doctoral students are Erich Bagge and erban ieica?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/doctoralStudent> <http://dbpedia.org/resource/Erich_Bagge> . ?uri <http://dbpedia.org/ontology/doctoralStudent> <http://dbpedia.org/resource/\u0218erban_\u021ai\u021beica> . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Werner_Heisenberg"}}, "entities": [{"URI": "http://dbpedia.org/resource/Scientist", "surface form": "scientist"}, {"URI": "http://dbpedia.org/resource/Erich_Bagge", "surface form": "Erich Bagge"}, {"URI": "http://dbpedia.org/resource/R\u00f3bert_Erban", "surface form": "Erban ieica"}], "relations": [{"URI": "http://dbpedia.org/ontology/doctoralStudent", "surface form": "doctoral students"}]}, {"id": "2014", "question": [{"language": "en", "string": "Who battled under commander Egushawa in a conflict?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/commander> <http://dbpedia.org/resource/Egushawa> . ?x <http://dbpedia.org/property/combatant> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/MilitaryConflict>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Miami_people"}}, "entities": [{"URI": "http://dbpedia.org/resource/Moonbase_Commander", "surface form": "commander Egushawa"}], "relations": [{"URI": "http://dbpedia.org/ontology/battle", "surface form": "battled"}, {"URI": "http://dbpedia.org/ontology/division", "surface form": "conflict"}]}, {"id": "2015", "question": [{"language": "en", "string": "How many things have made different people living in Canada famous?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/nationality> <http://dbpedia.org/resource/Canadians> . ?x <http://dbpedia.org/ontology/knownFor> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "754"}}, "entities": [{"URI": "http://dbpedia.org/resource/Famous_for_being_famous", "surface form": "Canada famous"}], "relations": [{"URI": "http://dbpedia.org/ontology/occupation", "surface form": "living"}]}, {"id": "2016", "question": [{"language": "en", "string": "Which is the largest city of Union State ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Union_State> <http://dbpedia.org/property/largestCity> ?uri } "}, "answers": {"uri": {"type": "literal", "xml:lang": "en", "value": "Moscow"}}, "entities": [{"URI": "http://dbpedia.org/resource/Union_State", "surface form": "Union State"}], "relations": [{"URI": "http://dbpedia.org/ontology/largestCity", "surface form": "largest city"}]}, {"id": "2017", "question": [{"language": "en", "string": "Which university has a sports team member called Micheal Powell and also owns Syracuse University Press ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Michael_Powell_(lacrosse)> <http://dbpedia.org/ontology/team> ?uri. <http://dbpedia.org/resource/Syracuse_University_Press> <http://dbpedia.org/property/parent> ?uri} "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Syracuse_University"}}, "entities": [{"URI": "http://dbpedia.org/resource/Sports_Action_Team", "surface form": "sports team member"}, {"URI": "http://dbpedia.org/resource/Micheal_Williams", "surface form": "Micheal Powell"}, {"URI": "http://dbpedia.org/resource/Syracuse_University", "surface form": "Syracuse University Press"}], "relations": [{"URI": "http://dbpedia.org/ontology/university", "surface form": "university"}, {"URI": "http://dbpedia.org/property/nickname", "surface form": "called"}, {"URI": "http://dbpedia.org/ontology/languageFamily", "surface form": "owns"}]}, {"id": "2018", "question": [{"language": "en", "string": "Ryan Seacrest has been the presenter of how many things?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE {?uri <http://dbpedia.org/ontology/presenter> <http://dbpedia.org/resource/Ryan_Seacrest> . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "11"}}, "entities": [{"URI": "http://dbpedia.org/resource/Ryan_Seacrest", "surface form": "ryan Seacrest"}], "relations": [{"URI": "http://dbpedia.org/ontology/presenter", "surface form": "presenter"}]}, {"id": "2019", "question": [{"language": "en", "string": "Count the tenants of the stadiums designed by Populous?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/architect> <http://dbpedia.org/resource/Populous_(company)> . ?x <http://dbpedia.org/ontology/tenant> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "683"}}, "entities": [{"URI": "http://dbpedia.org/resource/Populous", "surface form": "Populous"}], "relations": [{"URI": "http://dbpedia.org/ontology/architect", "surface form": "designed"}, {"URI": "http://dbpedia.org/ontology/tenant", "surface form": "tenants"}]}, {"id": "2020", "question": [{"language": "en", "string": "Who all have been judges on CTV Network's shows?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/network> <http://dbpedia.org/resource/CTV_Television_Network> . ?x <http://dbpedia.org/property/judges> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alvin_Leung"}}, "entities": [{"URI": "http://dbpedia.org/resource/CTV_Television_Network", "surface form": "CTV Network's shows"}], "relations": [{"URI": "http://dbpedia.org/ontology/budget", "surface form": "judges"}, {"URI": "http://dbpedia.org/ontology/place", "surface form": " shows"}]}, {"id": "2021", "question": [{"language": "en", "string": "How many have former teams as Indianapolis Colts and Carolina Panthers?"}], "query": {"sparql": " SELECT DISTINCT COUNT(?uri) WHERE { ?uri <http://dbpedia.org/ontology/formerTeam> <http://dbpedia.org/resource/Indianapolis_Colts> . ?uri <http://dbpedia.org/ontology/formerTeam> <http://dbpedia.org/resource/Carolina_Panthers>} "}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "111"}}, "entities": [{"URI": "http://dbpedia.org/resource/Indianapolis_Colts", "surface form": "Indianapolis Colts"}, {"URI": "http://dbpedia.org/resource/Carolina_Panthers", "surface form": "Carolina Panthers"}], "relations": [{"URI": "http://dbpedia.org/ontology/retired", "surface form": "former teams"}]}, {"id": "2022", "question": [{"language": "en", "string": "What are some movies whose distributer's CEO is Ted Hartley?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/keyPeople> <http://dbpedia.org/resource/Ted_Hartley> . ?uri <http://dbpedia.org/property/distributor> ?x . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/All_in_a_Nutshell"}}, "entities": [{"URI": "http://dbpedia.org/resource/Ceo_(musician)", "surface form": "CEO"}, {"URI": "http://dbpedia.org/resource/Ted_Hartley", "surface form": "Ted Hartley"}], "relations": [{"URI": "http://dbpedia.org/ontology/film", "surface form": "movies"}, {"URI": "http://dbpedia.org/property/distributor", "surface form": "distributer"}]}, {"id": "2023", "question": [{"language": "en", "string": "List the Stanley Kubrick's movies which has music by Laurie Johnson ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/director> <http://dbpedia.org/resource/Stanley_Kubrick> . ?uri <http://dbpedia.org/property/music> <http://dbpedia.org/resource/Laurie_Johnson> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dr._Strangelove"}}, "entities": [{"URI": "http://dbpedia.org/resource/Stanley_Kubrick", "surface form": "Stanley Kubrick"}, {"URI": "http://dbpedia.org/resource/Laurie_Johnson", "surface form": "Laurie Johnson"}], "relations": [{"URI": "http://dbpedia.org/ontology/film", "surface form": " movies"}, {"URI": "http://dbpedia.org/ontology/musicComposer", "surface form": "music"}]}, {"id": "2024", "question": [{"language": "en", "string": "What are the type of Greenup County High School?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Greenup_County_High_School> <http://dbpedia.org/property/type> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rural"}}, "entities": [{"URI": "http://dbpedia.org/resource/Greenup_County_High_School", "surface form": "Greenup County High School"}], "relations": [{"URI": "http://dbpedia.org/ontology/type", "surface form": "type"}]}, {"id": "2025", "question": [{"language": "en", "string": "Where does the road starting from Madison, Wisconsin end?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/routeEnd> <http://dbpedia.org/resource/Madison,_Wisconsin> . ?x <http://dbpedia.org/ontology/routeStart> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Road>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Madison,_Wisconsin"}}, "entities": [{"URI": "http://dbpedia.org/resource/Madison,_Wisconsin", "surface form": "Madison, Wisconsin"}], "relations": [{"URI": "http://dbpedia.org/ontology/routeEnd", "surface form": "road end "}, {"URI": "http://dbpedia.org/ontology/routeStart", "surface form": "road starting "}]}, {"id": "2026", "question": [{"language": "en", "string": "To which label did The Producers and I pray on Christmas sign up?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/The_Producers_(2005_film)> <http://dbpedia.org/property/label> ?uri. <http://dbpedia.org/resource/I_Pray_on_Christmas> <http://dbpedia.org/property/label> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sony"}}, "entities": [{"URI": "http://dbpedia.org/resource/The_Producers", "surface form": "The Producers"}, {"URI": "http://dbpedia.org/resource/I", "surface form": "I"}, {"URI": "http://dbpedia.org/resource/Christmas_at_Camp_119", "surface form": "Christmas"}], "relations": [{"URI": "http://dbpedia.org/property/label", "surface form": "label"}, {"URI": "http://dbpedia.org/ontology/starring", "surface form": "pray"}, {"URI": "http://dbpedia.org/ontology/precursor", "surface form": "sign"}]}, {"id": "2027", "question": [{"language": "en", "string": "Colin Powell was the commander of which military conflict ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/commander> <http://dbpedia.org/resource/Colin_Powell> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/MilitaryConflict>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Air_engagements_of_the_Gulf_War"}}, "entities": [{"URI": "http://dbpedia.org/resource/Colin_Powell", "surface form": "Colin powell"}], "relations": [{"URI": "http://dbpedia.org/ontology/commander", "surface form": "commander"}, {"URI": "http://dbpedia.org/ontology/battle", "surface form": "military conflict"}]}, {"id": "2028", "question": [{"language": "en", "string": "How many corporations were founded in Texas?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE {?uri <http://dbpedia.org/ontology/foundationPlace> <http://dbpedia.org/resource/Texas> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Company>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "2"}}, "entities": [{"URI": "http://dbpedia.org/resource/Texas", "surface form": "Texas"}], "relations": [{"URI": "http://dbpedia.org/ontology/foundationPlace", "surface form": "founded"}]}, {"id": "2029", "question": [{"language": "en", "string": "What is the style of architecture of Shaheed Minar, Kolkata ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Shaheed_Minar,_Kolkata> <http://dbpedia.org/ontology/architecturalStyle> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ancient_Egyptian_architecture"}}, "entities": [{"URI": "http://dbpedia.org/resource/Shaheed_Minar,_Kolkata", "surface form": "Shaheed Minar, Kolkata"}], "relations": [{"URI": "http://dbpedia.org/ontology/type", "surface form": "style"}, {"URI": "http://dbpedia.org/ontology/architecturalStyle", "surface form": "architecture"}]}, {"id": "2030", "question": [{"language": "en", "string": "List all the houses of United States Congress ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/United_States_Congress> <http://dbpedia.org/property/houses> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/United_States_House_of_Representatives"}}, "entities": [{"URI": "http://dbpedia.org/resource/United_States_Congress", "surface form": "United States Congress"}], "relations": [{"URI": "http://dbpedia.org/property/houses", "surface form": "houses"}]}, {"id": "2031", "question": [{"language": "en", "string": "What companies are located in toronto?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/locationCity> <http://dbpedia.org/resource/Toronto> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Company>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alliance_Atlantis"}}, "entities": [{"URI": "http://dbpedia.org/resource/Companies_listed_on_the_New_York_Stock_Exchange_(J)", "surface form": "companies"}, {"URI": "http://dbpedia.org/resource/Toronto", "surface form": "toronto"}], "relations": [{"URI": "http://dbpedia.org/ontology/locationCity", "surface form": "located"}]}, {"id": "2032", "question": [{"language": "en", "string": "Name the appliance produced by Foxconn and its OS is provided by PlayStation 3 system software ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/manufacturer> <http://dbpedia.org/resource/Foxconn> . ?uri <http://dbpedia.org/property/os> <http://dbpedia.org/resource/PlayStation_3_system_software> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/InformationAppliance>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/PlayStation_3"}}, "entities": [{"URI": "http://dbpedia.org/resource/Foxconn", "surface form": "Foxconn"}, {"URI": "http://dbpedia.org/resource/PlayStation_3_system_software", "surface form": "PlayStation 3 system software"}], "relations": [{"URI": "http://dbpedia.org/property/name", "surface form": "name"}, {"URI": "http://dbpedia.org/property/alliance", "surface form": "appliance"}, {"URI": "http://dbpedia.org/ontology/manufacturer", "surface form": "produced"}]}, {"id": "2033", "question": [{"language": "en", "string": "Which teams participate in the football seasons headed by Patricia Amorim?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/chairman> <http://dbpedia.org/resource/Patr\u00edcia_Amorim> . ?x <http://dbpedia.org/property/name> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/SportsSeason>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Anderson_Santos_da_Vit\u00f3ria"}}, "entities": [{"URI": "http://dbpedia.org/resource/Celso_Amorim", "surface form": "Patricia Amorim"}], "relations": [{"URI": "http://dbpedia.org/ontology/club", "surface form": "teams"}, {"URI": "http://dbpedia.org/ontology/party", "surface form": "participate"}, {"URI": "http://dbpedia.org/ontology/trainer", "surface form": "football seasons"}, {"URI": "http://dbpedia.org/ontology/president", "surface form": "headed"}]}, {"id": "2034", "question": [{"language": "en", "string": "Name few companies founded in Texas?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/foundationPlace> <http://dbpedia.org/resource/Texas> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Company>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Are_You_Watching_This%3F!"}}, "entities": [{"URI": "http://dbpedia.org/resource/Companies_listed_on_the_New_York_Stock_Exchange_(J)", "surface form": "companies"}, {"URI": "http://dbpedia.org/resource/Texas", "surface form": "Texas"}], "relations": [{"URI": "http://dbpedia.org/ontology/foundationPlace", "surface form": "founded"}, {"URI": "http://dbpedia.org/ontology/Company", "surface form": "companies"}]}, {"id": "2035", "question": [{"language": "en", "string": "In which timezone does Khok Kwang lie?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Khok_Kwang> <http://dbpedia.org/ontology/timeZone> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Time_in_Thailand"}}, "entities": [{"URI": "http://dbpedia.org/resource/Khok_Kwang", "surface form": "Khok Kwang"}], "relations": [{"URI": "http://dbpedia.org/ontology/timeZone", "surface form": "timezone"}, {"URI": "http://dbpedia.org/ontology/position", "surface form": "lie"}]}, {"id": "2036", "question": [{"language": "en", "string": "How many awards have been received by graduates of University of Melbourne, Faculty of VCA & MCM?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/training> <http://dbpedia.org/resource/University_of_Melbourne_Faculty_of_VCA_and_MCM> . ?x <http://dbpedia.org/ontology/award> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/University_of_Melbourne_Faculty_of_VCA_and_MCM", "surface form": "University of Melbourne, Faculty of VCA & MCM"}], "relations": [{"URI": "http://dbpedia.org/ontology/endowment", "surface form": "awards"}, {"URI": "http://dbpedia.org/ontology/board", "surface form": "received"}, {"URI": "http://dbpedia.org/property/postgraduates", "surface form": "graduates"}]}, {"id": "2037", "question": [{"language": "en", "string": "Where are Aureus and Solidus used as currency?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/currency> <http://dbpedia.org/resource/Aureus> . ?uri <http://dbpedia.org/ontology/currency> <http://dbpedia.org/resource/Solidus_(coin)> . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/History_of_the_Roman_Empire"}}, "entities": [{"URI": "http://dbpedia.org/resource/Aureus", "surface form": "Aureus"}, {"URI": "http://dbpedia.org/resource/Solidus_(coin)", "surface form": "Solidus"}], "relations": [{"URI": "http://dbpedia.org/ontology/currency", "surface form": "currency"}]}, {"id": "2038", "question": [{"language": "en", "string": "Who are the opponents of Gervase Helwys?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Gervase_Helwys> <http://dbpedia.org/ontology/opponent> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Francis_Bacon"}}, "entities": [{"URI": "http://dbpedia.org/resource/Gervase_Helwys", "surface form": "Gervase Helwys"}], "relations": [{"URI": "http://dbpedia.org/ontology/opponent", "surface form": "opponents"}]}, {"id": "2039", "question": [{"language": "en", "string": "Which awards have been given to immunologists?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/fields> <http://dbpedia.org/resource/Immunology> . ?x <http://dbpedia.org/ontology/award> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Prize_of_the_Foundation_for_Polish_Science"}}, "entities": [{"URI": "http://dbpedia.org/resource/List_of_immunologists", "surface form": "Immunologists"}], "relations": [{"URI": "http://dbpedia.org/ontology/award", "surface form": "awards"}]}, {"id": "2040", "question": [{"language": "en", "string": "What are the mountains in the Sequoia National Park?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/locatedInArea> <http://dbpedia.org/resource/Sequoia_National_Park> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Mountain>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vandever_Mountain"}}, "entities": [{"URI": "http://dbpedia.org/resource/Sequoia_National_Park", "surface form": "Sequoia National Park"}], "relations": [{"URI": "http://dbpedia.org/ontology/elevation", "surface form": "mountains"}]}, {"id": "2041", "question": [{"language": "en", "string": "Name some books by Spanish speaking authors."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/language> <http://dbpedia.org/resource/Spanish_language> . ?uri <http://dbpedia.org/property/author> ?x . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Altazor"}}, "entities": [{"URI": "http://dbpedia.org/resource/Spain", "surface form": "Spanish speaking authors"}, {"URI": "http://dbpedia.org/resource/Roughly_Speaking", "surface form": "Spanish speaking authors"}], "relations": [{"URI": "http://dbpedia.org/property/name", "surface form": "name"}, {"URI": "http://dbpedia.org/ontology/volume", "surface form": "books"}, {"URI": "http://dbpedia.org/ontology/country", "surface form": ""}]}, {"id": "2042", "question": [{"language": "en", "string": "How many famous people are born in Long Island?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE {?uri <http://dbpedia.org/ontology/birthPlace> <http://dbpedia.org/resource/Long_Island> . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "341"}}, "entities": [{"URI": "http://dbpedia.org/resource/Long_Island", "surface form": "Long Island"}], "relations": [{"URI": "http://dbpedia.org/property/established", "surface form": "famous"}, {"URI": "http://dbpedia.org/ontology/birthPlace", "surface form": "born"}]}, {"id": "2043", "question": [{"language": "en", "string": "Name some sports played in institutions of Maharashtra?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/state> <http://dbpedia.org/resource/Maharashtra> . ?x <http://dbpedia.org/ontology/sport> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Association_football"}}, "entities": [{"URI": "http://dbpedia.org/resource/Maharashtra", "surface form": "Maharashtra"}], "relations": [{"URI": "http://dbpedia.org/property/state", "surface form": "in"}, {"URI": "http://dbpedia.org/ontology/sport", "surface form": "sport"}]}, {"id": "2044", "question": [{"language": "en", "string": "How many other genere are there of the radio stations whose one of the genre is Classic rock ?"}], "query": {"sparql": " SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/programmeFormat> <http://dbpedia.org/resource/Classic_rock> . ?x <http://dbpedia.org/ontology/programmeFormat> ?uri }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "708"}}, "entities": [{"URI": "http://dbpedia.org/resource/Classic_rock", "surface form": "Classic rock"}], "relations": [{"URI": "http://dbpedia.org/property/genre", "surface form": "genere"}, {"URI": "http://dbpedia.org/property/sisterStations", "surface form": "radio stations"}, {"URI": "http://dbpedia.org/ontology/genre", "surface form": "genre"}]}, {"id": "2045", "question": [{"language": "en", "string": "How many veterans are buried in the US?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE {?uri <http://dbpedia.org/ontology/restingPlace> <http://dbpedia.org/resource/United_States> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/MilitaryPerson>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "70"}}, "entities": [{"URI": "http://dbpedia.org/resource/Veterans_Memorial_Bridge_(Chattanooga)", "surface form": "veterans"}, {"URI": "http://dbpedia.org/resource/United_States", "surface form": "US"}], "relations": [{"URI": "http://dbpedia.org/ontology/restingPlace", "surface form": "buried"}]}, {"id": "2046", "question": [{"language": "en", "string": "Which team did Michael and Ryan Powell play for?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Michael_Powell_(lacrosse)> <http://dbpedia.org/ontology/team> ?uri. <http://dbpedia.org/resource/Ryan_Powell_(lacrosse)> <http://dbpedia.org/ontology/team> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Syracuse_University"}}, "entities": [{"URI": "http://dbpedia.org/resource/Michael_Roos_(ice_hockey)", "surface form": "Michael"}, {"URI": "http://dbpedia.org/resource/Ryan_Powell", "surface form": "Ryan Powell"}], "relations": [{"URI": "http://dbpedia.org/ontology/team", "surface form": "team"}, {"URI": "http://dbpedia.org/ontology/team", "surface form": "play"}]}, {"id": "2047", "question": [{"language": "en", "string": "What are the television shows whose network is Prime Time Entertainment Network?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/network> <http://dbpedia.org/resource/Prime_Time_Entertainment_Network> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pointman"}}, "entities": [{"URI": "http://dbpedia.org/resource/Prime_Time_Entertainment_Network", "surface form": "Prime Time Entertainment Network"}], "relations": [{"URI": "http://dbpedia.org/property/network", "surface form": "network"}, {"URI": "http://dbpedia.org/ontology/TelevisionShow", "surface form": "television show"}]}, {"id": "2048", "question": [{"language": "en", "string": "To which company is the service \"Nintendo eShop\" associated with?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/services> <http://dbpedia.org/resource/Nintendo_eShop> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Company>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nintendo"}}, "entities": [{"URI": "http://dbpedia.org/resource/Nintendo_eShop", "surface form": "Nintendo eShop"}], "relations": [{"URI": "http://dbpedia.org/property/services", "surface form": "service"}, {"URI": "http://dbpedia.org/ontology/Company", "surface form": "company"}]}, {"id": "2049", "question": [{"language": "en", "string": "Name the famous employee of open society foundations ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/employer> <http://dbpedia.org/resource/Open_Society_Foundations> . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Salil_Shetty"}}, "entities": [{"URI": "http://dbpedia.org/resource/Open_Society_Foundations", "surface form": "open society foundations"}], "relations": [{"URI": "http://dbpedia.org/ontology/name", "surface form": "name"}, {"URI": "http://dbpedia.org/ontology/established", "surface form": "famous employee"}, {"URI": "http://dbpedia.org/ontology/institution", "surface form": "society foundations"}]}, {"id": "2050", "question": [{"language": "en", "string": "who is the governer of New Castile?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/order> <http://dbpedia.org/resource/Governorate_of_New_Castile> } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Francisco_Pizarro"}}, "entities": [{"URI": "http://dbpedia.org/resource/New_Castile", "surface form": "New Castile"}], "relations": [{"URI": "http://dbpedia.org/ontology/employer", "surface form": "governer"}]}, {"id": "2051", "question": [{"language": "en", "string": "How many teams have someone playing at the defenceman position?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/position> <http://dbpedia.org/resource/Defenceman> . ?x <http://dbpedia.org/ontology/team> ?uri . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/SportsTeam>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "1372"}}, "entities": [], "relations": [{"URI": "http://dbpedia.org/ontology/numberOfTeams", "surface form": "teams"}, {"URI": "http://dbpedia.org/ontology/field", "surface form": "playing"}, {"URI": "http://dbpedia.org/ontology/rating", "surface form": "defenceman position"}]}, {"id": "2052", "question": [{"language": "en", "string": "List all the teams which have someone who played their first game for the Yankees?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/debutteam> <http://dbpedia.org/resource/New_York_Yankees> . ?x <http://dbpedia.org/ontology/team> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kiwoom_Heroes"}}, "entities": [{"URI": "http://dbpedia.org/resource/New_York_Yankees", "surface form": "the Yankees"}], "relations": [{"URI": "http://dbpedia.org/property/team", "surface form": "teams"}, {"URI": "http://dbpedia.org/ontology/participant", "surface form": "played"}, {"URI": "http://dbpedia.org/ontology/occupation", "surface form": "game"}]}, {"id": "2053", "question": [{"language": "en", "string": "Cricket is played by which countries' citizens?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/occupation> <http://dbpedia.org/resource/Cricket> . ?x <http://dbpedia.org/ontology/stateOfOrigin> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/United_Kingdom"}}, "entities": [{"URI": "http://dbpedia.org/resource/Countries_of_the_United_Kingdom", "surface form": "countries"}], "relations": [{"URI": "http://dbpedia.org/ontology/spike", "surface form": "cricket"}, {"URI": "http://dbpedia.org/ontology/portrayer", "surface form": "played"}, {"URI": "http://dbpedia.org/ontology/country", "surface form": " citizens"}]}, {"id": "2054", "question": [{"language": "en", "string": "Name some shows similar to the one whose theme song is made by Murray Gold."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/themeMusicComposer> <http://dbpedia.org/resource/Murray_Gold> . ?uri <http://dbpedia.org/ontology/related> ?x . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Sarah_Jane_Adventures"}}, "entities": [{"URI": "http://dbpedia.org/resource/Murray_Gold", "surface form": "Murray Gold"}], "relations": [{"URI": "http://dbpedia.org/property/name", "surface form": "name"}, {"URI": "http://dbpedia.org/ontology/place", "surface form": "shows"}, {"URI": "http://dbpedia.org/ontology/anthem", "surface form": "theme song"}]}, {"id": "2055", "question": [{"language": "en", "string": "Name the driver who was at pole in 1997 Canadian Grand Prix and also 1994 Spanish Grand Prix ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/1997_Canadian_Grand_Prix> <http://dbpedia.org/property/poleDriver> ?uri. <http://dbpedia.org/resource/1994_Spanish_Grand_Prix> <http://dbpedia.org/ontology/poleDriver> ?uri} "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Michael_Schumacher"}}, "entities": [{"URI": "http://dbpedia.org/resource/1997_Canadian_Grand_Prix", "surface form": "1997 Canadian Grand Prix"}, {"URI": "http://dbpedia.org/resource/1994_Spanish_Grand_Prix", "surface form": "1994 Spanish Grand Prix"}], "relations": [{"URI": "http://dbpedia.org/property/name", "surface form": "name"}, {"URI": "http://dbpedia.org/ontology/poleDriver", "surface form": "driver"}, {"URI": "http://dbpedia.org/ontology/poleDriverTeam", "surface form": "pole"}]}, {"id": "2056", "question": [{"language": "en", "string": "Name the narrators of the album which has been narrated by Alan Thicke ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/narrated> <http://dbpedia.org/resource/Alan_Thicke> . ?x <http://dbpedia.org/property/narrated> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alan_Thicke"}}, "entities": [{"URI": "http://dbpedia.org/resource/Alan_Thicke", "surface form": "Alan Thicke"}], "relations": [{"URI": "http://dbpedia.org/property/narrated", "surface form": "narrated"}, {"URI": "http://dbpedia.org/property/narrated", "surface form": "narrated"}]}, {"id": "2057", "question": [{"language": "en", "string": "Whose children died in North Bend, Ohio?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/deathPlace> <http://dbpedia.org/resource/North_Bend,_Ohio> . ?uri <http://dbpedia.org/ontology/child> ?x . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/John_Cleves_Symmes"}}, "entities": [{"URI": "http://dbpedia.org/resource/North_Bend,_Ohio", "surface form": "North Bend, Ohio"}], "relations": [{"URI": "http://dbpedia.org/ontology/languageFamily", "surface form": "children"}, {"URI": "http://dbpedia.org/property/deathPlace", "surface form": "died"}]}, {"id": "2058", "question": [{"language": "en", "string": "Name the presenter of Shirley Temple's Storybook ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Shirley_Temple's_Storybook> <http://dbpedia.org/property/presenter> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Shirley_Temple"}}, "entities": [{"URI": "http://dbpedia.org/resource/Shirley_Temple's_Storybook", "surface form": "Shirley Temple's Storybook"}], "relations": [{"URI": "http://dbpedia.org/property/name", "surface form": "name"}, {"URI": "http://dbpedia.org/ontology/presenter", "surface form": "presenter"}]}, {"id": "2059", "question": [{"language": "en", "string": "What is the place of birth of the stars of Auto Shankar ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Auto_Shankar_(film)> <http://dbpedia.org/property/starring> ?x . ?x <http://dbpedia.org/ontology/birthPlace> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Udupi_district"}}, "entities": [{"URI": "http://dbpedia.org/resource/Auto_Shankar_(film)", "surface form": "Auto Shankar"}], "relations": [{"URI": "http://dbpedia.org/property/starring", "surface form": "stars"}, {"URI": "http://dbpedia.org/ontology/birthPlace", "surface form": "place birth"}]}, {"id": "2060", "question": [{"language": "en", "string": "Name the television show created by CE Webber and also has actor named Companion?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/starring> <http://dbpedia.org/resource/Companion_(Doctor_Who)> . ?uri <http://dbpedia.org/ontology/creator> <http://dbpedia.org/resource/C._E._Webber> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Doctor_Who"}}, "entities": [{"URI": "http://dbpedia.org/resource/Companion_(Doctor_Who)", "surface form": "Companion"}, {"URI": "http://dbpedia.org/resource/C._E._Webber", "surface form": "CE Webber"}], "relations": [{"URI": "http://dbpedia.org/ontology/starring", "surface form": "created"}, {"URI": "http://dbpedia.org/ontology/creator", "surface form": "actor named"}]}, {"id": "2061", "question": [{"language": "en", "string": "How many awards have been awarded to people who are buried in Glendale, California?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/restingPlace> <http://dbpedia.org/resource/Glendale,_California> . ?x <http://dbpedia.org/ontology/award> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "8"}}, "entities": [{"URI": "http://dbpedia.org/resource/Glendale,_California", "surface form": "Glendale, California"}], "relations": [{"URI": "http://dbpedia.org/ontology/restingPlace", "surface form": "buried"}, {"URI": "http://dbpedia.org/ontology/award", "surface form": "awarded"}]}, {"id": "2062", "question": [{"language": "en", "string": "Count the number of tenants whose one of the tenant is Toronto Phantoms ?"}], "query": {"sparql": " SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/tenant> <http://dbpedia.org/resource/Toronto_Phantoms> . ?x <http://dbpedia.org/ontology/tenant> ?uri }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "30"}}, "entities": [{"URI": "http://dbpedia.org/resource/Toronto_Phantoms", "surface form": "Toronto Phantoms"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": "count"}, {"URI": "http://dbpedia.org/property/tenants", "surface form": "tenants"}, {"URI": "http://dbpedia.org/ontology/tenant", "surface form": "tenant"}]}, {"id": "2063", "question": [{"language": "en", "string": "In which war did the units garrisoned at Turin fight?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/garrison> <http://dbpedia.org/resource/Turin> . ?x <http://dbpedia.org/ontology/battle> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bosnia_and_Herzegovina"}}, "entities": [{"URI": "http://dbpedia.org/resource/Turin", "surface form": "Turin fight"}], "relations": [{"URI": "http://dbpedia.org/ontology/battle", "surface form": "war"}, {"URI": "http://dbpedia.org/ontology/team", "surface form": "units"}, {"URI": "http://dbpedia.org/ontology/garrison", "surface form": "garrisoned"}]}, {"id": "2064", "question": [{"language": "en", "string": "Which software uses GTK+ as programming language?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/programmingLanguage> <http://dbpedia.org/resource/GTK+> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Software>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/VIPS_(software)"}}, "entities": [{"URI": "http://dbpedia.org/resource/Software", "surface form": "software"}, {"URI": "http://dbpedia.org/resource/GTK+", "surface form": "GTK+"}], "relations": [{"URI": "http://dbpedia.org/property/programmingLanguage", "surface form": "programming language"}, {"URI": "http://dbpedia.org/ontology/Software", "surface form": "software"}]}, {"id": "2065", "question": [{"language": "en", "string": "Where is the birthplace of Ferrel Harris ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Ferrel_Harris> <http://dbpedia.org/property/birthplace> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Seale,_Alabama"}}, "entities": [{"URI": "http://dbpedia.org/resource/Ferrel_Harris", "surface form": "Ferrel Harris"}], "relations": [{"URI": "http://dbpedia.org/property/birthplace", "surface form": "birthplace"}]}, {"id": "2066", "question": [{"language": "en", "string": "How many scientists are known for the Manhatten Project?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE {?uri <http://dbpedia.org/property/knownFor> <http://dbpedia.org/resource/Manhattan_Project> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Scientist>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "8"}}, "entities": [{"URI": "http://dbpedia.org/resource/Manhattan_Project", "surface form": "Manhatten Project"}], "relations": [{"URI": "http://dbpedia.org/property/knownFor", "surface form": "known for"}, {"URI": "http://dbpedia.org/ontology/Scientist", "surface form": "scientist"}]}, {"id": "2067", "question": [{"language": "en", "string": "Name the sport league of Hampton Roads Rhinos ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Hampton_Roads_Rhinos> <http://dbpedia.org/property/league> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Hockey_League"}}, "entities": [{"URI": "http://dbpedia.org/resource/Hampton_Roads_Rhinos", "surface form": "Hampton Roads Rhinos"}], "relations": [{"URI": "http://dbpedia.org/property/name", "surface form": "name"}, {"URI": "http://dbpedia.org/property/league", "surface form": "sport league"}]}, {"id": "2068", "question": [{"language": "en", "string": "How many Thesaban towns are there?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE {?uri <http://dbpedia.org/property/settlementType> <http://dbpedia.org/resource/Thesaban> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Town>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "9"}}, "entities": [{"URI": "http://dbpedia.org/resource/Thesaban", "surface form": "Thesaban towns"}], "relations": []}, {"id": "2069", "question": [{"language": "en", "string": "Name the office holder with predecessor as Mark Latham and partner Tim Mathieson ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/predecessor> <http://dbpedia.org/resource/Mark_Latham> . ?uri <http://dbpedia.org/ontology/partner> <http://dbpedia.org/resource/Tim_Mathieson> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/OfficeHolder>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Julia_Gillard"}}, "entities": [{"URI": "http://dbpedia.org/resource/Mark_Latham", "surface form": "Mark Latham"}, {"URI": "http://dbpedia.org/resource/Tim_Mathieson", "surface form": "partner Tim Mathieson"}], "relations": [{"URI": "http://dbpedia.org/property/name", "surface form": "name"}, {"URI": "http://dbpedia.org/property/incumbent", "surface form": "office holder"}, {"URI": "http://dbpedia.org/ontology/predecessor", "surface form": "predecessor"}]}, {"id": "2070", "question": [{"language": "en", "string": "Which newspaper owned by Schibsted is published in Swedish ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/language> <http://dbpedia.org/resource/Swedish_language> . ?uri <http://dbpedia.org/property/owners> <http://dbpedia.org/resource/Schibsted> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Newspaper>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Aftonbladet"}}, "entities": [{"URI": "http://dbpedia.org/resource/Swedish_language", "surface form": "swedish"}, {"URI": "http://dbpedia.org/resource/Schibsted", "surface form": "Schibsted"}], "relations": [{"URI": "http://dbpedia.org/property/newspaper", "surface form": "newspaper"}, {"URI": "http://dbpedia.org/ontology/owner", "surface form": "owned"}, {"URI": "http://dbpedia.org/ontology/author", "surface form": "published"}, {"URI": "http://dbpedia.org/ontology/country", "surface form": ""}]}, {"id": "2071", "question": [{"language": "en", "string": "How many other people are in a band with Robert de Niro?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/currentMembers> <http://dbpedia.org/resource/Robert_De_Niro> . ?x <http://dbpedia.org/ontology/bandMember> ?uri . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Person>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/Robert_De_Niro", "surface form": "Robert de Niro"}], "relations": [{"URI": "http://dbpedia.org/ontology/band", "surface form": "band"}]}, {"id": "2072", "question": [{"language": "en", "string": "List the software which uses Microsoft Windows as their operating system ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/operatingSystem> <http://dbpedia.org/resource/Microsoft_Windows> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Software>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/AllJoyn"}}, "entities": [{"URI": "http://dbpedia.org/resource/Software", "surface form": "software"}, {"URI": "http://dbpedia.org/resource/Microsoft_Windows", "surface form": "Microsoft Windows"}], "relations": [{"URI": "http://dbpedia.org/ontology/operatingSystem", "surface form": "operating system"}, {"URI": "http://dbpedia.org/ontology/Software", "surface form": "software"}]}, {"id": "2073", "question": [{"language": "en", "string": "What all has been created by Jerry Siegel?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/creators> <http://dbpedia.org/resource/Jerry_Siegel> } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alternative_versions_of_Superman"}}, "entities": [{"URI": "http://dbpedia.org/resource/Jerry_Siegel", "surface form": "Jerry Siegel"}], "relations": [{"URI": "http://dbpedia.org/property/creators", "surface form": "created by"}]}, {"id": "2074", "question": [{"language": "en", "string": "What is the common party of the Manthena Venkata Raju and B. Shiva Rao?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Manthena_Venkata_Raju> <http://dbpedia.org/ontology/party> ?uri. <http://dbpedia.org/resource/B._Shiva_Rao> <http://dbpedia.org/property/party> ?uri} "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Indian_National_Congress"}}, "entities": [{"URI": "http://dbpedia.org/resource/Manthena_Venkata_Raju", "surface form": "Manthena Venkata Raju"}, {"URI": "http://dbpedia.org/resource/B", "surface form": "B"}, {"URI": "http://dbpedia.org/resource/B._Shiva_Rao", "surface form": "Shiva Rao"}], "relations": [{"URI": "http://dbpedia.org/ontology/party", "surface form": "common party"}]}, {"id": "2075", "question": [{"language": "en", "string": "List the country of Tokaj wine region ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Tokaj_wine_region> <http://dbpedia.org/property/country> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Slovakia"}}, "entities": [{"URI": "http://dbpedia.org/resource/Tokaj_wine_region", "surface form": "Tokaj wine region"}], "relations": [{"URI": "http://dbpedia.org/property/country", "surface form": "country"}]}, {"id": "2076", "question": [{"language": "en", "string": "Who all were venerated in Islam?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE {?uri <http://dbpedia.org/ontology/veneratedIn> <http://dbpedia.org/resource/Islam> . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "76"}}, "entities": [{"URI": "http://dbpedia.org/resource/Islam", "surface form": "Islam"}], "relations": [{"URI": "http://dbpedia.org/ontology/veneratedIn", "surface form": "venerated"}]}, {"id": "2077", "question": [{"language": "en", "string": "How many items belong to the Science Fiction genre?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE {?uri <http://dbpedia.org/property/genre> <http://dbpedia.org/resource/Science_fiction> . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "5872"}}, "entities": [{"URI": "http://dbpedia.org/resource/Science_fiction", "surface form": "Science Fiction"}], "relations": [{"URI": "http://dbpedia.org/ontology/material", "surface form": "items"}, {"URI": "http://dbpedia.org/ontology/date", "surface form": "belong"}]}, {"id": "2078", "question": [{"language": "en", "string": "How many shows belong to the networks one of whose sister station is BBC News?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/sisterNames> <http://dbpedia.org/resource/BBC_News_(TV_channel)> . ?uri <http://dbpedia.org/ontology/network> ?x . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/BBC_News_(TV_channel)", "surface form": "BBC News"}], "relations": [{"URI": "http://dbpedia.org/ontology/place", "surface form": "shows"}, {"URI": "http://dbpedia.org/property/below", "surface form": "belong"}, {"URI": "http://dbpedia.org/property/network", "surface form": "networks"}, {"URI": "http://dbpedia.org/ontology/sisterStation", "surface form": "sister station"}]}, {"id": "2079", "question": [{"language": "en", "string": "What is the mascot of Galatasaray Handball Team ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Galatasaray_Handball_Team> <http://dbpedia.org/property/mascot> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lion"}}, "entities": [{"URI": "http://dbpedia.org/resource/Galatasaray_Handball_Team", "surface form": "Galatasaray Handball Team"}], "relations": [{"URI": "http://dbpedia.org/ontology/mascot", "surface form": "mascot"}]}, {"id": "2080", "question": [{"language": "en", "string": "Name some dishes made with flowering plants."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/division> <http://dbpedia.org/resource/Flowering_plant> . ?uri <http://dbpedia.org/ontology/ingredient> ?x . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Food>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pfeffern\u00fcsse"}}, "entities": [], "relations": [{"URI": "http://dbpedia.org/ontology/name", "surface form": "name"}, {"URI": "http://dbpedia.org/ontology/state", "surface form": "dishes"}, {"URI": "http://dbpedia.org/ontology/day", "surface form": "flowering"}, {"URI": "http://dbpedia.org/ontology/position", "surface form": "plants"}]}, {"id": "2081", "question": [{"language": "en", "string": "Whose artworks are in Sao Paulo Museum of Art?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/museum> <http://dbpedia.org/resource/S\u00e3o_Paulo_Museum_of_Art> . ?x <http://dbpedia.org/property/artist> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Artwork>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rembrandt"}}, "entities": [{"URI": "http://dbpedia.org/resource/S\u00e3o_Paulo_Museum_of_Art", "surface form": "Sao Paulo Museum of Art"}], "relations": []}, {"id": "2082", "question": [{"language": "en", "string": "Where was Ganefo hosted?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/GANEFO> <http://dbpedia.org/property/hostCity> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cambodia"}}, "entities": [{"URI": "http://dbpedia.org/resource/GANEFO", "surface form": "Ganefo"}], "relations": [{"URI": "http://dbpedia.org/property/hostCity", "surface form": "hosted"}]}, {"id": "2083", "question": [{"language": "en", "string": "Count everyone who was in a youthclub chaired by Josep Maria Bartomeu ?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/chairman> <http://dbpedia.org/resource/Josep_Maria_Bartomeu> . ?uri <http://dbpedia.org/property/youthclubs> ?x . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/Josep_Maria_Bartomeu", "surface form": "Josep Maria Bartomeu"}], "relations": [{"URI": "http://dbpedia.org/property/chairman", "surface form": "chaired"}, {"URI": "http://dbpedia.org/property/youthclubs", "surface form": "youthclub"}]}, {"id": "2084", "question": [{"language": "en", "string": "Where are ethnic group located which speak Nebraskan?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Nebraska> <http://dbpedia.org/ontology/language> ?x . ?x <http://dbpedia.org/property/region> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/EthnicGroup>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Georgia_(U.S._state)"}}, "entities": [{"URI": "http://dbpedia.org/resource/Nebraska", "surface form": "Nebraskan"}, {"URI": "http://dbpedia.org/resource/Nebraska", "surface form": "Nebraskan"}], "relations": [{"URI": "http://dbpedia.org/ontology/origin", "surface form": "ethnic"}, {"URI": "http://dbpedia.org/ontology/locatedInArea", "surface form": "located"}, {"URI": "http://dbpedia.org/ontology/language", "surface form": "speak"}, {"URI": "http://dbpedia.org/ontology/country", "surface form": ""}]}, {"id": "2085", "question": [{"language": "en", "string": "What is the largest city of the country which have an assembly of Plymouth Savoy?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Plymouth_Savoy> <http://dbpedia.org/ontology/assembly> ?x . ?x <http://dbpedia.org/ontology/largestCity> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Toronto"}}, "entities": [{"URI": "http://dbpedia.org/resource/Plymouth_Savoy", "surface form": "Plymouth Savoy"}], "relations": [{"URI": "http://dbpedia.org/ontology/assembly", "surface form": "assembly"}, {"URI": "http://dbpedia.org/ontology/largestCity", "surface form": "largest city"}]}, {"id": "2086", "question": [{"language": "en", "string": "What is the affiliation of Vanderbilt University Medical Center ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Vanderbilt_University_Medical_Center> <http://dbpedia.org/property/affiliation> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vanderbilt_University"}}, "entities": [{"URI": "http://dbpedia.org/resource/Vanderbilt_University_Medical_Center", "surface form": "Vanderbilt University Medical Center"}], "relations": [{"URI": "http://dbpedia.org/ontology/affiliation", "surface form": "affiliation"}]}, {"id": "2087", "question": [{"language": "en", "string": "How many scientist became famous for the battle of Occupation of Japan?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/battle> <http://dbpedia.org/resource/Occupation_of_Japan> . ?uri <http://dbpedia.org/property/knownFor> ?x . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Scientist>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/Scientist", "surface form": "scientist"}, {"URI": "http://dbpedia.org/resource/Occupation_of_Japan", "surface form": "Occupation of Japan"}], "relations": [{"URI": "http://dbpedia.org/ontology/established", "surface form": "famous"}, {"URI": "http://dbpedia.org/ontology/battle", "surface form": "battle"}]}, {"id": "2088", "question": [{"language": "en", "string": "Name the military conflict whose commander was Colin Powell and took place in israel ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/commander> <http://dbpedia.org/resource/Colin_Powell> . ?uri <http://dbpedia.org/ontology/place> <http://dbpedia.org/resource/Israel> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/MilitaryConflict>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gulf_War"}}, "entities": [{"URI": "http://dbpedia.org/resource/Colin_Powell", "surface form": "Colin Powell"}, {"URI": "http://dbpedia.org/resource/Israel", "surface form": "israel"}], "relations": [{"URI": "http://dbpedia.org/property/name", "surface form": "name"}, {"URI": "http://dbpedia.org/ontology/battle", "surface form": "military conflict"}, {"URI": "http://dbpedia.org/ontology/commander", "surface form": "commander"}, {"URI": "http://dbpedia.org/ontology/place", "surface form": "place"}]}, {"id": "2089", "question": [{"language": "en", "string": "How many sitcoms were produced by the company whose predecessor was the Desilu Productions"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/predecessor> <http://dbpedia.org/resource/Desilu_Productions> . ?uri <http://dbpedia.org/property/company> ?x . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "38"}}, "entities": [{"URI": "http://dbpedia.org/resource/Desilu_Productions", "surface form": "Desilu Productions"}], "relations": [{"URI": "http://dbpedia.org/ontology/series", "surface form": "sitcoms"}, {"URI": "http://dbpedia.org/ontology/author", "surface form": "produced"}, {"URI": "http://dbpedia.org/ontology/company", "surface form": "company"}, {"URI": "http://dbpedia.org/ontology/predecessor", "surface form": "predecessor"}]}, {"id": "2090", "question": [{"language": "en", "string": "Where is the assembly of Caterpillar 797 ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Caterpillar_797> <http://dbpedia.org/ontology/assembly> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Decatur,_Illinois"}}, "entities": [{"URI": "http://dbpedia.org/resource/Caterpillar_797", "surface form": "Caterpillar 797"}], "relations": [{"URI": "http://dbpedia.org/ontology/assembly", "surface form": "assembly"}]}, {"id": "2091", "question": [{"language": "en", "string": "Where did Goran Cengic die?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Goran_\u010cengi\u0107> <http://dbpedia.org/property/deathPlace> ?uri } "}, "answers": {"uri": {"type": "literal", "xml:lang": "en", "value": "Sarajevo, Bosnia and Herzegovina"}}, "entities": [{"URI": "http://dbpedia.org/resource/Goran_\u010cengi\u0107", "surface form": "Goran Cengic"}], "relations": [{"URI": "http://dbpedia.org/property/deathPlace", "surface form": "die"}]}, {"id": "2092", "question": [{"language": "en", "string": "What are the county seats of the region which operates the Boeing Field?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Boeing_Field> <http://dbpedia.org/ontology/operator> ?x . ?x <http://dbpedia.org/ontology/countySeat> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Region>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Seattle"}}, "entities": [{"URI": "http://dbpedia.org/resource/Boeing_Field", "surface form": "Boeing Field"}], "relations": [{"URI": "http://dbpedia.org/property/state", "surface form": "county seats"}, {"URI": "http://dbpedia.org/ontology/region", "surface form": "region"}, {"URI": "http://dbpedia.org/ontology/operator", "surface form": "operates"}]}, {"id": "2093", "question": [{"language": "en", "string": "What are the professions of Frederick Frelinghuysen (general) ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Frederick_Frelinghuysen_(general)> <http://dbpedia.org/property/occupation> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/General"}}, "entities": [{"URI": "http://dbpedia.org/resource/Frederick_Frelinghuysen_(general)", "surface form": "Frederick Frelinghuysen (general)"}], "relations": [{"URI": "http://dbpedia.org/ontology/occupation", "surface form": "professions"}]}, {"id": "2094", "question": [{"language": "en", "string": "Count the sports played at universities located in Urban Areas?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/campus> <http://dbpedia.org/resource/Urban_area> . ?x <http://dbpedia.org/ontology/sport> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/Urban_area", "surface form": "Urban Areas"}], "relations": [{"URI": "http://dbpedia.org/ontology/type", "surface form": "count"}, {"URI": "http://dbpedia.org/ontology/athletics", "surface form": "sports"}, {"URI": "http://dbpedia.org/ontology/portrayer", "surface form": "played"}, {"URI": "http://dbpedia.org/ontology/position", "surface form": "located"}]}, {"id": "2095", "question": [{"language": "en", "string": "Who was the narrator in the point?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/The_Point!> <http://dbpedia.org/property/narrated> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alan_Thicke"}}, "entities": [], "relations": [{"URI": "http://dbpedia.org/ontology/narrator", "surface form": "narrator"}]}, {"id": "2096", "question": [{"language": "en", "string": "List all the school of the rugby player whose one of the school is Michael House ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/school> <http://dbpedia.org/resource/Michaelhouse> . ?x <http://dbpedia.org/property/school> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/RugbyPlayer>}"}, "answers": {"uri": {"type": "literal", "xml:lang": "en", "value": "Michaelhouse, KwaZulu-Natal"}}, "entities": [{"URI": "http://dbpedia.org/resource/Michaelhouse", "surface form": "michael house"}], "relations": [{"URI": "http://dbpedia.org/ontology/school", "surface form": "school"}, {"URI": "http://dbpedia.org/ontology/combatant", "surface form": "rugby player"}, {"URI": "http://dbpedia.org/ontology/school", "surface form": "school"}]}, {"id": "2097", "question": [{"language": "en", "string": "What is the official residence of the Christopher Daz Figuero which is also the state of the Cruce a Nado Internacional"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Christopher_D\u00edaz_Figueroa> <http://dbpedia.org/property/residence> ?uri. <http://dbpedia.org/resource/Cruce_a_Nado_Internacional> <http://dbpedia.org/ontology/country> ?uri} "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Guatemala"}}, "entities": [{"URI": "http://dbpedia.org/resource/Ana_Figuero", "surface form": "Christopher Daz Figuero"}, {"URI": "http://dbpedia.org/resource/Cruce_a_Nado_Internacional", "surface form": "Cruce a Nado Internacional"}], "relations": [{"URI": "http://dbpedia.org/ontology/occupation", "surface form": "official residence"}]}, {"id": "2098", "question": [{"language": "en", "string": "What is the national origin of Focke-Wulf Fw 260 ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Focke-Wulf_Fw_260> <http://dbpedia.org/property/nationalOrigin> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/West_Germany"}}, "entities": [{"URI": "http://dbpedia.org/resource/Focke-Wulf_Fw_260", "surface form": "Focke-Wulf Fw 260"}], "relations": [{"URI": "http://dbpedia.org/property/nationalOrigin", "surface form": "national origin"}]}, {"id": "2099", "question": [{"language": "en", "string": "List the races of Fergie Sutherland?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Fergie_Sutherland> <http://dbpedia.org/property/race> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hennessy_Gold_Cup_(Ireland)"}}, "entities": [{"URI": "http://dbpedia.org/resource/Fergie_Sutherland", "surface form": "Fergie Sutherland"}], "relations": [{"URI": "http://dbpedia.org/property/race", "surface form": "race"}]}, {"id": "2100", "question": [{"language": "en", "string": "Games on amiga are typically of what kind?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/computingPlatform> <http://dbpedia.org/resource/Amiga> . ?x <http://dbpedia.org/property/genre> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/VideoGame>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Beat_'em_up"}}, "entities": [{"URI": "http://dbpedia.org/resource/Amiga", "surface form": "amiga"}, {"URI": "http://dbpedia.org/resource/Typically_Tropical", "surface form": "typically"}], "relations": [{"URI": "http://dbpedia.org/ontology/games", "surface form": "games"}]}, {"id": "2101", "question": [{"language": "en", "string": "Which shows are similar to the ones produced by Phil Collinson?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/executiveProducer> <http://dbpedia.org/resource/Phil_Collinson> . ?uri <http://dbpedia.org/ontology/related> ?x . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sarah_Jane's_Alien_Files"}}, "entities": [{"URI": "http://dbpedia.org/resource/Phil_Collinson", "surface form": "Phil Collinson"}], "relations": [{"URI": "http://dbpedia.org/ontology/place", "surface form": "shows"}, {"URI": "http://dbpedia.org/ontology/author", "surface form": "produced"}]}, {"id": "2102", "question": [{"language": "en", "string": "Name the wine regions of Baco noir?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Baco_noir> <http://dbpedia.org/ontology/wineRegion> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mississippi"}}, "entities": [{"URI": "http://dbpedia.org/resource/Baco_noir", "surface form": "Baco noir"}], "relations": [{"URI": "http://dbpedia.org/property/name", "surface form": "name"}, {"URI": "http://dbpedia.org/ontology/wineRegion", "surface form": "wine regions"}]}, {"id": "2103", "question": [{"language": "en", "string": "What is the awards won by the producer of From the Life of the Marionettes ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/From_the_Life_of_the_Marionettes> <http://dbpedia.org/ontology/producer> ?x . ?x <http://dbpedia.org/property/awards> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Goethe_Prize"}}, "entities": [{"URI": "http://dbpedia.org/resource/From_the_Life_of_the_Marionettes", "surface form": "From the Life of the Marionettes From the Life"}], "relations": []}, {"id": "2104", "question": [{"language": "en", "string": "List the doctoral students of Harry Harlow ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Harry_Harlow> <http://dbpedia.org/property/doctoralStudents> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Stephen_Suomi"}}, "entities": [{"URI": "http://dbpedia.org/resource/Harry_Harlow", "surface form": "Harry Harlow"}], "relations": [{"URI": "http://dbpedia.org/property/doctoralStudents", "surface form": "doctoral students"}]}, {"id": "2105", "question": [{"language": "en", "string": "List the major shrines of the saints whose one of the shrine is St. Takla Haymanot's Church ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/majorShrine> <http://dbpedia.org/resource/St._Takla_Haymanot's_Church_(Alexandria)> . ?x <http://dbpedia.org/ontology/majorShrine> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Saint>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Debre_Libanos"}}, "entities": [{"URI": "http://dbpedia.org/resource/St._Takla_Haymanot's_Church_(Alexandria)", "surface form": "St. Takla Haymanot's Church"}], "relations": [{"URI": "http://dbpedia.org/property/first", "surface form": "major shrines"}, {"URI": "http://dbpedia.org/ontology/territory", "surface form": "saints"}, {"URI": "http://dbpedia.org/ontology/majorShrine", "surface form": "shrine"}]}, {"id": "2106", "question": [{"language": "en", "string": "Isaac Hayes has acted in which movies ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/starring> <http://dbpedia.org/resource/Isaac_Hayes> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Wattstax"}}, "entities": [{"URI": "http://dbpedia.org/resource/Isaac_Hayes", "surface form": "isaac Hayes"}], "relations": [{"URI": "http://dbpedia.org/ontology/starring", "surface form": "acted"}]}, {"id": "2107", "question": [{"language": "en", "string": "What is the citizenship of the Sarah Kazemy and land of the Cervelle de canut"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Sarah_Kazemy> <http://dbpedia.org/ontology/citizenship> ?uri. <http://dbpedia.org/resource/Cervelle_de_canut> <http://dbpedia.org/ontology/country> ?uri} "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/France"}}, "entities": [{"URI": "http://dbpedia.org/resource/Sarah_Kazemy", "surface form": "Sarah Kazemy"}, {"URI": "http://dbpedia.org/resource/Cervelle_de_canut", "surface form": "Cervelle de canut"}], "relations": [{"URI": "http://dbpedia.org/ontology/citizenship", "surface form": "citizenship"}, {"URI": "http://dbpedia.org/ontology/country", "surface form": "land"}]}, {"id": "2108", "question": [{"language": "en", "string": "Movie's produced by Michael Deeley has Jordan Cronenweth as director of photography"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/producer> <http://dbpedia.org/resource/Michael_Deeley> . ?uri <http://dbpedia.org/ontology/cinematography> <http://dbpedia.org/resource/Jordan_Cronenweth> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Blade_Runner"}}, "entities": [{"URI": "http://dbpedia.org/resource/Michael_Deeley", "surface form": "Michael Deeley"}, {"URI": "http://dbpedia.org/resource/Jordan_Cronenweth", "surface form": "Jordan Cronenweth"}], "relations": [{"URI": "http://dbpedia.org/ontology/picture", "surface form": "movie"}, {"URI": "http://dbpedia.org/ontology/architect", "surface form": "produced"}, {"URI": "http://dbpedia.org/ontology/director", "surface form": "director"}, {"URI": "http://dbpedia.org/ontology/picture", "surface form": "photography"}]}, {"id": "2109", "question": [{"language": "en", "string": "How many buildings are located in the jurisdiction of John Tory?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/leaderName> <http://dbpedia.org/resource/John_Tory> . ?uri <http://dbpedia.org/property/location> ?x . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Building>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/John_Tory", "surface form": "John Tory"}], "relations": [{"URI": "http://dbpedia.org/ontology/production", "surface form": "buildings"}, {"URI": "http://dbpedia.org/ontology/position", "surface form": "located"}, {"URI": "http://dbpedia.org/ontology/jurisdiction", "surface form": "jurisdiction"}]}, {"id": "2110", "question": [{"language": "en", "string": "Name some software as a service?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/license> <http://dbpedia.org/resource/Software_as_a_service> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Software>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Anaconda_(Python_distribution)"}}, "entities": [{"URI": "http://dbpedia.org/resource/Software", "surface form": "software"}], "relations": [{"URI": "http://dbpedia.org/property/name", "surface form": "name"}, {"URI": "http://dbpedia.org/ontology/industry", "surface form": "service"}]}, {"id": "2111", "question": [{"language": "en", "string": "How many companies were founded in Menlo Park, California?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE {?uri <http://dbpedia.org/property/foundation> <http://dbpedia.org/resource/Menlo_Park,_California> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Company>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "6"}}, "entities": [{"URI": "http://dbpedia.org/resource/Companies_listed_on_the_New_York_Stock_Exchange_(J)", "surface form": "companies"}, {"URI": "http://dbpedia.org/resource/Menlo_Park,_California", "surface form": "Menlo Park, California"}], "relations": [{"URI": "http://dbpedia.org/property/foundation", "surface form": "founded"}, {"URI": "http://dbpedia.org/ontology/Company", "surface form": "companies"}]}, {"id": "2112", "question": [{"language": "en", "string": "Give me all martial artists trained by Joe Schilling."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/trainer> <http://dbpedia.org/resource/Joe_Schilling> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/MartialArtist>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Donald_Cerrone"}}, "entities": [{"URI": "http://dbpedia.org/resource/Joe_Schilling", "surface form": "Joe Schilling"}], "relations": [{"URI": "http://dbpedia.org/ontology/rkdArtistsId", "surface form": "martial artists"}, {"URI": "http://dbpedia.org/ontology/trainer", "surface form": "trained"}]}, {"id": "2113", "question": [{"language": "en", "string": "Carl Sagan has penned books on how many matters?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/author> <http://dbpedia.org/resource/Carl_Sagan> . ?x <http://dbpedia.org/property/subject> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "5"}}, "entities": [{"URI": "http://dbpedia.org/resource/Carl_Sagan", "surface form": "carl Sagan"}], "relations": [{"URI": "http://dbpedia.org/ontology/author", "surface form": "penned books"}, {"URI": "http://dbpedia.org/property/subject", "surface form": "matters"}]}, {"id": "2114", "question": [{"language": "en", "string": "What is the venerated in of Edwin of Northumbria ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Edwin_of_Northumbria> <http://dbpedia.org/property/veneratedIn> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Anglican_Communion"}}, "entities": [{"URI": "http://dbpedia.org/resource/Edwin_of_Northumbria", "surface form": "Edwin of Northumbria"}], "relations": [{"URI": "http://dbpedia.org/property/veneratedIn", "surface form": "venerated"}]}, {"id": "2115", "question": [{"language": "en", "string": "Where was Picasso's Last Words recorded ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Picasso's_Last_Words_(Drink_to_Me)> <http://dbpedia.org/property/recorded> ?uri } "}, "answers": {"uri": {"type": "literal", "xml:lang": "en", "value": "September\u2013October 1973"}}, "entities": [{"URI": "http://dbpedia.org/resource/Picasso's_Last_Words_(Drink_to_Me)", "surface form": "Picasso's Last Words"}], "relations": [{"URI": "http://dbpedia.org/property/recorded", "surface form": "recorded"}]}, {"id": "2116", "question": [{"language": "en", "string": "What is the hub airport of Pawan Hans, and is also the largest city of India?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Pawan_Hans> <http://dbpedia.org/ontology/hubAirport> ?uri. <http://dbpedia.org/resource/India> <http://dbpedia.org/ontology/largestCity> ?uri} "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Delhi"}}, "entities": [{"URI": "http://dbpedia.org/resource/Pawan_Hans", "surface form": "Pawan Hans,"}, {"URI": "http://dbpedia.org/resource/India", "surface form": "India"}], "relations": [{"URI": "http://dbpedia.org/ontology/hubAirport", "surface form": "hub airport"}, {"URI": "http://dbpedia.org/ontology/largestCity", "surface form": "largest city"}]}, {"id": "2117", "question": [{"language": "en", "string": "What is the occupation of the people who are born in Iowa?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/birthPlace> <http://dbpedia.org/resource/Iowa> . ?x <http://dbpedia.org/ontology/occupation> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Person>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alma_Macrorie__PersonFunction__1"}}, "entities": [{"URI": "http://dbpedia.org/resource/IOWA", "surface form": "Iowa"}], "relations": [{"URI": "http://dbpedia.org/ontology/occupation", "surface form": "occupation"}, {"URI": "http://dbpedia.org/ontology/birthPlace", "surface form": "born"}]}, {"id": "2118", "question": [{"language": "en", "string": "Under whom did Charles Drummond Ellis do his PhD?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/doctoralStudent> <http://dbpedia.org/resource/Charles_Drummond_Ellis> } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/James_Chadwick"}}, "entities": [{"URI": "http://dbpedia.org/resource/Charles_Drummond_Ellis", "surface form": "Charles Drummond Ellis do his PhD"}], "relations": []}, {"id": "2119", "question": [{"language": "en", "string": "How many have company as Paramount Television and network as NBC are there?"}], "query": {"sparql": " SELECT DISTINCT COUNT(?uri) WHERE {?uri <http://dbpedia.org/property/company> <http://dbpedia.org/resource/Paramount_Television> . ?uri <http://dbpedia.org/ontology/network> <http://dbpedia.org/resource/NBC> } "}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "27"}}, "entities": [{"URI": "http://dbpedia.org/resource/Paramount_Television", "surface form": "Paramount Television"}, {"URI": "http://dbpedia.org/resource/NBC", "surface form": "NBC"}], "relations": [{"URI": "http://dbpedia.org/ontology/company", "surface form": "company"}, {"URI": "http://dbpedia.org/ontology/network", "surface form": "network"}]}, {"id": "2120", "question": [{"language": "en", "string": "Count the different causes of death of Christians."}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/religion> <http://dbpedia.org/resource/Christianity> . ?x <http://dbpedia.org/ontology/deathCause> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/Mady_Christians", "surface form": "Christians"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": "count"}, {"URI": "http://dbpedia.org/ontology/deathPlace", "surface form": "death"}]}, {"id": "2121", "question": [{"language": "en", "string": "How many players debuted their careers from San Francisco 49ers?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE {?uri <http://dbpedia.org/ontology/debutTeam> <http://dbpedia.org/resource/San_Francisco_49ers> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Athlete>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/San_Francisco_49ers", "surface form": "San Francisco 49ers"}], "relations": [{"URI": "http://dbpedia.org/property/player", "surface form": "players"}, {"URI": "http://dbpedia.org/ontology/debutTeam", "surface form": "debuted"}, {"URI": "http://dbpedia.org/ontology/occupation", "surface form": "careers"}]}, {"id": "2122", "question": [{"language": "en", "string": "Which memeber of South Asia SubRegional Economic cooperation is also the nationality of Aishath saffa ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/South_Asia_Subregional_Economic_Cooperation> <http://dbpedia.org/property/membership> ?uri. <http://dbpedia.org/resource/Aishath_Saffa> <http://dbpedia.org/property/nationality> ?uri} "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Maldives"}}, "entities": [{"URI": "http://dbpedia.org/resource/South_Asia_Subregional_Economic_Cooperation", "surface form": "South Asia SubRegional Economic cooperation"}, {"URI": "http://dbpedia.org/resource/Aishath_Saffa", "surface form": "Aishath saffa"}], "relations": [{"URI": "http://dbpedia.org/ontology/arm", "surface form": "memeber"}, {"URI": "http://dbpedia.org/ontology/nationality", "surface form": "nationality"}]}, {"id": "2123", "question": [{"language": "en", "string": "Which board memeber of jimmy Wales also owns Latvian Wikipedia ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Jimmy_Wales> <http://dbpedia.org/ontology/board> ?uri. <http://dbpedia.org/resource/Latvian_Wikipedia> <http://dbpedia.org/ontology/owner> ?uri} "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Wikimedia_Foundation"}}, "entities": [{"URI": "http://dbpedia.org/resource/Jimmy_Wales", "surface form": "jimmy Wales"}, {"URI": "http://dbpedia.org/resource/Latvia", "surface form": "Latvian Wikipedia"}, {"URI": "http://dbpedia.org/resource/Latvian_Wikipedia", "surface form": "Latvian Wikipedia"}], "relations": [{"URI": "http://dbpedia.org/ontology/board", "surface form": "board"}, {"URI": "http://dbpedia.org/ontology/owner", "surface form": "owns"}]}, {"id": "2124", "question": [{"language": "en", "string": "What are the musicals based on, whose lyricist was Shelon Harnick?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/lyrics> <http://dbpedia.org/resource/Sheldon_Harnick> . ?x <http://dbpedia.org/ontology/basedOn> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Musical>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Frank_R._Stockton"}}, "entities": [{"URI": "http://dbpedia.org/resource/Sheldon_Harnick", "surface form": "Shelon Harnick"}], "relations": [{"URI": "http://dbpedia.org/ontology/show", "surface form": "musicals"}, {"URI": "http://dbpedia.org/ontology/office", "surface form": "based"}, {"URI": "http://dbpedia.org/ontology/leader", "surface form": "on,"}, {"URI": "http://dbpedia.org/ontology/author", "surface form": "lyricist"}]}, {"id": "2125", "question": [{"language": "en", "string": "What series is Mazes of Time from, and is produced by BBC multimedia?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/BBC_Multimedia> <http://dbpedia.org/ontology/product> ?uri. <http://dbpedia.org/resource/Doctor_Who:_The_Mazes_of_Time> <http://dbpedia.org/ontology/series> ?uri} "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Doctor_Who"}}, "entities": [{"URI": "http://dbpedia.org/resource/BBC_Multimedia", "surface form": "BBC multimedia"}, {"URI": "http://dbpedia.org/resource/Doctor_Who:_The_Mazes_of_Time", "surface form": "mazes"}], "relations": [{"URI": "http://dbpedia.org/ontology/series", "surface form": "series"}, {"URI": "http://dbpedia.org/ontology/author", "surface form": "produced"}]}, {"id": "2126", "question": [{"language": "en", "string": "Name the TV show whose network is NBC and is the subsequent work of Fraiser ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/network> <http://dbpedia.org/resource/NBC> . ?uri <http://dbpedia.org/ontology/subsequentWork> <http://dbpedia.org/resource/Frasier> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cheers"}}, "entities": [{"URI": "http://dbpedia.org/resource/NBC", "surface form": "NBC"}, {"URI": "http://dbpedia.org/resource/Frasier", "surface form": ""}], "relations": [{"URI": "http://dbpedia.org/property/name", "surface form": "name"}, {"URI": "http://dbpedia.org/ontology/show", "surface form": "show"}, {"URI": "http://dbpedia.org/ontology/network", "surface form": "network"}, {"URI": "http://dbpedia.org/ontology/service", "surface form": "subsequent work"}]}, {"id": "2127", "question": [{"language": "en", "string": "How many had their debut team coached by Chip Kelly?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/coach> <http://dbpedia.org/resource/Chip_Kelly> . ?uri <http://dbpedia.org/ontology/debutTeam> ?x . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/Chip_Kelly", "surface form": "Chip Kelly"}], "relations": [{"URI": "http://dbpedia.org/property/coach", "surface form": "coach"}, {"URI": "http://dbpedia.org/ontology/debutTeam", "surface form": "debut team"}]}, {"id": "2128", "question": [{"language": "en", "string": "Who is the scientist whose academic advisor was Karl Ewald Hasse?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/academicAdvisor> <http://dbpedia.org/resource/Karl_Ewald_Hasse> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Scientist>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Robert_Koch"}}, "entities": [{"URI": "http://dbpedia.org/resource/Scientist", "surface form": "scientist"}, {"URI": "http://dbpedia.org/resource/Karl_Ewald_Hasse", "surface form": "Karl Ewald Hasse"}], "relations": [{"URI": "http://dbpedia.org/ontology/academicAdvisor", "surface form": "academic advisor"}, {"URI": "http://dbpedia.org/ontology/Scientist", "surface form": "scientist"}]}, {"id": "2129", "question": [{"language": "en", "string": "Malaysian highway authority has designed bridges over what things?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/designer> <http://dbpedia.org/resource/Malaysian_Highway_Authority> . ?x <http://dbpedia.org/property/crosses> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Bridge>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lumut_Straits"}}, "entities": [{"URI": "http://dbpedia.org/resource/Malaysian_Highway_Authority", "surface form": "malaysian highway authority"}], "relations": [{"URI": "http://dbpedia.org/ontology/architect", "surface form": "designed"}, {"URI": "http://dbpedia.org/ontology/abstract", "surface form": "bridges"}]}, {"id": "2130", "question": [{"language": "en", "string": "List the academic discipline of the journals whose publisher is SAGE Publications."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/publisher> <http://dbpedia.org/resource/SAGE_Publications> . ?x <http://dbpedia.org/ontology/academicDiscipline> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/AcademicJournal>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Human_resources"}}, "entities": [{"URI": "http://dbpedia.org/resource/Sage_Group", "surface form": "SAGE"}, {"URI": "http://dbpedia.org/resource/Publications_of_the_Astronomical_Society_of_Australia", "surface form": "Publications"}], "relations": [{"URI": "http://dbpedia.org/ontology/abstract", "surface form": "academic discipline"}, {"URI": "http://dbpedia.org/ontology/language", "surface form": "journals"}, {"URI": "http://dbpedia.org/property/publisher", "surface form": "publisher"}]}, {"id": "2131", "question": [{"language": "en", "string": "Who owns the radio stations in Alabama?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/city> <http://dbpedia.org/resource/Alabama> . ?x <http://dbpedia.org/ontology/owner> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/RadioStation>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/IHeartMedia"}}, "entities": [{"URI": "http://dbpedia.org/resource/Alabama", "surface form": "Alabama"}], "relations": [{"URI": "http://dbpedia.org/ontology/city", "surface form": "city"}, {"URI": "http://dbpedia.org/ontology/owner", "surface form": "owns"}]}, {"id": "2132", "question": [{"language": "en", "string": "Name the movie whose director is Stanley Kubrick and editor is Anthony Harvey?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/editing> <http://dbpedia.org/resource/Anthony_Harvey> . ?uri <http://dbpedia.org/ontology/director> <http://dbpedia.org/resource/Stanley_Kubrick> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dr._Strangelove"}}, "entities": [{"URI": "http://dbpedia.org/resource/Stanley_Kubrick", "surface form": "Stanley Kubrick"}, {"URI": "http://dbpedia.org/resource/Anthony_Harvey", "surface form": "Anthony Harvey"}], "relations": [{"URI": "http://dbpedia.org/property/name", "surface form": "name"}, {"URI": "http://dbpedia.org/ontology/picture", "surface form": "movie"}, {"URI": "http://dbpedia.org/ontology/director", "surface form": "director"}, {"URI": "http://dbpedia.org/ontology/editor", "surface form": "editor"}]}, {"id": "2133", "question": [{"language": "en", "string": "what are the nicknames of the people who are in Ekstraliga?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/league> <http://dbpedia.org/resource/Ekstraliga_(speedway)> . ?x <http://dbpedia.org/property/nickname> ?uri . }"}, "answers": {"uri": {"type": "literal", "xml:lang": "en", "value": "Sharks, Green and Black"}}, "entities": [{"URI": "http://dbpedia.org/resource/Ekstraliga_(speedway)", "surface form": "Ekstraliga"}], "relations": [{"URI": "http://dbpedia.org/ontology/denomination", "surface form": "nicknames"}]}, {"id": "2134", "question": [{"language": "en", "string": "List the alma mater of the person who is wedded to Sissela Bok."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/spouse> <http://dbpedia.org/resource/Sissela_Bok> . ?x <http://dbpedia.org/property/almaMater> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/George_Washington_University"}}, "entities": [{"URI": "http://dbpedia.org/resource/Sissela_Bok", "surface form": "Sissela Bok"}], "relations": [{"URI": "http://dbpedia.org/property/almaMater", "surface form": "alma mater"}, {"URI": "http://dbpedia.org/ontology/person", "surface form": "person"}, {"URI": "http://dbpedia.org/ontology/added", "surface form": "wedded"}]}, {"id": "2135", "question": [{"language": "en", "string": "List all the members of the organization whose one of the members is Bangladesh ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/membership> <http://dbpedia.org/resource/Bangladesh> . ?x <http://dbpedia.org/property/membership> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Organisation>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bhutan"}}, "entities": [{"URI": "http://dbpedia.org/resource/Bangladesh", "surface form": "Bangladesh"}], "relations": [{"URI": "http://dbpedia.org/property/members", "surface form": "members"}, {"URI": "http://dbpedia.org/property/establishment", "surface form": "organization"}, {"URI": "http://dbpedia.org/property/members", "surface form": "members"}]}, {"id": "2136", "question": [{"language": "en", "string": "In how many different places do Starwood hotels and resorts worldwide operate?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/operator> <http://dbpedia.org/resource/Starwood_Hotels_and_Resorts_Worldwide> . ?x <http://dbpedia.org/property/address> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/Starwood_Capital_Group", "surface form": "Starwood hotels"}, {"URI": "http://dbpedia.org/resource/Walt_Disney_Parks_and_Resorts", "surface form": "resorts worldwide"}], "relations": [{"URI": "http://dbpedia.org/property/operator", "surface form": "operate"}, {"URI": "http://dbpedia.org/property/address", "surface form": "places"}]}, {"id": "2137", "question": [{"language": "en", "string": "How many utopian and dystopian fiction books are there?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE {?uri <http://dbpedia.org/ontology/literaryGenre> <http://dbpedia.org/resource/Utopian_and_dystopian_fiction> . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "152"}}, "entities": [{"URI": "http://dbpedia.org/resource/Utopian_Studies_Society", "surface form": "Utopian"}, {"URI": "http://dbpedia.org/resource/Utopian_and_dystopian_fiction", "surface form": "dystopian fiction books"}], "relations": []}, {"id": "2138", "question": [{"language": "en", "string": "List the architect of the buildings whose one of the architect is Philip Webb?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/architect> <http://dbpedia.org/resource/Philip_Webb> . ?x <http://dbpedia.org/property/architect> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Building>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Philip_Webb"}}, "entities": [{"URI": "http://dbpedia.org/resource/Philip_Webb", "surface form": "Philip Webb"}], "relations": [{"URI": "http://dbpedia.org/ontology/architect", "surface form": "architect"}, {"URI": "http://dbpedia.org/ontology/architect", "surface form": "buildings"}, {"URI": "http://dbpedia.org/ontology/architect", "surface form": "architect"}]}, {"id": "2139", "question": [{"language": "en", "string": "What is the residence of the bronze medalist of Alpine skiing at the women's downhill competition at the 1972 Winter Olympics?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Alpine_skiing_at_the_1972_Winter_Olympics_\u2013_Women's_downhill> <http://dbpedia.org/ontology/bronzeMedalist> ?x . ?x <http://dbpedia.org/property/birthPlace> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Washington_(U.S._state)"}}, "entities": [{"URI": "http://dbpedia.org/resource/Alpine_skiing_at_the_1952_Winter_Olympics_\u2013_Women's_downhill", "surface form": "Alpine skiing"}, {"URI": "http://dbpedia.org/resource/The_Competition_(film)", "surface form": " downhill competition"}, {"URI": "http://dbpedia.org/resource/1972_Winter_Olympics", "surface form": "1972 Winter Olympics"}], "relations": [{"URI": "http://dbpedia.org/ontology/residence", "surface form": "residence"}, {"URI": "http://dbpedia.org/property/bronze", "surface form": "bronze medalist"}, {"URI": "http://dbpedia.org/ontology/person", "surface form": "women"}]}, {"id": "2140", "question": [{"language": "en", "string": "What is the owner of Ivanpah Solar Power Facility and the original developer of Dart?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Ivanpah_Solar_Power_Facility> <http://dbpedia.org/ontology/owner> ?uri. <http://dbpedia.org/resource/Dart_(programming_language)> <http://dbpedia.org/ontology/developer> ?uri} "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Google"}}, "entities": [{"URI": "http://dbpedia.org/resource/Ivanpah_Solar_Power_Facility", "surface form": "Ivanpah Solar"}, {"URI": "http://dbpedia.org/resource/Dart_(programming_language)", "surface form": "Dart"}], "relations": [{"URI": "http://dbpedia.org/ontology/owner", "surface form": "owner"}, {"URI": "http://dbpedia.org/ontology/developer", "surface form": "developer"}]}, {"id": "2141", "question": [{"language": "en", "string": "Find the total number of ingredient of the recepies whose ingredient is common Mushroom ?"}], "query": {"sparql": " SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/ingredient> <http://dbpedia.org/resource/Agaricus_bisporus> . ?x <http://dbpedia.org/ontology/ingredient> ?uri }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "25"}}, "entities": [{"URI": "http://dbpedia.org/resource/Agaricus_bisporus", "surface form": ""}], "relations": [{"URI": "http://dbpedia.org/ontology/populationTotal", "surface form": "total"}, {"URI": "http://dbpedia.org/ontology/ingredient", "surface form": "ingredient"}, {"URI": "http://dbpedia.org/ontology/ingredient", "surface form": "ingredient"}]}, {"id": "2142", "question": [{"language": "en", "string": "How many movies are directed by the spouse of Dolores del Ro?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/partner> <http://dbpedia.org/resource/Dolores_del_R\u00edo> . ?uri <http://dbpedia.org/property/director> ?x . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/Dolores_del_R\u00edo", "surface form": "Dolores del Ro"}], "relations": [{"URI": "http://dbpedia.org/property/partner", "surface form": "spouse"}, {"URI": "http://dbpedia.org/property/director", "surface form": "directed"}]}, {"id": "2143", "question": [{"language": "en", "string": "What are some bands out to texarkana?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/origin> <http://dbpedia.org/resource/Texarkana,_Texas> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Band>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pilotdrift"}}, "entities": [{"URI": "http://dbpedia.org/resource/Texarkana,_Texas", "surface form": "texarkana"}], "relations": [{"URI": "http://dbpedia.org/ontology/staff", "surface form": "bands"}]}, {"id": "2144", "question": [{"language": "en", "string": "How many information appliance are manufactured by companies located in Taiwan?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/locationCity> <http://dbpedia.org/resource/Taiwan> . ?uri <http://dbpedia.org/ontology/manufacturer> ?x . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/InformationAppliance>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "69"}}, "entities": [{"URI": "http://dbpedia.org/resource/Companies_listed_on_the_New_York_Stock_Exchange_(J)", "surface form": "companies"}, {"URI": "http://dbpedia.org/resource/Taiwan", "surface form": "Taiwan"}], "relations": [{"URI": "http://dbpedia.org/ontology/manufacturer", "surface form": "manufactured"}, {"URI": "http://dbpedia.org/property/locationCity", "surface form": "located"}]}, {"id": "2145", "question": [{"language": "en", "string": "How many people are in the England national football team?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE {?uri <http://dbpedia.org/property/nationalteam> <http://dbpedia.org/resource/England_national_football_team> . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "1205"}}, "entities": [{"URI": "http://dbpedia.org/resource/England_national_football_team", "surface form": "England national football team"}], "relations": [{"URI": "http://dbpedia.org/property/nationalteam", "surface form": "national team"}]}, {"id": "2146", "question": [{"language": "en", "string": "In what battles did president Park Chung-hee participate?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/commander> <http://dbpedia.org/resource/Park_Chung-hee> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/MilitaryConflict>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Unit_684__mutiny__1"}}, "entities": [{"URI": "http://dbpedia.org/resource/Park_Chung-hee", "surface form": "president Park Chung-hee"}], "relations": [{"URI": "http://dbpedia.org/ontology/battle", "surface form": "battles"}, {"URI": "http://dbpedia.org/ontology/party", "surface form": "participate"}]}, {"id": "2147", "question": [{"language": "en", "string": "who is the husband of Rosie Huntington Whiteley?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Rosie_Huntington-Whiteley> <http://dbpedia.org/ontology/partner> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jason_Statham"}}, "entities": [{"URI": "http://dbpedia.org/resource/Rosie_Huntington-Whiteley", "surface form": "Rosie Huntington Whiteley"}], "relations": [{"URI": "http://dbpedia.org/ontology/partner", "surface form": "husband"}]}, {"id": "2148", "question": [{"language": "en", "string": "Which current player of Chicago Bulls was drafted by Los Angeles Clippers ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/team> <http://dbpedia.org/resource/Chicago_Bulls> . ?uri <http://dbpedia.org/property/draftTeam> <http://dbpedia.org/resource/Los_Angeles_Clippers> . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Al-Farouq_Aminu"}}, "entities": [{"URI": "http://dbpedia.org/resource/Chicago_Bulls", "surface form": "Chicago Bulls"}, {"URI": "http://dbpedia.org/resource/Los_Angeles_Clippers", "surface form": "Los Angeles Clippers"}], "relations": [{"URI": "http://dbpedia.org/ontology/coach", "surface form": "current player"}, {"URI": "http://dbpedia.org/ontology/draft", "surface form": "drafted"}]}, {"id": "2149", "question": [{"language": "en", "string": "What team has players born in Dominican Republic ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/birthPlace> <http://dbpedia.org/resource/Dominican_Republic> . ?x <http://dbpedia.org/ontology/team> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cleveland_Guardians"}}, "entities": [{"URI": "http://dbpedia.org/resource/Dominica", "surface form": "Dominican Republic"}, {"URI": "http://dbpedia.org/resource/Dominican_Republic", "surface form": "Dominican Republic"}], "relations": [{"URI": "http://dbpedia.org/ontology/team", "surface form": "team"}, {"URI": "http://dbpedia.org/ontology/combatant", "surface form": "players"}, {"URI": "http://dbpedia.org/ontology/birthPlace", "surface form": "born"}, {"URI": "http://dbpedia.org/ontology/country", "surface form": ""}]}, {"id": "2150", "question": [{"language": "en", "string": "Name the party of Indira Gandhi ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Indira_Gandhi> <http://dbpedia.org/ontology/party> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Indian_National_Congress"}}, "entities": [{"URI": "http://dbpedia.org/resource/Indira_Gandhi", "surface form": "Indira Gandhi"}], "relations": [{"URI": "http://dbpedia.org/property/name", "surface form": "name"}, {"URI": "http://dbpedia.org/ontology/party", "surface form": "party"}]}, {"id": "2151", "question": [{"language": "en", "string": "What is the common country of Ganz UV and Balaton wine region ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Ganz_UV> <http://dbpedia.org/ontology/operator> ?uri. <http://dbpedia.org/resource/Balaton_wine_region> <http://dbpedia.org/ontology/location> ?uri} "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hungary"}}, "entities": [{"URI": "http://dbpedia.org/resource/Uvaria_chamae", "surface form": "UV"}, {"URI": "http://dbpedia.org/resource/Ganzert", "surface form": "Ganz"}, {"URI": "http://dbpedia.org/resource/Balaton_wine_region", "surface form": "Balaton wine region"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": "common country"}]}, {"id": "2152", "question": [{"language": "en", "string": "Whose resting place is William Henry Harrison Tomb State Memorial and has kids named John Scott Harrison?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/restingplace> <http://dbpedia.org/resource/William_Henry_Harrison_Tomb_State_Memorial> . ?uri <http://dbpedia.org/ontology/child> <http://dbpedia.org/resource/John_Scott_Harrison> . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/William_Henry_Harrison"}}, "entities": [{"URI": "http://dbpedia.org/resource/William_Henry_Harrison", "surface form": "William Henry Harrison Tomb State Memorial"}, {"URI": "http://dbpedia.org/resource/John_Scott_Harrison", "surface form": "John Scott Harrison"}], "relations": [{"URI": "http://dbpedia.org/ontology/battle", "surface form": "resting"}, {"URI": "http://dbpedia.org/ontology/place", "surface form": "place"}, {"URI": "http://dbpedia.org/ontology/child", "surface form": "kids"}]}, {"id": "2153", "question": [{"language": "en", "string": "Name the constituency of Domenico Modugno ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Domenico_Modugno> <http://dbpedia.org/property/constituency> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Turin"}}, "entities": [{"URI": "http://dbpedia.org/resource/Domenico_Modugno", "surface form": "Domenico Modugno"}], "relations": [{"URI": "http://dbpedia.org/property/name", "surface form": "name"}, {"URI": "http://dbpedia.org/property/constituency", "surface form": "constituency"}]}, {"id": "2154", "question": [{"language": "en", "string": "What discipline was The Chess Monthly about ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/The_Chess_Monthly> <http://dbpedia.org/property/discipline> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chess"}}, "entities": [{"URI": "http://dbpedia.org/resource/The_Chess_Monthly", "surface form": "The Chess Monthly"}], "relations": [{"URI": "http://dbpedia.org/ontology/discipline", "surface form": "discipline"}]}, {"id": "2155", "question": [{"language": "en", "string": "Which saints were the messengers of Islam?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/veneratedIn> <http://dbpedia.org/resource/Islam> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Saint>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mian_Ghulam_Siddique_Mekan"}}, "entities": [{"URI": "http://dbpedia.org/resource/Islam", "surface form": "Islam"}], "relations": [{"URI": "http://dbpedia.org/ontology/saint", "surface form": "saints"}, {"URI": "http://dbpedia.org/ontology/passengersUsedSystem", "surface form": "messengers"}]}, {"id": "2156", "question": [{"language": "en", "string": "What awards were given to the producer of Chicken Little?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Chicken_Little_(1943_film)> <http://dbpedia.org/ontology/producer> ?x . ?x <http://dbpedia.org/ontology/award> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Emmy_Awards"}}, "entities": [{"URI": "http://dbpedia.org/resource/Chicken_Little_(1943_film)", "surface form": "Chicken Little"}], "relations": [{"URI": "http://dbpedia.org/ontology/budget", "surface form": "awards"}, {"URI": "http://dbpedia.org/ontology/producer", "surface form": "producer"}]}, {"id": "2157", "question": [{"language": "en", "string": "What water bodies have primary inflows sa Kemijoki?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/inflow> <http://dbpedia.org/resource/Kemijoki> } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Baltic_Sea"}}, "entities": [{"URI": "http://dbpedia.org/resource/Kemijoki", "surface form": "Kemijoki"}], "relations": [{"URI": "http://dbpedia.org/ontology/inflow", "surface form": "inflow"}]}, {"id": "2158", "question": [{"language": "en", "string": "Who composed the lyrics of Holler If Ya Hear Me ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Holler_If_Ya_Hear_Me_(musical)> <http://dbpedia.org/property/lyrics> ?uri } "}, "answers": {"uri": {"type": "literal", "xml:lang": "en", "value": "Tupac Shakur"}}, "entities": [{"URI": "http://dbpedia.org/resource/Holler_If_Ya_Hear_Me_(musical)", "surface form": "Holler If Ya"}, {"URI": "http://dbpedia.org/resource/Me", "surface form": "Me"}], "relations": [{"URI": "http://dbpedia.org/ontology/composer", "surface form": "composed"}, {"URI": "http://dbpedia.org/ontology/lyrics", "surface form": "lyrics"}, {"URI": "http://dbpedia.org/ontology/damage", "surface form": "Hear"}]}, {"id": "2159", "question": [{"language": "en", "string": "What is the headquarters of the public transit system which is the system of Bottineau LRT ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Bottineau_LRT> <http://dbpedia.org/property/system> ?x . ?x <http://dbpedia.org/property/headquarters> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/PublicTransitSystem>}"}, "answers": {"uri": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "560"}}, "entities": [{"URI": "http://dbpedia.org/resource/Bottineau_LRT", "surface form": "Bottineau LRT"}], "relations": [{"URI": "http://dbpedia.org/property/headquarters", "surface form": "headquarters"}, {"URI": "http://dbpedia.org/ontology/country", "surface form": "public transit"}]}, {"id": "2160", "question": [{"language": "en", "string": "What units are garrisoned in the Pentagon?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/garrison> <http://dbpedia.org/resource/The_Pentagon> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/MilitaryUnit>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Deputy_Chief_of_Staff_G-1_Personnel_of_The_United_States_Army"}}, "entities": [{"URI": "http://dbpedia.org/resource/The_Pentagon", "surface form": "Pentagon"}], "relations": [{"URI": "http://dbpedia.org/property/garrison", "surface form": "garrison"}, {"URI": "http://dbpedia.org/ontology/MilitaryUnit", "surface form": "units"}]}, {"id": "2161", "question": [{"language": "en", "string": "What is the hometown of John Speraw ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/John_Speraw> <http://dbpedia.org/property/hometown> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/California"}}, "entities": [{"URI": "http://dbpedia.org/resource/John_Speraw", "surface form": "John Speraw"}], "relations": [{"URI": "http://dbpedia.org/ontology/hometown", "surface form": "hometown"}]}, {"id": "2162", "question": [{"language": "en", "string": "Count the journals in the field of Philosophy."}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE {?uri <http://dbpedia.org/property/discipline> <http://dbpedia.org/resource/Philosophy> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/AcademicJournal>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "213"}}, "entities": [{"URI": "http://dbpedia.org/resource/Philosophy", "surface form": "Philosophy"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": "count"}, {"URI": "http://dbpedia.org/property/journal", "surface form": "journals"}, {"URI": "http://dbpedia.org/ontology/field", "surface form": "field"}]}, {"id": "2163", "question": [{"language": "en", "string": "Which scientist advised a doctoral student named Erban Ieica?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/doctoralStudents> <http://dbpedia.org/resource/\u0218erban_\u021ai\u021beica> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Scientist>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Werner_Heisenberg"}}, "entities": [{"URI": "http://dbpedia.org/resource/\u0218erban_\u021ai\u021beica", "surface form": "Erban Ieica"}], "relations": [{"URI": "http://dbpedia.org/property/doctoralStudents", "surface form": "doctoral student"}, {"URI": "http://dbpedia.org/ontology/Scientist", "surface form": "scientist"}]}, {"id": "2164", "question": [{"language": "en", "string": "What is the hometown of Nader Guirat, where Josef Johansson was born too?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Josef_Johansson> <http://dbpedia.org/property/birthPlace> ?uri. <http://dbpedia.org/resource/Nader_Guirat> <http://dbpedia.org/ontology/hometown> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tunisia"}}, "entities": [{"URI": "http://dbpedia.org/resource/Josef_Johansson", "surface form": "Josef Johansson"}, {"URI": "http://dbpedia.org/resource/Nader_Guirat", "surface form": "Nader Guirat"}], "relations": [{"URI": "http://dbpedia.org/ontology/hometown", "surface form": "hometown"}, {"URI": "http://dbpedia.org/ontology/birthPlace", "surface form": "born"}]}, {"id": "2165", "question": [{"language": "en", "string": "How many major shrine are there, of the saints whose beatified by Pope Pius XI ?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/beatifiedBy> <http://dbpedia.org/resource/Pope_Pius_XI> . ?x <http://dbpedia.org/ontology/majorShrine> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "46"}}, "entities": [{"URI": "http://dbpedia.org/resource/Pope_Pius_XI", "surface form": "Pius XI"}], "relations": [{"URI": "http://dbpedia.org/property/beatifiedBy", "surface form": "beatified by"}, {"URI": "http://dbpedia.org/ontology/majorShrine", "surface form": "major shrine"}]}, {"id": "2166", "question": [{"language": "en", "string": "Name the TV shows owned by divisions of CBS?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/parent> <http://dbpedia.org/resource/CBS> . ?uri <http://dbpedia.org/property/company> ?x . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cadets_(1988_TV_pilot)"}}, "entities": [{"URI": "http://dbpedia.org/resource/Tver_Oblast", "surface form": "TV"}, {"URI": "http://dbpedia.org/resource/CBS", "surface form": "CBS"}], "relations": [{"URI": "http://dbpedia.org/property/name", "surface form": "name"}, {"URI": "http://dbpedia.org/ontology/place", "surface form": "shows"}, {"URI": "http://dbpedia.org/property/owner", "surface form": "owned"}, {"URI": "http://dbpedia.org/property/divisions", "surface form": "divisions"}]}, {"id": "2167", "question": [{"language": "en", "string": "What is the academic discipline of Journal of Cerebral Blood Flow & Metabolism ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Journal_of_Cerebral_Blood_Flow_&_Metabolism> <http://dbpedia.org/ontology/academicDiscipline> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Brain"}}, "entities": [{"URI": "http://dbpedia.org/resource/Journal_of_Cerebral_Blood_Flow_&_Metabolism", "surface form": "Journal of Cerebral Blood Flow & Metabolism"}], "relations": [{"URI": "http://dbpedia.org/ontology/academicDiscipline", "surface form": "academic discipline"}]}, {"id": "2168", "question": [{"language": "en", "string": "Which gaming console's central processing unit is microprocessor and built by Sony?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/cpu> <http://dbpedia.org/resource/Cell_(microprocessor)> . ?uri <http://dbpedia.org/ontology/manufacturer> <http://dbpedia.org/resource/Sony> . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/PlayStation_3"}}, "entities": [{"URI": "http://dbpedia.org/resource/Central_processing_unit", "surface form": " central processing unit"}, {"URI": "http://dbpedia.org/resource/Microprocessor_Report", "surface form": "Microprocessor"}, {"URI": "http://dbpedia.org/resource/Sony", "surface form": "Sony"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": "gaming"}, {"URI": "http://dbpedia.org/ontology/associate", "surface form": "console"}, {"URI": "http://dbpedia.org/property/built", "surface form": "built"}]}, {"id": "2169", "question": [{"language": "en", "string": "List the home stadiums of the teams in the Russian Premier League?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/league> <http://dbpedia.org/resource/2011\u201312_Russian_Premier_League> . ?x <http://dbpedia.org/ontology/homeStadium> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Zvezda_Stadium"}}, "entities": [{"URI": "http://dbpedia.org/resource/Russia", "surface form": "Russian Premier League"}, {"URI": "http://dbpedia.org/resource/2002_Russian_Premier_League", "surface form": "Russian Premier League"}], "relations": [{"URI": "http://dbpedia.org/ontology/residence", "surface form": "home stadiums"}, {"URI": "http://dbpedia.org/property/team", "surface form": "teams"}, {"URI": "http://dbpedia.org/ontology/country", "surface form": ""}]}, {"id": "2170", "question": [{"language": "en", "string": "Give me an estimate number of races where horses grandsired by the Wild Risk have raced in?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/grandsire> <http://dbpedia.org/resource/Wild_Risk> . ?x <http://dbpedia.org/property/race> ?uri . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/HorseRace>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "9"}}, "entities": [{"URI": "http://dbpedia.org/resource/Wild_Risk", "surface form": "Wild Risk"}], "relations": [{"URI": "http://dbpedia.org/ontology/budget", "surface form": "estimate"}, {"URI": "http://dbpedia.org/ontology/races", "surface form": "races"}, {"URI": "http://dbpedia.org/ontology/service", "surface form": "horses"}, {"URI": "http://dbpedia.org/ontology/grandsire", "surface form": "grandsired"}, {"URI": "http://dbpedia.org/ontology/races", "surface form": "raced"}]}, {"id": "2171", "question": [{"language": "en", "string": "What is the name of the movie whose director of photography was Jordan Cronenweth and music composer was Vangelis?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/cinematography> <http://dbpedia.org/resource/Jordan_Cronenweth> . ?uri <http://dbpedia.org/ontology/musicComposer> <http://dbpedia.org/resource/Vangelis> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Blade_Runner"}}, "entities": [{"URI": "http://dbpedia.org/resource/Jordan_Cronenweth", "surface form": "Jordan Cronenweth"}, {"URI": "http://dbpedia.org/resource/Vangelis", "surface form": "Vangelis"}], "relations": [{"URI": "http://dbpedia.org/property/name", "surface form": "name"}, {"URI": "http://dbpedia.org/ontology/picture", "surface form": "movie"}, {"URI": "http://dbpedia.org/ontology/director", "surface form": "director"}, {"URI": "http://dbpedia.org/ontology/picture", "surface form": "photography"}, {"URI": "http://dbpedia.org/ontology/musicComposer", "surface form": "music composer"}]}, {"id": "2172", "question": [{"language": "en", "string": "Count the different origins of members of the Vitis Vinifera species."}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/species> <http://dbpedia.org/resource/Vitis_vinifera> . ?x <http://dbpedia.org/ontology/origin> ?uri . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Place>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "344"}}, "entities": [{"URI": "http://dbpedia.org/resource/Vitis_vinifera", "surface form": "Vitis Vinifera species"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": "count"}, {"URI": "http://dbpedia.org/ontology/family", "surface form": "origins"}, {"URI": "http://dbpedia.org/ontology/family", "surface form": "members"}]}, {"id": "2173", "question": [{"language": "en", "string": "Where was David Scherman trained ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/David_Scherman> <http://dbpedia.org/ontology/training> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dartmouth_College"}}, "entities": [{"URI": "http://dbpedia.org/resource/David_Scherman", "surface form": "David Scherman"}], "relations": [{"URI": "http://dbpedia.org/ontology/training", "surface form": "trained"}]}, {"id": "2174", "question": [{"language": "en", "string": "In which series has Sean Young portrayed someone?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/portrayer> <http://dbpedia.org/resource/Sean_Young> . ?x <http://dbpedia.org/ontology/series> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Blade_Runner"}}, "entities": [{"URI": "http://dbpedia.org/resource/Sean_Young", "surface form": "Sean Young"}], "relations": [{"URI": "http://dbpedia.org/ontology/series", "surface form": "series"}, {"URI": "http://dbpedia.org/ontology/portrayer", "surface form": "portrayed"}]}, {"id": "2175", "question": [{"language": "en", "string": "List all the hubs of the airline whose one of the hub is Subang, Indonesia ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/hubs> <http://dbpedia.org/resource/Subang,_Indonesia> . ?x <http://dbpedia.org/property/hubs> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Airline>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Selangor"}}, "entities": [{"URI": "http://dbpedia.org/resource/Subang,_Indonesia", "surface form": "Subang, Indonesia"}], "relations": [{"URI": "http://dbpedia.org/ontology/hubAirport", "surface form": "hubs"}, {"URI": "http://dbpedia.org/ontology/icaoAirlineCode", "surface form": "airline"}, {"URI": "http://dbpedia.org/property/centre", "surface form": "hub"}]}, {"id": "2176", "question": [{"language": "en", "string": "Who wrote the play in which Blanche DuBois is a character?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/characters> <http://dbpedia.org/resource/Blanche_DuBois> . ?x <http://dbpedia.org/property/writer> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Play>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tennessee_Williams"}}, "entities": [{"URI": "http://dbpedia.org/resource/Blanche_DuBois", "surface form": "Blanche DuBois"}], "relations": [{"URI": "http://dbpedia.org/property/author", "surface form": "wrote"}, {"URI": "http://dbpedia.org/ontology/starring", "surface form": "play"}, {"URI": "http://dbpedia.org/property/sign", "surface form": "character"}]}, {"id": "2177", "question": [{"language": "en", "string": "List the regions served by the company which serves in Pacific Ocean ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/regionServed> <http://dbpedia.org/resource/Pacific_Ocean> . ?x <http://dbpedia.org/ontology/regionServed> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Company>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Europe"}}, "entities": [{"URI": "http://dbpedia.org/resource/Pacific_Ocean", "surface form": "Pacific Ocean"}], "relations": [{"URI": "http://dbpedia.org/ontology/area", "surface form": "regions"}, {"URI": "http://dbpedia.org/ontology/regionServed", "surface form": "served"}, {"URI": "http://dbpedia.org/ontology/company", "surface form": "company"}, {"URI": "http://dbpedia.org/ontology/order", "surface form": "serves"}]}, {"id": "2178", "question": [{"language": "en", "string": "Give me the name of the organization hqed at Chaeng Watthana Govt Complex?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/headquarter> <http://dbpedia.org/resource/Chaeng_Watthana_Government_Complex> . ?x <http://dbpedia.org/property/agencyName> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Organisation>}"}, "answers": {"uri": {"type": "literal", "xml:lang": "en", "value": "Election Commission"}}, "entities": [{"URI": "http://dbpedia.org/resource/Chaeng_Mean_Chey", "surface form": "Chaeng Watthana Govt Complex"}], "relations": [{"URI": "http://dbpedia.org/ontology/name", "surface form": "name"}, {"URI": "http://dbpedia.org/ontology/company", "surface form": "organization hqed"}]}, {"id": "2179", "question": [{"language": "en", "string": "Who is the writer of the singles whose producer is Peter-John Vettese?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/producer> <http://dbpedia.org/resource/Peter-John_Vettese> . ?x <http://dbpedia.org/ontology/writer> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Single>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Robin_Gibb"}}, "entities": [{"URI": "http://dbpedia.org/resource/Peter-John_Vettese", "surface form": "Peter-John Vettese"}], "relations": [{"URI": "http://dbpedia.org/ontology/writer", "surface form": "writer"}, {"URI": "http://dbpedia.org/ontology/associate", "surface form": "singles"}, {"URI": "http://dbpedia.org/ontology/producer", "surface form": "producer"}]}, {"id": "2180", "question": [{"language": "en", "string": "Count the number of artist whose pone of the field is writing ?"}], "query": {"sparql": " SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/field> <http://dbpedia.org/resource/Writing> . ?x <http://dbpedia.org/ontology/field> ?uri }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "205"}}, "entities": [{"URI": "http://dbpedia.org/resource/Writing", "surface form": "writing"}], "relations": [{"URI": "http://dbpedia.org/ontology/time", "surface form": "count"}, {"URI": "http://dbpedia.org/ontology/artist", "surface form": "artist"}, {"URI": "http://dbpedia.org/ontology/colour", "surface form": "pone"}, {"URI": "http://dbpedia.org/ontology/field", "surface form": "field"}, {"URI": "http://dbpedia.org/ontology/language", "surface form": "writing"}]}, {"id": "2181", "question": [{"language": "en", "string": "Which veterans served at CBS?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/occupation> <http://dbpedia.org/resource/CBS> . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Arthur_Judson"}}, "entities": [{"URI": "http://dbpedia.org/resource/Veterans_Memorial_Bridge_(Chattanooga)", "surface form": "veterans"}, {"URI": "http://dbpedia.org/resource/CBS", "surface form": "CBS"}], "relations": [{"URI": "http://dbpedia.org/ontology/occupation", "surface form": "at"}]}, {"id": "2182", "question": [{"language": "en", "string": "What are some shareholders of the bridge maintained by the Massachusetts department of transportation?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/maintainedBy> <http://dbpedia.org/resource/Massachusetts_Department_of_Transportation> . ?x <http://dbpedia.org/property/owner> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Bridge>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Commonwealth_of_Massachusetts"}}, "entities": [{"URI": "http://dbpedia.org/resource/Massachusetts_Department_of_Transportation", "surface form": "Massachusetts department of transportation"}], "relations": [{"URI": "http://dbpedia.org/ontology/abstract", "surface form": "bridge"}, {"URI": "http://dbpedia.org/ontology/maintainedBy", "surface form": "maintained"}, {"URI": "http://dbpedia.org/ontology/movement", "surface form": "transportation"}]}, {"id": "2183", "question": [{"language": "en", "string": "Who attended Great Ayton university?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/education> <http://dbpedia.org/resource/Great_Ayton> . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/James_Cook"}}, "entities": [{"URI": "http://dbpedia.org/resource/Great_Ayton", "surface form": "Great Ayton university"}], "relations": [{"URI": "http://dbpedia.org/ontology/fat", "surface form": "attended"}]}, {"id": "2184", "question": [{"language": "en", "string": "Which field's journals are edited by Paul Morphy?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/editor> <http://dbpedia.org/resource/Paul_Morphy> . ?x <http://dbpedia.org/property/discipline> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/AcademicJournal>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chess"}}, "entities": [{"URI": "http://dbpedia.org/resource/Paul_Morphy", "surface form": "Paul Morphy"}], "relations": [{"URI": "http://dbpedia.org/ontology/field", "surface form": "field"}, {"URI": "http://dbpedia.org/property/journal", "surface form": " journals"}, {"URI": "http://dbpedia.org/ontology/editor", "surface form": "edited"}]}, {"id": "2185", "question": [{"language": "en", "string": "Count the awards received by Immunologists?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/fields> <http://dbpedia.org/resource/Immunology> . ?x <http://dbpedia.org/ontology/award> ?uri . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Award>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "79"}}, "entities": [{"URI": "http://dbpedia.org/resource/Mary_Collins_(immunologist)", "surface form": "Immunologists"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": "count"}, {"URI": "http://dbpedia.org/ontology/endowment", "surface form": "awards"}, {"URI": "http://dbpedia.org/ontology/board", "surface form": "received"}]}, {"id": "2186", "question": [{"language": "en", "string": "In which mountain Inyo National Forest and California are located?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/locatedInArea> <http://dbpedia.org/resource/Inyo_National_Forest> . ?uri <http://dbpedia.org/ontology/locatedInArea> <http://dbpedia.org/resource/California> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Mountain>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mammoth_Mountain__Mammoth_Mountain__1"}}, "entities": [{"URI": "http://dbpedia.org/resource/Inyo_National_Forest", "surface form": "mountain Inyo National Forest"}, {"URI": "http://dbpedia.org/resource/California", "surface form": "California"}], "relations": [{"URI": "http://dbpedia.org/ontology/locatedInArea", "surface form": "located"}]}, {"id": "2187", "question": [{"language": "en", "string": "What is the nickname of the club managed by Piotr baron?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/manager> <http://dbpedia.org/resource/Piotr_Baron> . ?x <http://dbpedia.org/property/nickname> ?uri . }"}, "answers": {"uri": {"type": "literal", "xml:lang": "en", "value": "Byki"}}, "entities": [{"URI": "http://dbpedia.org/resource/Piotr_Baron", "surface form": "Piotr baron"}], "relations": [{"URI": "http://dbpedia.org/ontology/manager", "surface form": "managed"}, {"URI": "http://dbpedia.org/property/nickname", "surface form": "nickname"}]}, {"id": "2188", "question": [{"language": "en", "string": "For how many different teams have the players debuted in Houston Astros played?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/debutTeam> <http://dbpedia.org/resource/Houston_Astros> . ?x <http://dbpedia.org/ontology/team> ?uri . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/SportsTeam>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "75"}}, "entities": [{"URI": "http://dbpedia.org/resource/Houston_Astros", "surface form": "Houston Astros"}], "relations": [{"URI": "http://dbpedia.org/property/team", "surface form": "teams"}, {"URI": "http://dbpedia.org/ontology/participant", "surface form": "players"}, {"URI": "http://dbpedia.org/ontology/debutTeam", "surface form": "debuted"}, {"URI": "http://dbpedia.org/ontology/participant", "surface form": "played"}]}, {"id": "2189", "question": [{"language": "en", "string": "Rostock and Oulu is the shore cities on which sea ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/cities> <http://dbpedia.org/resource/Rostock> . ?uri <http://dbpedia.org/property/cities> <http://dbpedia.org/resource/Oulu> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Sea>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Baltic_Sea"}}, "entities": [{"URI": "http://dbpedia.org/resource/Oulu", "surface form": "Oulu"}], "relations": [{"URI": "http://dbpedia.org/ontology/languageFamily", "surface form": "rostock"}, {"URI": "http://dbpedia.org/ontology/city", "surface form": "shore cities"}, {"URI": "http://dbpedia.org/ontology/elevation", "surface form": "sea"}]}, {"id": "2190", "question": [{"language": "en", "string": "How many different things are used as ingredients in Sweden?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/country> <http://dbpedia.org/resource/Sweden> . ?x <http://dbpedia.org/ontology/ingredient> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "141"}}, "entities": [{"URI": "http://dbpedia.org/resource/Sweden", "surface form": "Sweden"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": "in"}, {"URI": "http://dbpedia.org/ontology/ingredient", "surface form": "ingredient"}]}, {"id": "2191", "question": [{"language": "en", "string": "How many people have been the first one to scale a peak in the Yosemite Park?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/locatedInArea> <http://dbpedia.org/resource/Yosemite_National_Park> . ?x <http://dbpedia.org/ontology/firstAscentPerson> ?uri . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Person>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "8"}}, "entities": [{"URI": "http://dbpedia.org/resource/Yosemite_National_Park", "surface form": "Yosemite Park"}], "relations": [{"URI": "http://dbpedia.org/property/scale", "surface form": "scale"}, {"URI": "http://dbpedia.org/ontology/language", "surface form": "peak"}]}, {"id": "2192", "question": [{"language": "en", "string": "What are some licensees of the stations playing in Nashville, Tennessee?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/area> <http://dbpedia.org/resource/Nashville,_Tennessee> . ?x <http://dbpedia.org/property/licensee> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/RadioStation>}"}, "answers": {"uri": {"type": "literal", "xml:lang": "en", "value": "Community Broadcasting, Inc."}}, "entities": [{"URI": "http://dbpedia.org/resource/Nashville,_Tennessee", "surface form": "Nashville, Tennessee"}], "relations": [{"URI": "http://dbpedia.org/ontology/licensee", "surface form": "licensees"}, {"URI": "http://dbpedia.org/ontology/numberOfStations", "surface form": "stations"}, {"URI": "http://dbpedia.org/ontology/discharge", "surface form": "playing"}]}, {"id": "2193", "question": [{"language": "en", "string": "Which distributer of Bombay Sapphire also makes Grewy goose ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Grey_Goose_(vodka)> <http://dbpedia.org/property/manufacturer> ?uri. <http://dbpedia.org/resource/Bombay_Sapphire> <http://dbpedia.org/property/distributor> ?uri} "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bacardi"}}, "entities": [{"URI": "http://dbpedia.org/resource/Bombay_Sapphire", "surface form": "Bombay Sapphire also makes Grewy goose"}], "relations": [{"URI": "http://dbpedia.org/ontology/distributor", "surface form": "distributer"}]}, {"id": "2194", "question": [{"language": "en", "string": "Count the total number of bacterias whose division is Firmicutes and domain is Bacteria?"}], "query": {"sparql": " SELECT DISTINCT COUNT(?uri) WHERE {?uri <http://dbpedia.org/ontology/division> <http://dbpedia.org/resource/Firmicutes> . ?uri <http://dbpedia.org/property/domain> <http://dbpedia.org/resource/Bacteria> } "}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/Bacteriastrum_delicatulum", "surface form": "bacterias"}, {"URI": "http://dbpedia.org/resource/Firmicutes", "surface form": "Firmicutes"}, {"URI": "http://dbpedia.org/resource/Bacteria", "surface form": "Bacteria"}], "relations": [{"URI": "http://dbpedia.org/ontology/division", "surface form": "division"}, {"URI": "http://dbpedia.org/property/domain", "surface form": "domain"}]}, {"id": "2195", "question": [{"language": "en", "string": "Count me the number of people whose military unit is involved with Close air support ?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/role> <http://dbpedia.org/resource/Close_air_support> . ?uri <http://dbpedia.org/ontology/militaryUnit> ?x . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/MilitaryPerson>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "126"}}, "entities": [{"URI": "http://dbpedia.org/resource/15_Air_Assault_Close_Support_Squadron_RLC", "surface form": "Close air support"}], "relations": [{"URI": "http://dbpedia.org/ontology/type", "surface form": "count"}, {"URI": "http://dbpedia.org/ontology/garrison", "surface form": "military unit"}, {"URI": "http://dbpedia.org/ontology/address", "surface form": "involved"}]}, {"id": "2196", "question": [{"language": "en", "string": "What are some other great things by the person who produced Queer as Folk?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { <http://dbpedia.org/resource/Queer_as_Folk_(UK_TV_series)> <http://dbpedia.org/ontology/producer> ?x . ?x <http://dbpedia.org/property/notableworks> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Person>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/Queer_as_Folk_(UK_TV_series)", "surface form": "Queer as Folk"}], "relations": [{"URI": "http://dbpedia.org/ontology/person", "surface form": "person"}, {"URI": "http://dbpedia.org/ontology/wineProduced", "surface form": "produced"}]}, {"id": "2197", "question": [{"language": "en", "string": "Under which scientist did doctoral students erban ieica and Erich Bagge study?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/doctoralStudents> <http://dbpedia.org/resource/\u0218erban_\u021ai\u021beica> . ?uri <http://dbpedia.org/property/doctoralStudents> <http://dbpedia.org/resource/Erich_Bagge> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Scientist>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Werner_Heisenberg"}}, "entities": [{"URI": "http://dbpedia.org/resource/Scientist", "surface form": "scientist"}, {"URI": "http://dbpedia.org/resource/R\u00f3bert_Erban", "surface form": "doctoral students erban ieica"}, {"URI": "http://dbpedia.org/resource/Erich_Bagge", "surface form": "Erich Bagge study"}], "relations": []}, {"id": "2198", "question": [{"language": "en", "string": "Count the number of books whose author's were born in Alcal de Henares ?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/birthPlace> <http://dbpedia.org/resource/Alcal\u00e1_de_Henares> . ?uri <http://dbpedia.org/ontology/author> ?x . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Book>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "4"}}, "entities": [{"URI": "http://dbpedia.org/resource/Alcal\u00e1_de_Henares", "surface form": "Alcal de Henares"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": "count"}, {"URI": "http://dbpedia.org/ontology/volume", "surface form": "books"}, {"URI": "http://dbpedia.org/ontology/author", "surface form": "author"}, {"URI": "http://dbpedia.org/ontology/birthPlace", "surface form": "born"}]}, {"id": "2199", "question": [{"language": "en", "string": "List down all the baseball teams whose team manager was a Catcher?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/position> <http://dbpedia.org/resource/Catcher> . ?uri <http://dbpedia.org/ontology/manager> ?x . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/BaseballTeam>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chicago_Cubs"}}, "entities": [{"URI": "http://dbpedia.org/resource/Catcher", "surface form": "Catcher"}], "relations": [{"URI": "http://dbpedia.org/property/teams", "surface form": "baseball teams"}, {"URI": "http://dbpedia.org/ontology/director", "surface form": "team manager"}]}, {"id": "2200", "question": [{"language": "en", "string": "What is the alma mater of the James Still which is also the alma mater of Tom Maniatis?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/James_Still> <http://dbpedia.org/ontology/almaMater> ?uri. <http://dbpedia.org/resource/Tom_Maniatis> <http://dbpedia.org/property/almaMater> ?uri} "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vanderbilt_University"}}, "entities": [{"URI": "http://dbpedia.org/resource/James_Still", "surface form": "James Still"}, {"URI": "http://dbpedia.org/resource/Tom_Maniatis", "surface form": "Tom Maniatis"}], "relations": [{"URI": "http://dbpedia.org/ontology/almaMater", "surface form": "alma mater"}, {"URI": "http://dbpedia.org/ontology/almaMater", "surface form": "alma mater"}]}, {"id": "2201", "question": [{"language": "en", "string": "Where is the stadium of west Papus football team ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/West_Papua_football_team> <http://dbpedia.org/ontology/stadium> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Hague"}}, "entities": [{"URI": "http://dbpedia.org/resource/West_Papua_football_team", "surface form": "west Papus football team"}], "relations": [{"URI": "http://dbpedia.org/ontology/stadium", "surface form": "stadium"}]}, {"id": "2202", "question": [{"language": "en", "string": "In which racing championships did Bobby Beasley and Martin Molony participate?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Bobby_Beasley> <http://dbpedia.org/ontology/race> ?uri. <http://dbpedia.org/resource/Martin_Molony> <http://dbpedia.org/ontology/race> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cheltenham_Gold_Cup"}}, "entities": [{"URI": "http://dbpedia.org/resource/Bobby_Beasley", "surface form": "Bobby Beasley"}, {"URI": "http://dbpedia.org/resource/Martin_Molony", "surface form": "Martin Molony"}], "relations": [{"URI": "http://dbpedia.org/ontology/race", "surface form": "racing"}, {"URI": "http://dbpedia.org/ontology/race", "surface form": "racing"}]}, {"id": "2203", "question": [{"language": "en", "string": "What is the origin of the grape whose wine region is the Troodos Mountains ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/wineRegion> <http://dbpedia.org/resource/Troodos_Mountains> . ?x <http://dbpedia.org/ontology/origin> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Grape>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cyprus"}}, "entities": [{"URI": "http://dbpedia.org/resource/Troodos_Mountains", "surface form": "Troodos Mountains"}], "relations": [{"URI": "http://dbpedia.org/ontology/origin", "surface form": "origin"}, {"URI": "http://dbpedia.org/ontology/class", "surface form": "grape"}, {"URI": "http://dbpedia.org/ontology/state", "surface form": "wine region"}]}, {"id": "2204", "question": [{"language": "en", "string": "Whose families are Buccinoidea and Buccinidae?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/family> <http://dbpedia.org/resource/Buccinoidea> . ?uri <http://dbpedia.org/ontology/family> <http://dbpedia.org/resource/Buccinidae> . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Aeneator_attenuatus"}}, "entities": [{"URI": "http://dbpedia.org/resource/Buccinoidea", "surface form": "Buccinoidea"}, {"URI": "http://dbpedia.org/resource/Buccinidae", "surface form": "Buccinidae"}], "relations": [{"URI": "http://dbpedia.org/ontology/family", "surface form": "families"}, {"URI": "http://dbpedia.org/ontology/family", "surface form": "families"}]}, {"id": "2205", "question": [{"language": "en", "string": "Name the artist of Brad Paisley discography ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Brad_Paisley_discography> <http://dbpedia.org/property/artist> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Brad_Paisley"}}, "entities": [{"URI": "http://dbpedia.org/resource/Brad_Paisley_discography", "surface form": "Brad Paisley discography"}], "relations": [{"URI": "http://dbpedia.org/property/name", "surface form": "name"}, {"URI": "http://dbpedia.org/property/artist", "surface form": "artist"}]}, {"id": "2206", "question": [{"language": "en", "string": "Ernest Rutherford was the advisor of how many people?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE {?uri <http://dbpedia.org/property/doctoralAdvisor> <http://dbpedia.org/resource/Ernest_Rutherford> . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "15"}}, "entities": [{"URI": "http://dbpedia.org/resource/Ernest_Rutherford", "surface form": "Ernest rutherford"}], "relations": [{"URI": "http://dbpedia.org/ontology/doctoralAdvisor", "surface form": "advisor"}]}, {"id": "2207", "question": [{"language": "en", "string": "list all the chairman of Vancouver Whitecaps FC?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Vancouver_Whitecaps_FC> <http://dbpedia.org/property/chairman> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jeff_Mallett"}}, "entities": [{"URI": "http://dbpedia.org/resource/FC", "surface form": "FC"}, {"URI": "http://dbpedia.org/resource/Vancouver_Whitecaps_FC", "surface form": "Vancouver Whitecaps"}], "relations": [{"URI": "http://dbpedia.org/ontology/chairman", "surface form": "chairman"}]}, {"id": "2208", "question": [{"language": "en", "string": "What are some employees of Uni of California, santa cruz?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/employer> <http://dbpedia.org/resource/University_of_California,_Santa_Cruz> . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Edward_A._Shanken"}}, "entities": [{"URI": "http://dbpedia.org/resource/Santa_Cruz,_California", "surface form": "Uni of California, santa cruz"}], "relations": [{"URI": "http://dbpedia.org/property/employer", "surface form": "employees"}]}, {"id": "2209", "question": [{"language": "en", "string": "Which famous writer was married to Jill Krementz and had a son named Edith Vonnegut ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/spouse> <http://dbpedia.org/resource/Jill_Krementz> . ?uri <http://dbpedia.org/ontology/child> <http://dbpedia.org/resource/Edith_Vonnegut> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Writer>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kurt_Vonnegut"}}, "entities": [{"URI": "http://dbpedia.org/resource/Jill_Krementz", "surface form": "Jill Krementz"}, {"URI": "http://dbpedia.org/resource/Edith_Vonnegut", "surface form": "Edith Vonnegut"}], "relations": [{"URI": "http://dbpedia.org/property/established", "surface form": "famous writer"}, {"URI": "http://dbpedia.org/ontology/spouse", "surface form": "married"}, {"URI": "http://dbpedia.org/ontology/child", "surface form": "son"}]}, {"id": "2210", "question": [{"language": "en", "string": "Name the nearest city to Tennie and Laura ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Tennie_and_Laura_(schooner)> <http://dbpedia.org/property/nearestCity> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Port_Washington,_WI"}}, "entities": [{"URI": "http://dbpedia.org/resource/Tennie_and_Laura_(schooner)", "surface form": "Tennie and Laura"}], "relations": [{"URI": "http://dbpedia.org/property/nearestCity", "surface form": "nearest city"}]}, {"id": "2211", "question": [{"language": "en", "string": "How many TV shows have been created by Simon Fuller ?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE {?uri <http://dbpedia.org/property/creator> <http://dbpedia.org/resource/Simon_Fuller> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "61"}}, "entities": [{"URI": "http://dbpedia.org/resource/Tv_test_pattern", "surface form": "TV"}, {"URI": "http://dbpedia.org/resource/Simon_Fuller", "surface form": "Simon Fuller"}], "relations": [{"URI": "http://dbpedia.org/ontology/place", "surface form": "shows"}, {"URI": "http://dbpedia.org/ontology/creator", "surface form": "created"}]}, {"id": "2212", "question": [{"language": "en", "string": "What is the area of ITV (Thailand) ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/ITV_(Thailand)> <http://dbpedia.org/property/area> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Thailand"}}, "entities": [{"URI": "http://dbpedia.org/resource/ITV_(Thailand)", "surface form": "ITV (Thailand)"}], "relations": [{"URI": "http://dbpedia.org/ontology/area", "surface form": "area"}]}, {"id": "2213", "question": [{"language": "en", "string": "who all play for of the american football players at Quarterback position?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/position> <http://dbpedia.org/resource/Quarterback> . ?x <http://dbpedia.org/ontology/team> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/AmericanFootballPlayer>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tampa_Bay_Storm"}}, "entities": [{"URI": "http://dbpedia.org/resource/Quarterback", "surface form": "Quarterback"}], "relations": [{"URI": "http://dbpedia.org/ontology/starring", "surface form": "play"}]}, {"id": "2214", "question": [{"language": "en", "string": "Which televion show's theme music was given by Ron Grainer and is broadcasted by BBC HD ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/themeMusicComposer> <http://dbpedia.org/resource/Ron_Grainer> . ?uri <http://dbpedia.org/ontology/network> <http://dbpedia.org/resource/BBC_HD> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Doctor_Who"}}, "entities": [{"URI": "http://dbpedia.org/resource/Ron_Grainer", "surface form": "Ron Grainer"}, {"URI": "http://dbpedia.org/resource/BBC_HD", "surface form": "BBC HD"}], "relations": [{"URI": "http://dbpedia.org/ontology/picture", "surface form": "televion show"}, {"URI": "http://dbpedia.org/property/broadcaster", "surface form": "broadcasted"}]}, {"id": "2215", "question": [{"language": "en", "string": "What is the field of interest of the advisor of Henri Maspero ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Henri_Maspero> <http://dbpedia.org/ontology/academicAdvisor> ?x . ?x <http://dbpedia.org/property/fields> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sanskrit_literature"}}, "entities": [{"URI": "http://dbpedia.org/resource/Henri_Maspero", "surface form": "Henri Maspero"}], "relations": [{"URI": "http://dbpedia.org/ontology/academicAdvisor", "surface form": "advisor"}, {"URI": "http://dbpedia.org/property/fields", "surface form": "field"}]}, {"id": "2216", "question": [{"language": "en", "string": "Name the actor of Soylent Green to which Lydia Clarke is married ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Lydia_Clarke> <http://dbpedia.org/property/spouse> ?uri. <http://dbpedia.org/resource/Soylent_Green> <http://dbpedia.org/ontology/starring> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Charlton_Heston"}}, "entities": [{"URI": "http://dbpedia.org/resource/Lydia_Clarke", "surface form": "Lydia Clarke"}, {"URI": "http://dbpedia.org/resource/Soylent_Green", "surface form": "Soylent Green"}], "relations": [{"URI": "http://dbpedia.org/ontology/name", "surface form": "name"}, {"URI": "http://dbpedia.org/property/artist", "surface form": "actor"}, {"URI": "http://dbpedia.org/ontology/spouse", "surface form": "married"}]}, {"id": "2217", "question": [{"language": "en", "string": "Count the cities whihch are on the same sea as that of Miami ?"}], "query": {"sparql": " SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/cities> <http://dbpedia.org/resource/Miami> . ?x <http://dbpedia.org/property/cities> ?uri }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "23"}}, "entities": [{"URI": "http://dbpedia.org/resource/Haunted_Cities", "surface form": "cities whihch"}, {"URI": "http://dbpedia.org/resource/Miami", "surface form": "Miami"}], "relations": [{"URI": "http://dbpedia.org/property/cities", "surface form": "cities"}, {"URI": "http://dbpedia.org/property/cities", "surface form": "cities"}]}, {"id": "2218", "question": [{"language": "en", "string": "Who are the key people of FWD.us?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/FWD.us> <http://dbpedia.org/property/keyPeople> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Candice_Jones"}}, "entities": [{"URI": "http://dbpedia.org/resource/FWD.us", "surface form": "FWD.us"}], "relations": [{"URI": "http://dbpedia.org/property/keyPeople", "surface form": "key people"}]}, {"id": "2219", "question": [{"language": "en", "string": "Who is the executive producer of Into the Dalek ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Into_the_Dalek> <http://dbpedia.org/property/executiveProducer> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Brian_Minchin"}}, "entities": [{"URI": "http://dbpedia.org/resource/Into_the_Dalek", "surface form": "Into the Dalek"}], "relations": [{"URI": "http://dbpedia.org/property/executiveProducer", "surface form": "executive producer"}]}, {"id": "2220", "question": [{"language": "en", "string": "What team is famous for Robert Nederlander and also the debuting team of Gary Sanchez?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Robert_Nederlander> <http://dbpedia.org/ontology/knownFor> ?uri. <http://dbpedia.org/resource/Gary_S\u00e1nchez> <http://dbpedia.org/ontology/debutTeam> ?uri . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/SportsTeam>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/New_York_Yankees"}}, "entities": [{"URI": "http://dbpedia.org/resource/Robert_Nederlander", "surface form": "Robert Nederlander"}, {"URI": "http://dbpedia.org/resource/Gary_S\u00e1nchez", "surface form": "Gary Sanchez"}], "relations": [{"URI": "http://dbpedia.org/ontology/knownFor", "surface form": "famous for"}, {"URI": "http://dbpedia.org/ontology/debutTeam", "surface form": "debuting team"}]}, {"id": "2221", "question": [{"language": "en", "string": "Through how many cities does the river flowing into Arkansas go?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/mouthMountain> <http://dbpedia.org/resource/Arkansas> . ?x <http://dbpedia.org/ontology/city> ?uri . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/City>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/Arkansas", "surface form": "Arkansas"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": "cities"}, {"URI": "http://dbpedia.org/ontology/river", "surface form": "river"}, {"URI": "http://dbpedia.org/ontology/school", "surface form": "flowing"}]}, {"id": "2222", "question": [{"language": "en", "string": "How many things are manufactured by the company whose subsidiary is Sony Corporation shareholders and subsidiaries?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/subsidiary> <http://dbpedia.org/resource/Sony_Corporation_shareholders_and_subsidiaries> . ?uri <http://dbpedia.org/ontology/manufacturer> ?x . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/Sony_Corporation_shareholders_and_subsidiaries", "surface form": "Sony Corporation shareholders and subsidiaries"}], "relations": [{"URI": "http://dbpedia.org/ontology/product", "surface form": "manufactured"}, {"URI": "http://dbpedia.org/ontology/company", "surface form": "company"}, {"URI": "http://dbpedia.org/ontology/subsidiary", "surface form": "subsidiary"}]}, {"id": "2223", "question": [{"language": "en", "string": "What is the total number of office holders who preceded the people working under president bill clinton?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/president> <http://dbpedia.org/resource/Bill_Clinton> . ?uri <http://dbpedia.org/property/successor> ?x . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/OfficeHolder>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "434"}}, "entities": [], "relations": [{"URI": "http://dbpedia.org/ontology/result", "surface form": "total"}, {"URI": "http://dbpedia.org/ontology/arm", "surface form": "office holders"}, {"URI": "http://dbpedia.org/ontology/result", "surface form": "preceded"}, {"URI": "http://dbpedia.org/ontology/day", "surface form": "working"}, {"URI": "http://dbpedia.org/ontology/president", "surface form": "president"}, {"URI": "http://dbpedia.org/ontology/state", "surface form": "clinton"}]}, {"id": "2224", "question": [{"language": "en", "string": "In which other places are there companies which are in Ontario, too?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/locationCity> <http://dbpedia.org/resource/Ontario> . ?x <http://dbpedia.org/property/locations> ?uri . }"}, "answers": {"uri": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "452"}}, "entities": [{"URI": "http://dbpedia.org/resource/Companies_listed_on_the_New_York_Stock_Exchange_(J)", "surface form": "companies"}, {"URI": "http://dbpedia.org/resource/Ontario,_Indiana", "surface form": "Ontario,"}], "relations": [{"URI": "http://dbpedia.org/ontology/district", "surface form": "places"}]}, {"id": "2225", "question": [{"language": "en", "string": "In which companies boards do the writers of Wikitionary belong?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Wiktionary> <http://dbpedia.org/ontology/author> ?x . ?x <http://dbpedia.org/ontology/board> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Wikimedia_Foundation"}}, "entities": [{"URI": "http://dbpedia.org/resource/Under_the_Boards", "surface form": "companies boards"}, {"URI": "http://dbpedia.org/resource/Wiktionary", "surface form": "Wikitionary"}], "relations": [{"URI": "http://dbpedia.org/ontology/author", "surface form": "writers"}, {"URI": "http://dbpedia.org/ontology/date", "surface form": "belong"}]}, {"id": "2226", "question": [{"language": "en", "string": "How many nations' volleyball players have played for the Russian women volleyball team?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/nationalteam> <http://dbpedia.org/resource/Russia_women's_national_volleyball_team> . ?x <http://dbpedia.org/property/placeOfBirth> ?uri . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Country>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/The_Players_(film)", "surface form": " volleyball players"}, {"URI": "http://dbpedia.org/resource/Russia", "surface form": "Russian women volleyball team"}, {"URI": "http://dbpedia.org/resource/Russian_Volleyball_Super_League", "surface form": "Russian women volleyball team"}], "relations": [{"URI": "http://dbpedia.org/ontology/nationality", "surface form": "nations"}, {"URI": "http://dbpedia.org/ontology/participant", "surface form": "played"}, {"URI": "http://dbpedia.org/ontology/country", "surface form": ""}]}, {"id": "2227", "question": [{"language": "en", "string": "In how many places can I find people whose alma mater was in bachelor of arts?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/almaMater> <http://dbpedia.org/resource/Bachelor_of_Arts> . ?x <http://dbpedia.org/ontology/residence> ?uri . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Place>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "25"}}, "entities": [{"URI": "http://dbpedia.org/resource/I", "surface form": "I"}, {"URI": "http://dbpedia.org/resource/Bachelor_of_Science", "surface form": "bachelor"}], "relations": [{"URI": "http://dbpedia.org/ontology/height", "surface form": "places"}, {"URI": "http://dbpedia.org/ontology/almaMater", "surface form": "alma mater"}, {"URI": "http://dbpedia.org/ontology/country", "surface form": "arts"}]}, {"id": "2228", "question": [{"language": "en", "string": "Name the writer of South Park: The Stick of Truth ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/South_Park:_The_Stick_of_Truth> <http://dbpedia.org/ontology/writer> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Matt_Stone"}}, "entities": [{"URI": "http://dbpedia.org/resource/South_Park:_The_Stick_of_Truth", "surface form": "South Park: The Stick of Truth"}], "relations": [{"URI": "http://dbpedia.org/ontology/name", "surface form": "name"}, {"URI": "http://dbpedia.org/ontology/writer", "surface form": "writer"}]}, {"id": "2229", "question": [{"language": "en", "string": "Who owns Torrey Pines Gliderport?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Torrey_Pines_Gliderport> <http://dbpedia.org/property/owner> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/San_Diego,_California"}}, "entities": [{"URI": "http://dbpedia.org/resource/Torrey_Pines_Gliderport", "surface form": "Torrey Pines Gliderport"}], "relations": [{"URI": "http://dbpedia.org/property/owner", "surface form": "owns"}]}, {"id": "2230", "question": [{"language": "en", "string": "Which nationality of Newin Chidchob is also the nationality of Ajahn Sao Kantaslo ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Newin_Chidchob> <http://dbpedia.org/property/nationality> ?uri. <http://dbpedia.org/resource/Ajahn_Sao_Kantas\u012blo> <http://dbpedia.org/ontology/nationality> ?uri} "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Thailand"}}, "entities": [{"URI": "http://dbpedia.org/resource/Newin_Chidchob", "surface form": "Newin Chidchob"}, {"URI": "http://dbpedia.org/resource/Ajahn_Sao_Kantas\u012blo", "surface form": "Ajahn Sao Kantaslo"}], "relations": [{"URI": "http://dbpedia.org/property/nationality", "surface form": "nationality"}, {"URI": "http://dbpedia.org/property/nationality", "surface form": "nationality"}]}, {"id": "2231", "question": [{"language": "en", "string": "What is the label of things produced by the band If?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/artist> <http://dbpedia.org/resource/If_(band)> . ?x <http://dbpedia.org/property/label> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Island_Records"}}, "entities": [{"URI": "http://dbpedia.org/resource/If_(band)", "surface form": "band If"}], "relations": [{"URI": "http://dbpedia.org/property/label", "surface form": "label"}, {"URI": "http://dbpedia.org/ontology/wineProduced", "surface form": "produced"}]}, {"id": "2232", "question": [{"language": "en", "string": "List the goverener of Winston Bryant?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Winston_Bryant> <http://dbpedia.org/property/governor> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/David_Pryor"}}, "entities": [{"URI": "http://dbpedia.org/resource/Winston_Bryant", "surface form": "Winston Bryant"}], "relations": [{"URI": "http://dbpedia.org/property/governor", "surface form": "goverener"}]}, {"id": "2233", "question": [{"language": "en", "string": "Count the movies directed by Tim Burton and music composer Danny Elfman ?"}], "query": {"sparql": " SELECT DISTINCT COUNT(?uri) WHERE {?uri <http://dbpedia.org/property/music> <http://dbpedia.org/resource/Danny_Elfman> . ?uri <http://dbpedia.org/property/director> <http://dbpedia.org/resource/Tim_Burton> } "}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "15"}}, "entities": [{"URI": "http://dbpedia.org/resource/Tim_Burton", "surface form": "Tim Burton"}, {"URI": "http://dbpedia.org/resource/Jenna_Elfman", "surface form": "music composer Danny Elfman"}], "relations": [{"URI": "http://dbpedia.org/property/music", "surface form": "music composer"}, {"URI": "http://dbpedia.org/property/director", "surface form": "directed"}]}, {"id": "2234", "question": [{"language": "en", "string": "Erik Jendresen is writer and Play tone is company of which TV show ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/writer> <http://dbpedia.org/resource/Erik_Jendresen> . ?uri <http://dbpedia.org/property/company> <http://dbpedia.org/resource/Playtone> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Band_of_Brothers_(miniseries)"}}, "entities": [{"URI": "http://dbpedia.org/resource/Erik_Jendresen", "surface form": "Erik Jendresen"}, {"URI": "http://dbpedia.org/resource/Playtone", "surface form": "tone play"}], "relations": [{"URI": "http://dbpedia.org/ontology/writer", "surface form": "writer"}, {"URI": "http://dbpedia.org/ontology/team", "surface form": "Play"}, {"URI": "http://dbpedia.org/property/direction", "surface form": "tone"}, {"URI": "http://dbpedia.org/ontology/company", "surface form": "company"}, {"URI": "http://dbpedia.org/ontology/show", "surface form": "show"}]}, {"id": "2235", "question": [{"language": "en", "string": "From which genres of music did those genres emerge where drums are important?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/instruments> <http://dbpedia.org/resource/Drum_kit> . ?x <http://dbpedia.org/ontology/stylisticOrigin> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/MusicGenre>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/American_march_music"}}, "entities": [{"URI": "http://dbpedia.org/resource/Drums_Around_the_World", "surface form": "drums"}], "relations": [{"URI": "http://dbpedia.org/ontology/genre", "surface form": "genres"}, {"URI": "http://dbpedia.org/ontology/musicSubgenre", "surface form": "music"}, {"URI": "http://dbpedia.org/ontology/genre", "surface form": "genres"}, {"URI": "http://dbpedia.org/ontology/result", "surface form": "emerge"}]}, {"id": "2236", "question": [{"language": "en", "string": "Who is the appointer of Earl B. Ruth ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Earl_B._Ruth> <http://dbpedia.org/property/appointer> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gerald_Ford"}}, "entities": [{"URI": "http://dbpedia.org/resource/B", "surface form": "B"}, {"URI": "http://dbpedia.org/resource/Earl_B._Ruth", "surface form": "Earl Ruth"}], "relations": [{"URI": "http://dbpedia.org/ontology/appointer", "surface form": "appointer"}]}, {"id": "2237", "question": [{"language": "en", "string": "To which educational institutes is Samuel Isham associated to?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Samuel_Isham> <http://dbpedia.org/property/education> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Phillips_Academy"}}, "entities": [{"URI": "http://dbpedia.org/resource/Samuel_Isham", "surface form": "Samuel Isham"}], "relations": [{"URI": "http://dbpedia.org/property/education", "surface form": "education"}]}, {"id": "2238", "question": [{"language": "en", "string": "Give me a count of mammals whose family is Canidae?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE {?uri <http://dbpedia.org/ontology/family> <http://dbpedia.org/resource/Canidae> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Mammal>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/Mammals_of_the_Indiana_Dunes", "surface form": "mammals"}, {"URI": "http://dbpedia.org/resource/Canidae", "surface form": "Canidae"}], "relations": [{"URI": "http://dbpedia.org/ontology/family", "surface form": "family"}, {"URI": "http://dbpedia.org/ontology/Mammal", "surface form": "mammal"}]}, {"id": "2239", "question": [{"language": "en", "string": "Name the champion of National League ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/National_League> <http://dbpedia.org/property/champion> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Atlanta_Braves"}}, "entities": [{"URI": "http://dbpedia.org/resource/National_League", "surface form": "National League"}], "relations": [{"URI": "http://dbpedia.org/ontology/name", "surface form": "name"}, {"URI": "http://dbpedia.org/property/champion", "surface form": "champion"}]}, {"id": "2240", "question": [{"language": "en", "string": "List the total number of awards of the musicals who have won Tony Award?"}], "query": {"sparql": " SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/awards> <http://dbpedia.org/resource/Tony_Award> . ?x <http://dbpedia.org/property/awards> ?uri }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "54"}}, "entities": [{"URI": "http://dbpedia.org/resource/Tony_Award", "surface form": "Tony Award"}], "relations": [{"URI": "http://dbpedia.org/property/awards", "surface form": "awards"}, {"URI": "http://dbpedia.org/property/awards", "surface form": "awards"}]}, {"id": "2241", "question": [{"language": "en", "string": "What is the debut team of people born in Vargas?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/birthPlace> <http://dbpedia.org/resource/Vargas_(state)> . ?x <http://dbpedia.org/property/debutteam> ?uri . }"}, "answers": {"uri": {"type": "literal", "xml:lang": "en", "value": "St. Louis Cardinals"}}, "entities": [{"URI": "http://dbpedia.org/resource/Vargas_(state)", "surface form": "Vargas"}], "relations": [{"URI": "http://dbpedia.org/ontology/birthPlace", "surface form": "born in"}, {"URI": "http://dbpedia.org/property/debutteam", "surface form": "debut team"}]}, {"id": "2242", "question": [{"language": "en", "string": "What is the product of the BBC Multimedia and is the theme of Visions, the convention?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/BBC_Multimedia> <http://dbpedia.org/ontology/product> ?uri. <http://dbpedia.org/resource/Visions_(convention)> <http://dbpedia.org/property/genre> ?uri} "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Doctor_Who"}}, "entities": [{"URI": "http://dbpedia.org/resource/BBC", "surface form": "BBC"}, {"URI": "http://dbpedia.org/resource/Multimedia", "surface form": "Multimedia"}, {"URI": "http://dbpedia.org/resource/Visions_of_Dennis_Brown", "surface form": "Visions,"}], "relations": [{"URI": "http://dbpedia.org/ontology/product", "surface form": "product"}, {"URI": "http://dbpedia.org/property/text", "surface form": "theme"}, {"URI": "http://dbpedia.org/ontology/company", "surface form": "convention"}]}, {"id": "2243", "question": [{"language": "en", "string": "Count the awards received by the ones who fought the battle of france?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/battle> <http://dbpedia.org/resource/Battle_of_France> . ?x <http://dbpedia.org/ontology/award> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "661"}}, "entities": [{"URI": "http://dbpedia.org/resource/Battle_of_France", "surface form": "battle of france"}], "relations": [{"URI": "http://dbpedia.org/ontology/time", "surface form": "count"}, {"URI": "http://dbpedia.org/ontology/award", "surface form": "awards"}, {"URI": "http://dbpedia.org/ontology/board", "surface form": "received"}, {"URI": "http://dbpedia.org/ontology/nerve", "surface form": "fought"}, {"URI": "http://dbpedia.org/ontology/battle", "surface form": "battle"}, {"URI": "http://dbpedia.org/ontology/field", "surface form": "france"}]}, {"id": "2244", "question": [{"language": "en", "string": "How many people play for the Dallas Cowboys?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE {?uri <http://dbpedia.org/ontology/team> <http://dbpedia.org/resource/Dallas_Cowboys> . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "213"}}, "entities": [{"URI": "http://dbpedia.org/resource/Dallas_Cowboys", "surface form": "Dallas Cowboys"}], "relations": [{"URI": "http://dbpedia.org/ontology/team", "surface form": "play"}]}, {"id": "2245", "question": [{"language": "en", "string": "Who was the designer of john madden Football '92 ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/John_Madden_Football_'92> <http://dbpedia.org/property/designer> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/John_Madden"}}, "entities": [{"URI": "http://dbpedia.org/resource/John_Madden_Football_'92", "surface form": "john madden Football "}, {"URI": "http://dbpedia.org/resource/92", "surface form": "92"}], "relations": [{"URI": "http://dbpedia.org/ontology/designer", "surface form": "designer"}]}, {"id": "2246", "question": [{"language": "en", "string": "Which are the television show which have been created by Donald Wilson?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/creator> <http://dbpedia.org/resource/Donald_Wilson_(writer_and_producer)> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Doctor_Who"}}, "entities": [{"URI": "http://dbpedia.org/resource/Donald_Wilson_(writer_and_producer)", "surface form": "Donald Wilson"}], "relations": [{"URI": "http://dbpedia.org/ontology/creator", "surface form": "created by"}, {"URI": "http://dbpedia.org/ontology/TelevisionShow", "surface form": "television show"}]}, {"id": "2247", "question": [{"language": "en", "string": "Count all the Colonels?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE {?uri <http://dbpedia.org/property/rank> <http://dbpedia.org/resource/Colonel_(United_States)> . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "568"}}, "entities": [{"URI": "http://dbpedia.org/resource/Colonels_Softball_Complex", "surface form": "Colonels"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": "count"}]}, {"id": "2248", "question": [{"language": "en", "string": "What sports can be played at universities in Metro Manila?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/state> <http://dbpedia.org/resource/Metro_Manila> . ?x <http://dbpedia.org/property/athletics> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/University>}"}, "answers": {"uri": {"type": "literal", "xml:lang": "en", "value": "SAPRISA, MAPSA, City Division of San Juan"}}, "entities": [{"URI": "http://dbpedia.org/resource/Universities_Ireland", "surface form": "universities"}, {"URI": "http://dbpedia.org/resource/Metro_Manila", "surface form": "Metro Manila"}], "relations": [{"URI": "http://dbpedia.org/ontology/athletics", "surface form": "sports"}, {"URI": "http://dbpedia.org/ontology/portrayer", "surface form": "played"}]}, {"id": "2249", "question": [{"language": "en", "string": "What team has Sam Keller and Jim McMilin played for?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Sam_Keller> <http://dbpedia.org/ontology/formerTeam> ?uri. <http://dbpedia.org/resource/Jim_McMillin> <http://dbpedia.org/ontology/team> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Oakland_Raiders"}}, "entities": [{"URI": "http://dbpedia.org/resource/Sam_Keller", "surface form": "Sam Keller"}, {"URI": "http://dbpedia.org/resource/James_%22Jim%22_Orenthal", "surface form": "Jim McMilin"}], "relations": [{"URI": "http://dbpedia.org/ontology/team", "surface form": "team"}, {"URI": "http://dbpedia.org/ontology/portrayer", "surface form": "played"}]}, {"id": "2250", "question": [{"language": "en", "string": "What has location as Ontario?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/location> <http://dbpedia.org/resource/Ontario> . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/1961_Canadian_Grand_Prix"}}, "entities": [{"URI": "http://dbpedia.org/resource/Ontario", "surface form": "Ontario"}], "relations": [{"URI": "http://dbpedia.org/ontology/location", "surface form": "location"}]}, {"id": "2251", "question": [{"language": "en", "string": "Where was Juno I launched from ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Juno_I> <http://dbpedia.org/ontology/launchSite> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cape_Canaveral_Launch_Complex_26"}}, "entities": [{"URI": "http://dbpedia.org/resource/Juno_I", "surface form": "Juno I"}], "relations": [{"URI": "http://dbpedia.org/ontology/launchSite", "surface form": "launched"}]}, {"id": "2252", "question": [{"language": "en", "string": "In which sects was the aristocrat venerated, whose parent is Thelred the Unready?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/parent> <http://dbpedia.org/resource/\u00c6thelred_the_Unready> . ?x <http://dbpedia.org/property/veneratedIn> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Royalty>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Catholic_Church"}}, "entities": [{"URI": "http://dbpedia.org/resource/\u00c6thelred_the_Unready", "surface form": "Thelred the Unready parent"}], "relations": [{"URI": "http://dbpedia.org/ontology/seatingCapacity", "surface form": "sects"}]}, {"id": "2253", "question": [{"language": "en", "string": "What was a common first team at the 1967 Mexican Grand Prix and 1971 US one?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/1967_Mexican_Grand_Prix> <http://dbpedia.org/property/firstTeam> ?uri. <http://dbpedia.org/resource/1971_United_States_Grand_Prix> <http://dbpedia.org/property/firstTeam> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ford_Motor_Company"}}, "entities": [{"URI": "http://dbpedia.org/resource/1967_Mexican_Grand_Prix", "surface form": "1967 Mexican Grand Prix"}, {"URI": "http://dbpedia.org/resource/United_States", "surface form": "US"}, {"URI": "http://dbpedia.org/resource/1971", "surface form": "1971"}], "relations": [{"URI": "http://dbpedia.org/ontology/genre", "surface form": "common"}, {"URI": "http://dbpedia.org/ontology/team", "surface form": "team"}]}, {"id": "2254", "question": [{"language": "en", "string": "What are some common ingredients used in Swedish dishes?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/country> <http://dbpedia.org/resource/Sweden> . ?x <http://dbpedia.org/ontology/ingredient> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rye_bread"}}, "entities": [{"URI": "http://dbpedia.org/resource/Sweden", "surface form": "Swedish dishes"}, {"URI": "http://dbpedia.org/resource/Tableware", "surface form": "Swedish dishes"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": "in"}, {"URI": "http://dbpedia.org/ontology/ingredient", "surface form": "ingredient"}]}, {"id": "2255", "question": [{"language": "en", "string": "Where did Rheinmetall MG 60 originated ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Rheinmetall_MG_60> <http://dbpedia.org/ontology/origin> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/West_Germany"}}, "entities": [{"URI": "http://dbpedia.org/resource/MG", "surface form": "MG"}, {"URI": "http://dbpedia.org/resource/Rheinmetall_MG_60", "surface form": "Rheinmetall 60"}], "relations": [{"URI": "http://dbpedia.org/ontology/origin", "surface form": "origin"}]}, {"id": "2256", "question": [{"language": "en", "string": "Gregg Toland cinematographed how many things?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE {?uri <http://dbpedia.org/ontology/cinematography> <http://dbpedia.org/resource/Gregg_Toland> . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "62"}}, "entities": [{"URI": "http://dbpedia.org/resource/Gregg_Toland", "surface form": "Gregg toland"}], "relations": [{"URI": "http://dbpedia.org/ontology/cinematography", "surface form": "cinematographed"}]}, {"id": "2257", "question": [{"language": "en", "string": "List the birth city of the politicians of Democratic Party."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/party> <http://dbpedia.org/resource/Democratic_Party_(United_States)> . ?x <http://dbpedia.org/ontology/birthPlace> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Politician>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Brooklyn"}}, "entities": [{"URI": "http://dbpedia.org/resource/Politicians_of_The_Wire", "surface form": "politicians"}, {"URI": "http://dbpedia.org/resource/Democratic_Party", "surface form": "Democratic Party"}], "relations": [{"URI": "http://dbpedia.org/ontology/city", "surface form": "birth city"}]}, {"id": "2258", "question": [{"language": "en", "string": "Give me the total number of lines owned by owner of Mwtro-Noth Railroad ?"}], "query": {"sparql": " SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/owner> <http://dbpedia.org/resource/Metro-North_Railroad> . ?x <http://dbpedia.org/property/owner> ?uri }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "15"}}, "entities": [{"URI": "http://dbpedia.org/resource/Metro-North_Railroad", "surface form": "Mwtro-Noth Railroad"}], "relations": [{"URI": "http://dbpedia.org/ontology/populationTotal", "surface form": "total"}, {"URI": "http://dbpedia.org/ontology/lyrics", "surface form": "lines"}, {"URI": "http://dbpedia.org/ontology/subsidiary", "surface form": "owned"}, {"URI": "http://dbpedia.org/ontology/owner", "surface form": "owner"}]}, {"id": "2259", "question": [{"language": "en", "string": "How many television shows are broadcasted on Fox Broadcasting Company?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE {?uri <http://dbpedia.org/ontology/channel> <http://dbpedia.org/resource/Fox_Broadcasting_Company> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "142"}}, "entities": [{"URI": "http://dbpedia.org/resource/Fox_Broadcasting_Company", "surface form": "Fox Broadcasting Company"}], "relations": [{"URI": "http://dbpedia.org/property/television", "surface form": "television shows"}, {"URI": "http://dbpedia.org/property/broadcaster", "surface form": "broadcasted"}]}, {"id": "2260", "question": [{"language": "en", "string": "What are some tv shows created by Simon Fuller?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/creator> <http://dbpedia.org/resource/Simon_Fuller> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/American_Idol"}}, "entities": [{"URI": "http://dbpedia.org/resource/Simon_Fuller", "surface form": "Simon Fuller"}], "relations": [{"URI": "http://dbpedia.org/ontology/production", "surface form": "shows"}, {"URI": "http://dbpedia.org/ontology/creator", "surface form": "created"}]}, {"id": "2261", "question": [{"language": "en", "string": "How many states are in the Mediterranean Basketball Association?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { <http://dbpedia.org/resource/Mediterranean_Basketball_Association> <http://dbpedia.org/ontology/country> ?uri . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Place>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "8"}}, "entities": [{"URI": "http://dbpedia.org/resource/Mediterranean_Basketball_Association", "surface form": "Mediterranean Basketball Association"}], "relations": []}, {"id": "2262", "question": [{"language": "en", "string": "Who wrote the singles on the Main Course?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/album> <http://dbpedia.org/resource/Main_Course> . ?x <http://dbpedia.org/property/writer> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Single>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Barry,_Robin_&_Maurice_Gibb"}}, "entities": [{"URI": "http://dbpedia.org/resource/Main_Course", "surface form": "Main Course"}], "relations": [{"URI": "http://dbpedia.org/ontology/writer", "surface form": "wrote"}, {"URI": "http://dbpedia.org/ontology/associate", "surface form": "singles"}]}, {"id": "2263", "question": [{"language": "en", "string": "In how many places can I find people who were the architects of the Dundas Castle?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { <http://dbpedia.org/resource/Dundas_Castle_(Roscoe,_New_York)> <http://dbpedia.org/property/architecture> ?x . ?x <http://dbpedia.org/property/region> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/I", "surface form": "I"}, {"URI": "http://dbpedia.org/resource/Dundas_Castle", "surface form": "Dundas Castle"}], "relations": [{"URI": "http://dbpedia.org/ontology/height", "surface form": "places"}, {"URI": "http://dbpedia.org/ontology/architect", "surface form": "architects"}]}, {"id": "2264", "question": [{"language": "en", "string": "List all the children of Barbara Bush?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Barbara_Bush> <http://dbpedia.org/property/children> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/George_W._Bush"}}, "entities": [{"URI": "http://dbpedia.org/resource/Barbara_Bush", "surface form": "Barbara Bush"}], "relations": [{"URI": "http://dbpedia.org/property/children", "surface form": "children"}]}, {"id": "2265", "question": [{"language": "en", "string": "Who trained the wrestlers who are billed in Wisconsin?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/billed> <http://dbpedia.org/resource/Wisconsin> . ?x <http://dbpedia.org/ontology/trainer> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Wrestler>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Arn_Anderson"}}, "entities": [{"URI": "http://dbpedia.org/resource/Wrestlers_(sculpture)", "surface form": "Wrestlers"}, {"URI": "http://dbpedia.org/resource/Wisconsin", "surface form": "Wisconsin"}], "relations": [{"URI": "http://dbpedia.org/ontology/trainer", "surface form": "trained"}, {"URI": "http://dbpedia.org/ontology/billed", "surface form": "billed"}]}, {"id": "2266", "question": [{"language": "en", "string": "How many cities are around the sea in which the ionian sea flows?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { <http://dbpedia.org/resource/Ionian_Sea> <http://dbpedia.org/ontology/outflow> ?x . ?x <http://dbpedia.org/property/cities> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Sea>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "1"}}, "entities": [], "relations": [{"URI": "http://dbpedia.org/ontology/city", "surface form": "cities"}, {"URI": "http://dbpedia.org/ontology/lake", "surface form": "sea"}, {"URI": "http://dbpedia.org/ontology/lake", "surface form": "ionian sea"}, {"URI": "http://dbpedia.org/ontology/circulation", "surface form": "flows"}]}, {"id": "2267", "question": [{"language": "en", "string": "What all is produced by companies in Douglas, Isle of Man?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/locationCity> <http://dbpedia.org/resource/Douglas,_Isle_of_Man> . ?x <http://dbpedia.org/ontology/product> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Company>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Foxy_Bingo"}}, "entities": [{"URI": "http://dbpedia.org/resource/Companies_listed_on_the_New_York_Stock_Exchange_(J)", "surface form": "companies"}, {"URI": "http://dbpedia.org/resource/Douglas,_Isle_of_Man", "surface form": "Douglas, Isle of Man"}], "relations": [{"URI": "http://dbpedia.org/ontology/wineProduced", "surface form": "produced"}]}, {"id": "2268", "question": [{"language": "en", "string": "Miguel de Cervantes wrote the musical extended from which book?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/author> <http://dbpedia.org/resource/Miguel_de_Cervantes> . ?x <http://dbpedia.org/ontology/basedOn> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Musical>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Don_Quixote"}}, "entities": [{"URI": "http://dbpedia.org/resource/Miguel_de_Cervantes", "surface form": "miguel de Cervantes"}], "relations": [{"URI": "http://dbpedia.org/property/author", "surface form": "wrote"}, {"URI": "http://dbpedia.org/ontology/show", "surface form": "musical"}, {"URI": "http://dbpedia.org/ontology/languageFamily", "surface form": "extended"}, {"URI": "http://dbpedia.org/ontology/volume", "surface form": "book"}]}, {"id": "2269", "question": [{"language": "en", "string": "Who had headed the governmental agencies whose admin HQ was in Niederkirchnerstrasse?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/headquarter> <http://dbpedia.org/resource/Niederkirchnerstra\u00dfe> . ?x <http://dbpedia.org/ontology/leader> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/GovernmentAgency>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Heinrich_Himmler"}}, "entities": [{"URI": "http://dbpedia.org/resource/HQ", "surface form": "HQ"}, {"URI": "http://dbpedia.org/resource/IBM_WebSphere_Application_Server", "surface form": "admin was in Niederkirchnerstrasse"}], "relations": [{"URI": "http://dbpedia.org/ontology/leader", "surface form": "headed"}, {"URI": "http://dbpedia.org/ontology/state", "surface form": "governmental agencies"}]}, {"id": "2270", "question": [{"language": "en", "string": "Where does the Kentucky cycle take place?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/The_Kentucky_Cycle> <http://dbpedia.org/property/place> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Seattle,_Washington"}}, "entities": [{"URI": "http://dbpedia.org/resource/The_Kentucky_Cycle", "surface form": "Kentucky cycle"}], "relations": [{"URI": "http://dbpedia.org/ontology/place", "surface form": "place"}]}, {"id": "2271", "question": [{"language": "en", "string": "What basketball league's champion is Golden State Warriors"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/champion> <http://dbpedia.org/resource/Golden_State_Warriors> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/BasketballLeague>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Western_Conference_(NBA)"}}, "entities": [{"URI": "http://dbpedia.org/resource/Golden_State_Warriors", "surface form": "Golden State Warriors"}], "relations": [{"URI": "http://dbpedia.org/property/champion", "surface form": "champion"}, {"URI": "http://dbpedia.org/ontology/BasketballLeague", "surface form": "basketball league"}]}, {"id": "2272", "question": [{"language": "en", "string": "Count the number of fileds of the scientist whose one of the interest is Chinese poetry ?"}], "query": {"sparql": " SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/fields> <http://dbpedia.org/resource/Chinese_poetry> . ?x <http://dbpedia.org/property/fields> ?uri }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "6"}}, "entities": [{"URI": "http://dbpedia.org/resource/Scientist", "surface form": "scientist"}, {"URI": "http://dbpedia.org/resource/China", "surface form": "Chinese poetry"}, {"URI": "http://dbpedia.org/resource/Chinese_poetry", "surface form": "Chinese poetry"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": "count"}, {"URI": "http://dbpedia.org/ontology/country", "surface form": "fileds"}, {"URI": "http://dbpedia.org/ontology/country", "surface form": ""}]}, {"id": "2273", "question": [{"language": "en", "string": "What organisations purpose is Peace?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/purpose> <http://dbpedia.org/resource/Peace> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Organisation>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Greenpeace_Nordic"}}, "entities": [{"URI": "http://dbpedia.org/resource/Peace", "surface form": "Peace"}], "relations": [{"URI": "http://dbpedia.org/property/purpose", "surface form": "purpose"}, {"URI": "http://dbpedia.org/ontology/Organisation", "surface form": "organisation"}]}, {"id": "2274", "question": [{"language": "en", "string": "In how many different teams have all those who have played as a defenceman been?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/position> <http://dbpedia.org/resource/Defenceman> . ?x <http://dbpedia.org/property/playedFor> ?uri . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/SportsTeam>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "7025"}}, "entities": [{"URI": "http://dbpedia.org/resource/Defenceman", "surface form": "Defenceman"}], "relations": [{"URI": "http://dbpedia.org/ontology/numberOfTeams", "surface form": "teams"}, {"URI": "http://dbpedia.org/ontology/portrayer", "surface form": "played"}]}, {"id": "2275", "question": [{"language": "en", "string": "How many teams have used the stadiums which have been rented by the Canadian Hockey team?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/tenant> <http://dbpedia.org/resource/Hockey_Canada> . ?x <http://dbpedia.org/property/tenants> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "13"}}, "entities": [{"URI": "http://dbpedia.org/resource/Hockey_Canada", "surface form": "Canadian"}], "relations": [{"URI": "http://dbpedia.org/property/team", "surface form": "teams"}, {"URI": "http://dbpedia.org/ontology/ground", "surface form": "stadiums"}, {"URI": "http://dbpedia.org/ontology/tenant", "surface form": "rented"}, {"URI": "http://dbpedia.org/ontology/country", "surface form": ""}]}, {"id": "2276", "question": [{"language": "en", "string": "How many teams have LA kings players in them currently?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/formerTeam> <http://dbpedia.org/resource/Los_Angeles_Kings> . ?x <http://dbpedia.org/ontology/team> ?uri . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/SportsTeam>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "61"}}, "entities": [{"URI": "http://dbpedia.org/resource/Los_Angeles_Kings", "surface form": "LA kings"}], "relations": [{"URI": "http://dbpedia.org/ontology/numberOfTeams", "surface form": "teams"}]}, {"id": "2277", "question": [{"language": "en", "string": "What is the television show whose developer is J. Michael Straczynski?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/developer> <http://dbpedia.org/resource/J._Michael_Straczynski> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jayce_and_the_Wheeled_Warriors"}}, "entities": [{"URI": "http://dbpedia.org/resource/J", "surface form": "J"}, {"URI": "http://dbpedia.org/resource/J._Michael_Straczynski", "surface form": "Michael Straczynski"}], "relations": [{"URI": "http://dbpedia.org/ontology/transmission", "surface form": "television show"}, {"URI": "http://dbpedia.org/ontology/developer", "surface form": "developer"}]}, {"id": "2278", "question": [{"language": "en", "string": "list the organisation with motive for peace and environmentalism?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/purpose> <http://dbpedia.org/resource/Peace> . ?uri <http://dbpedia.org/property/purpose> <http://dbpedia.org/resource/Environmentalism> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Organisation>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Greenpeace_Nordic"}}, "entities": [{"URI": "http://dbpedia.org/resource/Environmentalism", "surface form": "environmentalism"}], "relations": [{"URI": "http://dbpedia.org/ontology/organisation", "surface form": "organisation"}, {"URI": "http://dbpedia.org/ontology/field", "surface form": "motive"}, {"URI": "http://dbpedia.org/property/content", "surface form": "peace"}]}, {"id": "2279", "question": [{"language": "en", "string": "What is the content license of Darcs ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Darcs> <http://dbpedia.org/ontology/license> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/GNU_General_Public_License"}}, "entities": [{"URI": "http://dbpedia.org/resource/Darcs", "surface form": "Darcs"}], "relations": [{"URI": "http://dbpedia.org/ontology/license", "surface form": "content license"}]}, {"id": "2280", "question": [{"language": "en", "string": "Name a military unit whose command structure is United States Department of the Navy and garrison is Arlington County, Virginia?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/commandStructure> <http://dbpedia.org/resource/United_States_Department_of_the_Navy> . ?uri <http://dbpedia.org/ontology/garrison> <http://dbpedia.org/resource/Arlington_County,_Virginia> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/MilitaryUnit>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/United_States_Marine_Corps"}}, "entities": [{"URI": "http://dbpedia.org/resource/United_States_Navy", "surface form": "United States Department of the Navy"}, {"URI": "http://dbpedia.org/resource/Arlington_County,_Virginia", "surface form": "Arlington County, Virginia"}], "relations": [{"URI": "http://dbpedia.org/property/name", "surface form": "name"}, {"URI": "http://dbpedia.org/ontology/garrison", "surface form": "military unit"}, {"URI": "http://dbpedia.org/ontology/commandStructure", "surface form": "command structure"}, {"URI": "http://dbpedia.org/ontology/garrison", "surface form": "garrison"}]}, {"id": "2281", "question": [{"language": "en", "string": "List all the artist of albums which have been produced by Stephen Kozmeniuk ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/producer> <http://dbpedia.org/resource/Stephen_Kozmeniuk> . ?x <http://dbpedia.org/property/artist> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Album>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dermot_Kennedy"}}, "entities": [{"URI": "http://dbpedia.org/resource/Stephen_Kozmeniuk", "surface form": "Stephen Kozmeniuk"}], "relations": [{"URI": "http://dbpedia.org/ontology/artist", "surface form": "artist"}, {"URI": "http://dbpedia.org/ontology/endowment", "surface form": "albums"}, {"URI": "http://dbpedia.org/ontology/wineProduced", "surface form": "produced"}]}, {"id": "2282", "question": [{"language": "en", "string": "What is the mascot of the alma mater of Deborah Crombie?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Deborah_Crombie> <http://dbpedia.org/ontology/almaMater> ?x . ?x <http://dbpedia.org/property/mascot> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kangaroo"}}, "entities": [{"URI": "http://dbpedia.org/resource/Deborah_Crombie", "surface form": "Deborah Crombie"}], "relations": [{"URI": "http://dbpedia.org/ontology/mascot", "surface form": "mascot"}, {"URI": "http://dbpedia.org/ontology/almaMater", "surface form": "alma mater"}]}, {"id": "2283", "question": [{"language": "en", "string": "What is the resting place of the person who is the successor of James W. Hyatt ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/James_W._Hyatt> <http://dbpedia.org/property/successor> ?x . ?x <http://dbpedia.org/ontology/restingPlace> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Person>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Norwalk,_Connecticut"}}, "entities": [{"URI": "http://dbpedia.org/resource/Vienna", "surface form": "W"}, {"URI": "http://dbpedia.org/resource/James_W._Hyatt", "surface form": "James Hyatt"}], "relations": [{"URI": "http://dbpedia.org/ontology/battle", "surface form": "resting"}, {"URI": "http://dbpedia.org/ontology/place", "surface form": "place"}, {"URI": "http://dbpedia.org/property/type", "surface form": "person"}, {"URI": "http://dbpedia.org/ontology/successor", "surface form": "successor"}]}, {"id": "2284", "question": [{"language": "en", "string": "Who wrote the mangas produced by Masahike Minami?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/producer> <http://dbpedia.org/resource/Masahiko_Minami> . ?x <http://dbpedia.org/ontology/author> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Manga>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Toshinori_Sogabe"}}, "entities": [{"URI": "http://dbpedia.org/resource/Minami-za", "surface form": "Masahike Minami"}], "relations": [{"URI": "http://dbpedia.org/ontology/address", "surface form": "wrote"}, {"URI": "http://dbpedia.org/ontology/picture", "surface form": "mangas"}, {"URI": "http://dbpedia.org/ontology/wineProduced", "surface form": "produced"}]}, {"id": "2285", "question": [{"language": "en", "string": "What is the mascot of military in Quezon city?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/garrison> <http://dbpedia.org/resource/Quezon_City> . ?x <http://dbpedia.org/property/mascot> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/MilitaryUnit>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Philippine_eagle"}}, "entities": [{"URI": "http://dbpedia.org/resource/Quezon_City", "surface form": "Quezon city"}], "relations": [{"URI": "http://dbpedia.org/ontology/mascot", "surface form": "mascot"}, {"URI": "http://dbpedia.org/ontology/garrison", "surface form": "military"}]}, {"id": "2286", "question": [{"language": "en", "string": "What all are in the states whose anthem is Ja, vi esker dette landet?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/anthem> <http://dbpedia.org/resource/Ja,_vi_elsker_dette_landet> . ?uri <http://dbpedia.org/ontology/country> ?x . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/1933_Norwegian_parliamentary_election"}}, "entities": [{"URI": "http://dbpedia.org/resource/Ja,_vi_elsker_dette_landet", "surface form": "Ja, vi Esker dette landet"}], "relations": [{"URI": "http://dbpedia.org/ontology/anthem", "surface form": "anthem"}]}, {"id": "2287", "question": [{"language": "en", "string": "return some players who have played in the NBA?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/league> <http://dbpedia.org/resource/National_Basketball_Association> } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/1949\u201350_NBA_season"}}, "entities": [{"URI": "http://dbpedia.org/resource/National_Basketball_Association", "surface form": "NBA"}], "relations": [{"URI": "http://dbpedia.org/ontology/field", "surface form": "return"}, {"URI": "http://dbpedia.org/ontology/participant", "surface form": "players"}, {"URI": "http://dbpedia.org/ontology/participant", "surface form": "played"}]}, {"id": "2288", "question": [{"language": "en", "string": "Name an airline with hub airports as Los Angeles International Airport and San Francisco International Airport?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/hubAirport> <http://dbpedia.org/resource/Los_Angeles_International_Airport> . ?uri <http://dbpedia.org/property/hubs> <http://dbpedia.org/resource/San_Francisco_International_Airport> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Airline>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Virgin_America"}}, "entities": [{"URI": "http://dbpedia.org/resource/Los_Angeles_International_Airport", "surface form": "Los Angeles International Airport"}, {"URI": "http://dbpedia.org/resource/San_Francisco_International_Airport", "surface form": "San Francisco International Airport"}], "relations": [{"URI": "http://dbpedia.org/property/name", "surface form": "name"}, {"URI": "http://dbpedia.org/ontology/icaoAirlineCode", "surface form": "airline"}, {"URI": "http://dbpedia.org/property/hub", "surface form": "hub airports"}]}, {"id": "2289", "question": [{"language": "en", "string": "Give me a count on scientist who are known for garrison is Tennessee ?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/garrison> <http://dbpedia.org/resource/Tennessee> . ?uri <http://dbpedia.org/property/knownFor> ?x . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Scientist>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/Scientist_Rids_the_World_of_the_Evil_Curse_of_the_Vampires", "surface form": "scientist"}, {"URI": "http://dbpedia.org/resource/Tennessee", "surface form": "Tennessee"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": "count"}, {"URI": "http://dbpedia.org/ontology/garrison", "surface form": "garrison"}]}, {"id": "2290", "question": [{"language": "en", "string": "Which river starts from the county seat of Heathsville, Virginia?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/countySeat> <http://dbpedia.org/resource/Heathsville,_Virginia> . ?uri <http://dbpedia.org/property/mouthLocation> ?x . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/River>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Potomac_River"}}, "entities": [{"URI": "http://dbpedia.org/resource/Heathsville,_Virginia", "surface form": "Heathsville, Virginia"}], "relations": [{"URI": "http://dbpedia.org/ontology/river", "surface form": "river"}, {"URI": "http://dbpedia.org/ontology/routeStart", "surface form": "starts"}, {"URI": "http://dbpedia.org/ontology/countySeat", "surface form": "county seat"}]}, {"id": "2291", "question": [{"language": "en", "string": "Who owns the bank where Fabio Mercurio works?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Fabio_Mercurio> <http://dbpedia.org/property/institution> ?x . ?x <http://dbpedia.org/property/owner> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Bank>}"}, "answers": {"uri": {"type": "literal", "xml:lang": "en", "value": "Bank of America"}}, "entities": [{"URI": "http://dbpedia.org/resource/Fabio_Mercurio", "surface form": "Fabio Mercurio"}], "relations": [{"URI": "http://dbpedia.org/ontology/relation", "surface form": "owns"}, {"URI": "http://dbpedia.org/ontology/series", "surface form": "bank"}, {"URI": "http://dbpedia.org/ontology/language", "surface form": "works"}]}, {"id": "2292", "question": [{"language": "en", "string": "Who owns the horses which have won the Timeform award?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/awards> <http://dbpedia.org/resource/Timeform> . ?x <http://dbpedia.org/ontology/owner> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Horse>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Aga_Khan_IV"}}, "entities": [{"URI": "http://dbpedia.org/resource/Timeform", "surface form": "Timeform award"}], "relations": [{"URI": "http://dbpedia.org/ontology/languageFamily", "surface form": "owns"}, {"URI": "http://dbpedia.org/ontology/staff", "surface form": "horses"}, {"URI": "http://dbpedia.org/ontology/award", "surface form": "won"}]}, {"id": "2293", "question": [{"language": "en", "string": "What are some fictional characters whose voice is in the peanuts movie?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/voice> <http://dbpedia.org/resource/The_Peanuts_Movie> . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Snoopy"}}, "entities": [{"URI": "http://dbpedia.org/resource/The_Peanuts_Movie", "surface form": "the peanuts movie"}], "relations": [{"URI": "http://dbpedia.org/ontology/voice", "surface form": "voice"}, {"URI": "http://dbpedia.org/ontology/picture", "surface form": "peanuts movie"}]}, {"id": "2294", "question": [{"language": "en", "string": "How many people used to play for Toronto Argonauts?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE {?uri <http://dbpedia.org/ontology/formerTeam> <http://dbpedia.org/resource/Toronto_Argonauts> . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "615"}}, "entities": [{"URI": "http://dbpedia.org/resource/Toronto_Argonauts", "surface form": "Toronto Argonauts"}], "relations": [{"URI": "http://dbpedia.org/ontology/team", "surface form": "play"}]}, {"id": "2295", "question": [{"language": "en", "string": "How many different people have been in any political seat in places which are under the Indian Standard timezone?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/timeZone> <http://dbpedia.org/resource/Indian_Standard_Time> . ?x <http://dbpedia.org/ontology/leaderName> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/India", "surface form": "Indian Standard timezone"}, {"URI": "http://dbpedia.org/resource/Standard", "surface form": "Indian Standard timezone"}], "relations": [{"URI": "http://dbpedia.org/ontology/origin", "surface form": "political seat"}, {"URI": "http://dbpedia.org/ontology/district", "surface form": "places"}, {"URI": "http://dbpedia.org/ontology/country", "surface form": ""}]}, {"id": "2296", "question": [{"language": "en", "string": "What is the national origin of Dornier Aerodyne and Hirth Acrostar ?;"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Dornier_Aerodyne> <http://dbpedia.org/property/nationalOrigin> ?uri. <http://dbpedia.org/resource/Hirth_Acrostar> <http://dbpedia.org/ontology/origin> ?uri} "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/West_Germany"}}, "entities": [{"URI": "http://dbpedia.org/resource/Dornier_Aerodyne", "surface form": "Dornier Aerodyne"}, {"URI": "http://dbpedia.org/resource/Hirth_Acrostar", "surface form": "Hirth Acrostar ;"}], "relations": [{"URI": "http://dbpedia.org/property/nationalOrigin", "surface form": "national origin"}, {"URI": "http://dbpedia.org/ontology/origin", "surface form": "origin"}]}, {"id": "2297", "question": [{"language": "en", "string": "Count the tenants of the stadiums owned by toronto."}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/owner> <http://dbpedia.org/resource/Toronto> . ?x <http://dbpedia.org/property/tenants> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "23"}}, "entities": [{"URI": "http://dbpedia.org/resource/Toronto", "surface form": "toronto"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": "count"}, {"URI": "http://dbpedia.org/ontology/tenant", "surface form": "tenants"}, {"URI": "http://dbpedia.org/property/stadium", "surface form": "stadiums"}, {"URI": "http://dbpedia.org/property/owner", "surface form": "owned"}]}, {"id": "2298", "question": [{"language": "en", "string": "How many sports are played in organizations presided by Emanuel de Guzman?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/president> <http://dbpedia.org/resource/Emanuel_de_Guzman> . ?x <http://dbpedia.org/ontology/sport> ?uri . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Sport>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/Emanuel_de_Guzman", "surface form": "Emanuel de Guzman"}], "relations": [{"URI": "http://dbpedia.org/ontology/athletics", "surface form": "sports"}, {"URI": "http://dbpedia.org/ontology/coach", "surface form": "played"}, {"URI": "http://dbpedia.org/ontology/company", "surface form": "organizations"}, {"URI": "http://dbpedia.org/ontology/leader", "surface form": "presided"}]}, {"id": "2299", "question": [{"language": "en", "string": "What are the home stadiums of the things Leonid Fedun has been the chairman of?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/chairman> <http://dbpedia.org/resource/Leonid_Fedun> . ?x <http://dbpedia.org/ontology/homeStadium> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Luzhniki_Stadium"}}, "entities": [{"URI": "http://dbpedia.org/resource/Leonid_Fedun", "surface form": "Leonid Fedun"}], "relations": [{"URI": "http://dbpedia.org/ontology/residence", "surface form": "home stadiums"}, {"URI": "http://dbpedia.org/ontology/chairman", "surface form": "chairman"}]}, {"id": "2300", "question": [{"language": "en", "string": "Who acted in the work written by Colin Brake?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/writer> <http://dbpedia.org/resource/Colin_Brake> . ?x <http://dbpedia.org/property/starring> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Work>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Debbie_Chazen"}}, "entities": [{"URI": "http://dbpedia.org/resource/Colin_Brake", "surface form": "Colin Brake"}], "relations": [{"URI": "http://dbpedia.org/property/noted", "surface form": "acted"}, {"URI": "http://dbpedia.org/ontology/service", "surface form": "work"}, {"URI": "http://dbpedia.org/property/writtenby", "surface form": "written"}]}, {"id": "2301", "question": [{"language": "en", "string": "List the series of the books whose author is K. W. Jeter."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/author> <http://dbpedia.org/resource/K._W._Jeter> . ?x <http://dbpedia.org/ontology/series> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Book>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Blade_Runner_(franchise)"}}, "entities": [{"URI": "http://dbpedia.org/resource/K", "surface form": "K"}, {"URI": "http://dbpedia.org/resource/K._W._Jeter", "surface form": "W Jeter"}, {"URI": "http://dbpedia.org/resource/W", "surface form": "W"}, {"URI": "http://dbpedia.org/resource/K._W._Jeter", "surface form": "K Jeter"}], "relations": [{"URI": "http://dbpedia.org/ontology/series", "surface form": "series"}, {"URI": "http://dbpedia.org/ontology/title", "surface form": "books"}, {"URI": "http://dbpedia.org/ontology/author", "surface form": "author"}]}, {"id": "2302", "question": [{"language": "en", "string": "What is the common university iof vanderbilt Commodores and also the college of hubert Wiggs ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Vanderbilt_Commodores> <http://dbpedia.org/ontology/university> ?uri. <http://dbpedia.org/resource/Hubert_Wiggs> <http://dbpedia.org/ontology/college> ?uri} "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vanderbilt_University"}}, "entities": [{"URI": "http://dbpedia.org/resource/Vanderbilt_University", "surface form": "common university iof vanderbilt Commodores"}, {"URI": "http://dbpedia.org/resource/Hubert_Wiggs", "surface form": "Hubert wiggs"}], "relations": [{"URI": "http://dbpedia.org/ontology/college", "surface form": "college"}]}, {"id": "2303", "question": [{"language": "en", "string": "How many sports are played at the university whose president is Emanuel de Guzman?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/president> <http://dbpedia.org/resource/Emanuel_de_Guzman> . ?x <http://dbpedia.org/ontology/sport> ?uri . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Sport>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/Emanuel_de_Guzman", "surface form": "Emanuel de Guzman"}], "relations": [{"URI": "http://dbpedia.org/ontology/athletics", "surface form": "sports"}, {"URI": "http://dbpedia.org/ontology/coach", "surface form": "played"}, {"URI": "http://dbpedia.org/ontology/university", "surface form": "university"}, {"URI": "http://dbpedia.org/ontology/president", "surface form": "president"}]}, {"id": "2304", "question": [{"language": "en", "string": "Give me the count of interests of the philosopher whose primary interest is Metaphysics ?"}], "query": {"sparql": " SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/mainInterests> <http://dbpedia.org/resource/Metaphysics> . ?x <http://dbpedia.org/property/mainInterests> ?uri }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "1024"}}, "entities": [{"URI": "http://dbpedia.org/resource/Metaphysics", "surface form": "Metaphysics"}], "relations": [{"URI": "http://dbpedia.org/property/mainInterests", "surface form": "interests"}, {"URI": "http://dbpedia.org/property/mainInterests", "surface form": "interests"}]}, {"id": "2305", "question": [{"language": "en", "string": "Who was buried at St. Mary's Church and fought the battle of Benedict Arnold's expedition to Quebec ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/battle> <http://dbpedia.org/resource/Benedict_Arnold's_expedition_to_Quebec> . ?uri <http://dbpedia.org/property/placeofburial> <http://dbpedia.org/resource/St_Mary's_Church,_Battersea> . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Benedict_Arnold"}}, "entities": [{"URI": "http://dbpedia.org/resource/St._Mary,_Kentucky", "surface form": "St Mary"}, {"URI": "http://dbpedia.org/resource/Achurch", "surface form": " Church"}, {"URI": "http://dbpedia.org/resource/Benedict_Arnold", "surface form": " expedition Benedict Arnold"}, {"URI": "http://dbpedia.org/resource/Quebec", "surface form": "Quebec"}], "relations": [{"URI": "http://dbpedia.org/ontology/flag", "surface form": "buried"}, {"URI": "http://dbpedia.org/ontology/type", "surface form": "fought"}, {"URI": "http://dbpedia.org/ontology/battle", "surface form": "battle"}]}, {"id": "2306", "question": [{"language": "en", "string": "How many people won the Gold Medal of the Royal Astronomical Society?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE {?uri <http://dbpedia.org/property/prizes> <http://dbpedia.org/resource/Gold_Medal_of_the_Royal_Astronomical_Society> . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "23"}}, "entities": [{"URI": "http://dbpedia.org/resource/Gold_Medal_of_the_Royal_Astronomical_Society", "surface form": "Gold Medal of the Royal Astronomical Society"}], "relations": [{"URI": "http://dbpedia.org/property/prizes", "surface form": "won"}]}, {"id": "2307", "question": [{"language": "en", "string": "What is the main common interests of the Philip Novak and Timothy Morton?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Philip_Novak> <http://dbpedia.org/property/mainInterests> ?uri. <http://dbpedia.org/resource/Timothy_Morton> <http://dbpedia.org/property/mainInterests> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Buddhism"}}, "entities": [{"URI": "http://dbpedia.org/resource/Philip_Novak", "surface form": "Philip Novak"}, {"URI": "http://dbpedia.org/resource/Timothy_Morton", "surface form": "Timothy Morton"}], "relations": [{"URI": "http://dbpedia.org/property/mainInterests", "surface form": "interests main"}, {"URI": "http://dbpedia.org/property/mainInterests", "surface form": "interests main"}]}, {"id": "2308", "question": [{"language": "en", "string": "How many members are there of the order of Bacillales?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE {?uri <http://dbpedia.org/ontology/order> <http://dbpedia.org/resource/Bacillales> . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "500"}}, "entities": [{"URI": "http://dbpedia.org/resource/Bacillales", "surface form": "Bacillales"}], "relations": [{"URI": "http://dbpedia.org/ontology/order", "surface form": "order"}]}, {"id": "2309", "question": [{"language": "en", "string": "Which program was on NBC network with executive producer as Glen and Les Charles?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/network> <http://dbpedia.org/resource/NBC> . ?uri <http://dbpedia.org/ontology/executiveProducer> <http://dbpedia.org/resource/Glen_and_Les_Charles> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/All_Is_Forgiven_(TV_series)"}}, "entities": [{"URI": "http://dbpedia.org/resource/NBC", "surface form": "NBC"}, {"URI": "http://dbpedia.org/resource/Glen", "surface form": "Glen"}, {"URI": "http://dbpedia.org/resource/Glen_and_Les_Charles", "surface form": "Les Charles"}], "relations": [{"URI": "http://dbpedia.org/ontology/programmeFormat", "surface form": "program"}, {"URI": "http://dbpedia.org/ontology/network", "surface form": "network"}, {"URI": "http://dbpedia.org/ontology/writer", "surface form": "executive producer"}]}, {"id": "2310", "question": [{"language": "en", "string": "Moscow-Kazan high speed railway starts from which station?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Moscow-Kazan_high-speed_railway> <http://dbpedia.org/ontology/routeStart> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Moscow_Yaroslavsky_railway_station"}}, "entities": [{"URI": "http://dbpedia.org/resource/Moscow-Kazan_high-speed_railway", "surface form": "Moscow-Kazan high speed railway"}], "relations": [{"URI": "http://dbpedia.org/ontology/routeStart", "surface form": "starts"}, {"URI": "http://dbpedia.org/ontology/status", "surface form": "station"}]}, {"id": "2311", "question": [{"language": "en", "string": "How many people work in the Massachusetts house of Representatives?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE {?uri <http://dbpedia.org/property/office> <http://dbpedia.org/resource/Massachusetts_House_of_Representatives> . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "256"}}, "entities": [{"URI": "http://dbpedia.org/resource/Massachusetts_House_of_Representatives", "surface form": "Massachusetts house of Representatives"}], "relations": [{"URI": "http://dbpedia.org/property/office", "surface form": "of"}]}, {"id": "2312", "question": [{"language": "en", "string": "Which countries came together to serve a greater purpose and founded South Asia Subregional Economic Cooperation?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/South_Asia_Subregional_Economic_Cooperation> <http://dbpedia.org/property/membership> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bhutan"}}, "entities": [{"URI": "http://dbpedia.org/resource/Countries_of_the_United_Kingdom", "surface form": "countries"}, {"URI": "http://dbpedia.org/resource/South_Asia_Subregional_Economic_Cooperation", "surface form": "South Asia Subregional Economic Cooperation"}], "relations": [{"URI": "http://dbpedia.org/property/minister", "surface form": "serve"}, {"URI": "http://dbpedia.org/ontology/purpose", "surface form": "purpose"}, {"URI": "http://dbpedia.org/ontology/leader", "surface form": "founded"}]}, {"id": "2313", "question": [{"language": "en", "string": "Count the number of religions followed by Janta Dal members."}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/party> <http://dbpedia.org/resource/Janata_Dal> . ?x <http://dbpedia.org/ontology/religion> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/Panuwat_Janta", "surface form": "Janta Dal members"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": "count"}, {"URI": "http://dbpedia.org/ontology/languageFamily", "surface form": "religions"}]}, {"id": "2314", "question": [{"language": "en", "string": "Where does Kafue and Shire river flow into?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Kafue_River> <http://dbpedia.org/ontology/riverMouth> ?uri. <http://dbpedia.org/resource/Shire_River> <http://dbpedia.org/ontology/riverMouth> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Zambezi"}}, "entities": [{"URI": "http://dbpedia.org/resource/Kafue_River", "surface form": "Kafue"}, {"URI": "http://dbpedia.org/resource/Shire_River", "surface form": "Shire river"}], "relations": [{"URI": "http://dbpedia.org/ontology/discharge", "surface form": "flow"}]}, {"id": "2315", "question": [{"language": "en", "string": "Through which label has Katy B released her singles?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/writer> <http://dbpedia.org/resource/Katy_B> . ?x <http://dbpedia.org/ontology/recordLabel> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Single>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Virgin_EMI_Records"}}, "entities": [{"URI": "http://dbpedia.org/resource/B", "surface form": "B"}, {"URI": "http://dbpedia.org/resource/Katy", "surface form": "Katy"}], "relations": [{"URI": "http://dbpedia.org/ontology/flag", "surface form": "label"}, {"URI": "http://dbpedia.org/ontology/channel", "surface form": "released"}, {"URI": "http://dbpedia.org/ontology/slogan", "surface form": "singles"}]}, {"id": "2316", "question": [{"language": "en", "string": "List the teams for which Bobby Hoppe played ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Bobby_Hoppe> <http://dbpedia.org/property/pastteams> ?uri } "}, "answers": {"uri": {"type": "literal", "xml:lang": "en", "value": "* San Francisco 49ers \n* Washington Redskins"}}, "entities": [{"URI": "http://dbpedia.org/resource/Bobby_Hoppe", "surface form": "Bobby Hoppe"}], "relations": [{"URI": "http://dbpedia.org/property/pastteams", "surface form": "teams"}]}, {"id": "2317", "question": [{"language": "en", "string": "How many other characters are there of the plays which has a characters name Joker (comics) ?"}], "query": {"sparql": " SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/characters> <http://dbpedia.org/resource/Joker_(comics)> . ?x <http://dbpedia.org/property/characters> ?uri }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "12"}}, "entities": [{"URI": "http://dbpedia.org/resource/Joker_(comics)", "surface form": "Joker (comics)"}], "relations": [{"URI": "http://dbpedia.org/ontology/type", "surface form": "characters"}, {"URI": "http://dbpedia.org/ontology/plays", "surface form": "plays"}]}, {"id": "2318", "question": [{"language": "en", "string": "Who first ascented a mountain of Cathedral Peak (California) ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Cathedral_Peak_(California)> <http://dbpedia.org/ontology/firstAscentPerson> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/John_Muir"}}, "entities": [{"URI": "http://dbpedia.org/resource/Cathedral_Peak_(California)", "surface form": "Cathedral Peak (California)"}], "relations": [{"URI": "http://dbpedia.org/ontology/firstAscentPerson", "surface form": "ascented"}, {"URI": "http://dbpedia.org/ontology/elevation", "surface form": "mountain"}]}, {"id": "2319", "question": [{"language": "en", "string": "Which awards did the children of Erik Bergman won ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Erik_Bergman_(Lutheran_minister)> <http://dbpedia.org/property/children> ?x . ?x <http://dbpedia.org/property/awards> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Goethe_Prize"}}, "entities": [{"URI": "http://dbpedia.org/resource/Erik_Bergman_(Lutheran_minister)", "surface form": "Erik Bergman"}], "relations": [{"URI": "http://dbpedia.org/property/children", "surface form": "children"}, {"URI": "http://dbpedia.org/property/awards", "surface form": "awards"}]}, {"id": "2320", "question": [{"language": "en", "string": "How many people are buried in the Mausoleum of Augustus?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE {?uri <http://dbpedia.org/property/placeOfBurial> <http://dbpedia.org/resource/Mausoleum_of_Augustus> . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "5"}}, "entities": [{"URI": "http://dbpedia.org/resource/Mausoleum_of_Augustus", "surface form": "Mausoleum of Augustus"}], "relations": [{"URI": "http://dbpedia.org/property/placeOfBurial", "surface form": "buried"}]}, {"id": "2321", "question": [{"language": "en", "string": "List the program genres of the sister stations of 97.1 WASH FM?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/WASH_(FM)> <http://dbpedia.org/property/sisterStations> ?x . ?x <http://dbpedia.org/ontology/programmeFormat> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Classic_rock"}}, "entities": [{"URI": "http://dbpedia.org/resource/WASH_(FM)", "surface form": "WASH"}], "relations": [{"URI": "http://dbpedia.org/property/sisterStations", "surface form": "sister stations"}, {"URI": "http://dbpedia.org/ontology/programmeFormat", "surface form": "program"}]}, {"id": "2322", "question": [{"language": "en", "string": "Which team's players have played in the national hockey league?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/league> <http://dbpedia.org/resource/National_Hockey_League> . ?x <http://dbpedia.org/ontology/team> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Athlete>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Buffalo_Sabres"}}, "entities": [{"URI": "http://dbpedia.org/resource/National_Hockey_League", "surface form": "national hockey league"}], "relations": [{"URI": "http://dbpedia.org/ontology/team", "surface form": "team"}, {"URI": "http://dbpedia.org/ontology/participant", "surface form": " players"}, {"URI": "http://dbpedia.org/ontology/participant", "surface form": "played"}]}, {"id": "2323", "question": [{"language": "en", "string": "Where was James McClure born ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/James_McClure_(table_tennis)> <http://dbpedia.org/property/birthPlace> ?uri } "}, "answers": {"uri": {"type": "literal", "xml:lang": "en", "value": "Indianapolis, Indiana, United States"}}, "entities": [{"URI": "http://dbpedia.org/resource/James_McClure_(table_tennis)", "surface form": "James McClure"}], "relations": [{"URI": "http://dbpedia.org/ontology/birthPlace", "surface form": "born"}]}, {"id": "2324", "question": [{"language": "en", "string": "Whose music composer is signed up with Sony Music Entertainment?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/label> <http://dbpedia.org/resource/Sony_Music_Entertainment> . ?uri <http://dbpedia.org/ontology/musicComposer> ?x . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Porky's_Revenge!"}}, "entities": [{"URI": "http://dbpedia.org/resource/Sony_Music_Entertainment", "surface form": "Sony Music Entertainment"}], "relations": [{"URI": "http://dbpedia.org/ontology/creator", "surface form": "music composer"}, {"URI": "http://dbpedia.org/ontology/movement", "surface form": "signed"}]}, {"id": "2325", "question": [{"language": "en", "string": "Which labels signs up progressive rock bands?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/genre> <http://dbpedia.org/resource/Progressive_rock> . ?x <http://dbpedia.org/ontology/recordLabel> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/MusicalArtist>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Atlantic_Records"}}, "entities": [{"URI": "http://dbpedia.org/resource/Progressive_rock", "surface form": "progressive rock"}], "relations": [{"URI": "http://dbpedia.org/property/label", "surface form": "labels"}, {"URI": "http://dbpedia.org/ontology/precursor", "surface form": "signs"}]}, {"id": "2326", "question": [{"language": "en", "string": "Where does the railway tracks start, which ends in Kazan?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/routeEnd> <http://dbpedia.org/resource/Kazan> . ?x <http://dbpedia.org/ontology/routeStart> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/RailwayLine>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Moscow_Yaroslavsky_railway_station"}}, "entities": [{"URI": "http://dbpedia.org/resource/Start", "surface form": "railway tracks start,"}, {"URI": "http://dbpedia.org/resource/Kazan", "surface form": "Kazan"}], "relations": [{"URI": "http://dbpedia.org/property/end", "surface form": "ends"}]}, {"id": "2327", "question": [{"language": "en", "string": "what are some devices made by asus?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/manufacturer> <http://dbpedia.org/resource/Asus> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/InformationAppliance>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Asus_Memo_Pad_7"}}, "entities": [{"URI": "http://dbpedia.org/resource/Asus", "surface form": "asus"}], "relations": [{"URI": "http://dbpedia.org/ontology/manufacturer", "surface form": "made by"}, {"URI": "http://dbpedia.org/ontology/InformationAppliance", "surface form": "devices"}]}, {"id": "2328", "question": [{"language": "en", "string": "Which former team of Franois Beauchemin does the Nathan Dempsey played for ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Nathan_Dempsey> <http://dbpedia.org/property/playedFor> ?uri. <http://dbpedia.org/resource/Fran\u00e7ois_Beauchemin> <http://dbpedia.org/ontology/formerTeam> ?uri} "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Toronto_Maple_Leafs"}}, "entities": [{"URI": "http://dbpedia.org/resource/Fran\u00e7ois_Beauchemin", "surface form": "Franois Beauchemin does the Nathan Dempsey"}], "relations": [{"URI": "http://dbpedia.org/ontology/formerTeam", "surface form": "former team"}, {"URI": "http://dbpedia.org/ontology/participant", "surface form": "played"}]}, {"id": "2329", "question": [{"language": "en", "string": "What is the colour of Red Marauder ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Red_Marauder> <http://dbpedia.org/ontology/colour> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/United_Kingdom"}}, "entities": [{"URI": "http://dbpedia.org/resource/Red_Marauder", "surface form": "Red Marauder"}], "relations": [{"URI": "http://dbpedia.org/ontology/colour", "surface form": "colour"}]}, {"id": "2330", "question": [{"language": "en", "string": "Give me a count of schools in Reading, Berkshire?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE {?uri <http://dbpedia.org/ontology/city> <http://dbpedia.org/resource/Reading,_Berkshire> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/School>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "25"}}, "entities": [{"URI": "http://dbpedia.org/resource/Reading,_Berkshire", "surface form": "Reading, Berkshire"}], "relations": [{"URI": "http://dbpedia.org/ontology/city", "surface form": "in"}, {"URI": "http://dbpedia.org/ontology/School", "surface form": "school"}]}, {"id": "2331", "question": [{"language": "en", "string": "By whom is the broadcaster network Bounce TV founded?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Bounce_TV> <http://dbpedia.org/ontology/foundedBy> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Andrew_Young"}}, "entities": [{"URI": "http://dbpedia.org/resource/Tv_test_pattern", "surface form": "TV"}, {"URI": "http://dbpedia.org/resource/Bounce", "surface form": "broadcaster network Bounce"}], "relations": [{"URI": "http://dbpedia.org/ontology/foundedBy", "surface form": "founded"}]}, {"id": "2332", "question": [{"language": "en", "string": "Who is the scientist whose doctoral student is Erich Bagge?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/doctoralStudent> <http://dbpedia.org/resource/Erich_Bagge> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Scientist>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Werner_Heisenberg"}}, "entities": [{"URI": "http://dbpedia.org/resource/Scientist", "surface form": "scientist"}, {"URI": "http://dbpedia.org/resource/Erich_Bagge", "surface form": "Erich Bagge"}], "relations": [{"URI": "http://dbpedia.org/ontology/doctoralStudent", "surface form": "doctoral student"}, {"URI": "http://dbpedia.org/ontology/Scientist", "surface form": "scientist"}]}, {"id": "2333", "question": [{"language": "en", "string": "List books authored by Miguel de Cervantes and published by Francisco de Robles ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/author> <http://dbpedia.org/resource/Miguel_de_Cervantes> . ?uri <http://dbpedia.org/ontology/publisher> <http://dbpedia.org/resource/Francisco_de_Robles> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Book>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/La_Galatea"}}, "entities": [{"URI": "http://dbpedia.org/resource/Miguel_de_Cervantes", "surface form": "Miguel de Cervantes"}, {"URI": "http://dbpedia.org/resource/Francisco_de_Robles", "surface form": "Francisco de Robles"}], "relations": [{"URI": "http://dbpedia.org/ontology/title", "surface form": "books"}, {"URI": "http://dbpedia.org/property/author", "surface form": "authored"}, {"URI": "http://dbpedia.org/ontology/state", "surface form": "published"}]}, {"id": "2334", "question": [{"language": "en", "string": "List down all notable works of Neil Cross ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Neil_Cross> <http://dbpedia.org/ontology/notableWork> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hard_Sun"}}, "entities": [{"URI": "http://dbpedia.org/resource/Neil_Cross", "surface form": "Neil Cross"}], "relations": [{"URI": "http://dbpedia.org/ontology/notableWork", "surface form": "notable works"}]}, {"id": "2335", "question": [{"language": "en", "string": "Who is the meaning of the name Isa which was also one of the subject of play The Prodigal Son ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Isa_(name)> <http://dbpedia.org/property/meaning> ?uri. <http://dbpedia.org/resource/The_Prodigal_Son_(play)> <http://dbpedia.org/property/subject> ?uri} "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jesus"}}, "entities": [{"URI": "http://dbpedia.org/resource/Isa_(name)", "surface form": "name Isa"}, {"URI": "http://dbpedia.org/resource/The_Prodigal_Son_(play)", "surface form": "play The Prodigal Son"}], "relations": [{"URI": "http://dbpedia.org/property/meaning", "surface form": "meaning"}, {"URI": "http://dbpedia.org/property/subject", "surface form": "subject"}]}, {"id": "2336", "question": [{"language": "en", "string": "Who are the parent of the people that has POD as Redding, Connecticut ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/deathPlace> <http://dbpedia.org/resource/Redding,_Connecticut> . ?x <http://dbpedia.org/ontology/parent> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mark_Twain"}}, "entities": [{"URI": "http://dbpedia.org/resource/POD", "surface form": "POD"}, {"URI": "http://dbpedia.org/resource/Redding,_Connecticut", "surface form": "as Redding, Connecticut"}], "relations": [{"URI": "http://dbpedia.org/ontology/deathPlace", "surface form": "POD"}, {"URI": "http://dbpedia.org/ontology/parent", "surface form": "parent"}]}, {"id": "2337", "question": [{"language": "en", "string": "What are the things Eric Schiller known for ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Eric_Schiller> <http://dbpedia.org/ontology/knownFor> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Linguistics"}}, "entities": [{"URI": "http://dbpedia.org/resource/Eric_Schiller", "surface form": "Eric Schiller"}], "relations": [{"URI": "http://dbpedia.org/ontology/knownFor", "surface form": "known for"}]}, {"id": "2338", "question": [{"language": "en", "string": "Name some leaders of the parent organisation of the Gestapo?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Gestapo> <http://dbpedia.org/ontology/parentOrganisation> ?x . ?x <http://dbpedia.org/ontology/leader> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Heinrich_Himmler"}}, "entities": [{"URI": "http://dbpedia.org/resource/Gestapo", "surface form": "Gestapo"}], "relations": [{"URI": "http://dbpedia.org/ontology/parentOrganisation", "surface form": "parent organisation"}, {"URI": "http://dbpedia.org/ontology/leader", "surface form": "leaders"}]}, {"id": "2339", "question": [{"language": "en", "string": "How many venues are located in the US?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE {?uri <http://dbpedia.org/property/address> <http://dbpedia.org/resource/United_States> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Venue>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "7"}}, "entities": [{"URI": "http://dbpedia.org/resource/United_States", "surface form": "US"}], "relations": [{"URI": "http://dbpedia.org/ontology/location", "surface form": "venues"}, {"URI": "http://dbpedia.org/ontology/locatedInArea", "surface form": "located"}]}, {"id": "2340", "question": [{"language": "en", "string": "What are some neighboring cities of cologny?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/neighboringMunicipalities> <http://dbpedia.org/resource/Cologny> . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vand\u0153uvres"}}, "entities": [{"URI": "http://dbpedia.org/resource/Cologny", "surface form": "cologny"}], "relations": [{"URI": "http://dbpedia.org/property/neighboringMunicipalities", "surface form": "neighboring"}, {"URI": "http://dbpedia.org/ontology/city", "surface form": "cities"}, {"URI": "http://dbpedia.org/ontology/province", "surface form": "cologny"}]}, {"id": "2341", "question": [{"language": "en", "string": "Who are the people who died in a place architected by Jens Jensen"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/architect> <http://dbpedia.org/resource/Jens_Jensen_(landscape_architect)> . ?uri <http://dbpedia.org/ontology/deathPlace> ?x . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Person>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jens_Jensen_(landscape_architect)"}}, "entities": [{"URI": "http://dbpedia.org/resource/Jens_Jensen_(landscape_architect)", "surface form": "Jens Jensen"}], "relations": [{"URI": "http://dbpedia.org/ontology/deathDate", "surface form": "died"}, {"URI": "http://dbpedia.org/ontology/place", "surface form": "place"}, {"URI": "http://dbpedia.org/ontology/architect", "surface form": "architected"}]}, {"id": "2342", "question": [{"language": "en", "string": "Who has Kelly Osbourne and Ozzy Osbourne as relatives?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/relative> <http://dbpedia.org/resource/Kelly_Osbourne> . ?uri <http://dbpedia.org/ontology/relative> <http://dbpedia.org/resource/Ozzy_Osbourne> . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Don_Arden"}}, "entities": [{"URI": "http://dbpedia.org/resource/Kelly_Osbourne", "surface form": "Kelly Osbourne"}, {"URI": "http://dbpedia.org/resource/Ozzy_Osbourne", "surface form": "Ozzy Osbourne"}], "relations": [{"URI": "http://dbpedia.org/ontology/relative", "surface form": "relatives"}]}, {"id": "2343", "question": [{"language": "en", "string": "Name the television show whose subsequent work is Frasier and opening theme is Where Everybody Knows Your Name?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/subsequentWork> <http://dbpedia.org/resource/Frasier> . ?uri <http://dbpedia.org/ontology/openingTheme> <http://dbpedia.org/resource/Where_Everybody_Knows_Your_Name> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cheers"}}, "entities": [{"URI": "http://dbpedia.org/resource/Frasier", "surface form": "Frasier"}, {"URI": "http://dbpedia.org/resource/Where_Everybody_Knows_Your_Name", "surface form": "Where Everybody"}, {"URI": "http://dbpedia.org/resource/Your_Name", "surface form": "Your Name"}], "relations": [{"URI": "http://dbpedia.org/property/name", "surface form": "name"}, {"URI": "http://dbpedia.org/property/television", "surface form": "television show"}, {"URI": "http://dbpedia.org/ontology/subsequentWork", "surface form": "subsequent work"}, {"URI": "http://dbpedia.org/ontology/openingTheme", "surface form": "theme"}, {"URI": "http://dbpedia.org/property/knows", "surface form": "Knows"}]}, {"id": "2344", "question": [{"language": "en", "string": "Name the television show whose company is HBO and Playtone?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/company> <http://dbpedia.org/resource/HBO> . ?uri <http://dbpedia.org/property/company> <http://dbpedia.org/resource/Playtone> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Movies_(miniseries)"}}, "entities": [{"URI": "http://dbpedia.org/resource/HBO", "surface form": "HBO"}, {"URI": "http://dbpedia.org/resource/Playtone", "surface form": "and Playtone"}], "relations": [{"URI": "http://dbpedia.org/property/name", "surface form": "name"}, {"URI": "http://dbpedia.org/ontology/transmission", "surface form": "television show"}, {"URI": "http://dbpedia.org/ontology/company", "surface form": "company"}]}, {"id": "2345", "question": [{"language": "en", "string": "What is the deathplace of the Anatoly Kharlampiyev which is also the death place of Lyudmila Buldakova?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Anatoly_Kharlampiyev> <http://dbpedia.org/property/deathPlace> ?uri. <http://dbpedia.org/resource/Lyudmila_Buldakova> <http://dbpedia.org/property/deathPlace> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Moscow"}}, "entities": [{"URI": "http://dbpedia.org/resource/Anatoly_Kharlampiyev", "surface form": "Anatoly Kharlampiyev"}, {"URI": "http://dbpedia.org/resource/Lyudmila_Buldakova", "surface form": "Lyudmila Buldakova"}], "relations": [{"URI": "http://dbpedia.org/ontology/deathPlace", "surface form": "deathplace"}, {"URI": "http://dbpedia.org/ontology/deathPlace", "surface form": "death place"}]}, {"id": "2346", "question": [{"language": "en", "string": "List the actors of Lucy Sullivan Is Getting Married?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Lucy_Sullivan_Is_Getting_Married> <http://dbpedia.org/property/starring> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Debbie_Chazen"}}, "entities": [{"URI": "http://dbpedia.org/resource/Lucy_Sullivan_Is_Getting_Married", "surface form": "Lucy Sullivan Is Getting Married"}], "relations": [{"URI": "http://dbpedia.org/property/starring", "surface form": "actors of"}]}, {"id": "2347", "question": [{"language": "en", "string": "How many people have worked in the band one of whose current member is Hynief?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/currentMembers> <http://dbpedia.org/resource/Hynief> . ?x <http://dbpedia.org/ontology/bandMember> ?uri . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Person>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/Hynief", "surface form": "Hynief"}], "relations": [{"URI": "http://dbpedia.org/ontology/operator", "surface form": "worked"}, {"URI": "http://dbpedia.org/ontology/band", "surface form": "band"}, {"URI": "http://dbpedia.org/ontology/part", "surface form": "current member"}]}, {"id": "2348", "question": [{"language": "en", "string": "Enumerate all those who are in the Board of companies founded in New York?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/foundation> <http://dbpedia.org/resource/New_York> . ?uri <http://dbpedia.org/ontology/board> ?x . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/Board", "surface form": "Board"}, {"URI": "http://dbpedia.org/resource/Companies_listed_on_the_New_York_Stock_Exchange_(J)", "surface form": "companies"}, {"URI": "http://dbpedia.org/resource/New_York", "surface form": "New York"}], "relations": [{"URI": "http://dbpedia.org/property/foundation", "surface form": "founded"}, {"URI": "http://dbpedia.org/ontology/board", "surface form": "Board"}]}, {"id": "2349", "question": [{"language": "en", "string": "Name the awards that have been given to the writer made famous for Creature Comforts?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/notableWork> <http://dbpedia.org/resource/Creature_Comforts> . ?x <http://dbpedia.org/ontology/award> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Writer>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Academy_Awards"}}, "entities": [{"URI": "http://dbpedia.org/resource/Creature_Comforts", "surface form": "Creature Comforts"}], "relations": [{"URI": "http://dbpedia.org/property/name", "surface form": "name"}, {"URI": "http://dbpedia.org/ontology/award", "surface form": "awards"}, {"URI": "http://dbpedia.org/ontology/writer", "surface form": "writer"}, {"URI": "http://dbpedia.org/ontology/established", "surface form": "famous"}]}, {"id": "2350", "question": [{"language": "en", "string": "Murray Gold has composed music for how many things?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE {?uri <http://dbpedia.org/ontology/composer> <http://dbpedia.org/resource/Murray_Gold> . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "24"}}, "entities": [{"URI": "http://dbpedia.org/resource/Murray_Gold", "surface form": "murray Gold"}], "relations": [{"URI": "http://dbpedia.org/ontology/composer", "surface form": "composed"}]}, {"id": "2351", "question": [{"language": "en", "string": "How many people have been presenters for NBC shows?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/channel> <http://dbpedia.org/resource/NBC> . ?x <http://dbpedia.org/property/presenter> ?uri . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Person>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "145"}}, "entities": [{"URI": "http://dbpedia.org/resource/NBC", "surface form": "NBC"}], "relations": [{"URI": "http://dbpedia.org/ontology/presenter", "surface form": "presenters"}, {"URI": "http://dbpedia.org/ontology/place", "surface form": "shows"}]}, {"id": "2352", "question": [{"language": "en", "string": "Who is the compiler of British Gazette whose prime minister is also Peter Thorneycroft ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/British_Gazette> <http://dbpedia.org/property/editor> ?uri. <http://dbpedia.org/resource/Peter_Thorneycroft> <http://dbpedia.org/property/primeminister> ?uri} "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Winston_Churchill"}}, "entities": [{"URI": "http://dbpedia.org/resource/United_Kingdom", "surface form": "British Gazette"}, {"URI": "http://dbpedia.org/resource/British_Gazette", "surface form": "British Gazette"}, {"URI": "http://dbpedia.org/resource/Peter_Thorneycroft", "surface form": "Peter Thorneycroft"}], "relations": [{"URI": "http://dbpedia.org/property/editor", "surface form": "compiler"}, {"URI": "http://dbpedia.org/property/primeminister", "surface form": "minister prime"}]}, {"id": "2353", "question": [{"language": "en", "string": "Name the states which have been billed by the wrestlers who has also billed Georgia ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/billed> <http://dbpedia.org/resource/Georgia_(U.S._state)> . ?x <http://dbpedia.org/property/billed> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Wrestler>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Atlanta"}}, "entities": [{"URI": "http://dbpedia.org/resource/Georgia_(U.S._state)", "surface form": "Georgia"}], "relations": [{"URI": "http://dbpedia.org/property/name", "surface form": "name"}, {"URI": "http://dbpedia.org/ontology/billed", "surface form": "billed"}, {"URI": "http://dbpedia.org/ontology/billed", "surface form": "billed"}]}, {"id": "2354", "question": [{"language": "en", "string": "Who produced wizards vs aliens?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Wizards_vs_Aliens> <http://dbpedia.org/ontology/producer> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Doctor_Who"}}, "entities": [{"URI": "http://dbpedia.org/resource/Wizards_vs_Aliens", "surface form": "wizards vs aliens"}], "relations": [{"URI": "http://dbpedia.org/ontology/producer", "surface form": "produced"}]}, {"id": "2355", "question": [{"language": "en", "string": "What are the books written by authors who died in Madrid?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/restingPlace> <http://dbpedia.org/resource/Madrid> . ?uri <http://dbpedia.org/property/author> ?x . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Book>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/La_Galatea"}}, "entities": [{"URI": "http://dbpedia.org/resource/Madrid", "surface form": "Madrid"}], "relations": [{"URI": "http://dbpedia.org/ontology/restingPlace", "surface form": "died"}, {"URI": "http://dbpedia.org/ontology/author", "surface form": "written"}]}, {"id": "2356", "question": [{"language": "en", "string": "Count the number of broadcast area of the TV stations which serves in Agalga ?"}], "query": {"sparql": " SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/broadcastArea> <http://dbpedia.org/resource/Agal\u00e9ga> . ?x <http://dbpedia.org/property/broadcastArea> ?uri }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "4"}}, "entities": [{"URI": "http://dbpedia.org/resource/Vintage_TV_(TV_channel)", "surface form": "TV"}, {"URI": "http://dbpedia.org/resource/Ugalla", "surface form": "Agalga"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": "count"}, {"URI": "http://dbpedia.org/ontology/broadcastArea", "surface form": "broadcast area"}, {"URI": "http://dbpedia.org/ontology/order", "surface form": "stations"}, {"URI": "http://dbpedia.org/ontology/order", "surface form": "serves"}]}, {"id": "2357", "question": [{"language": "en", "string": "In which wars army men awarded with the Croix de Guerre, fought?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/awards> <http://dbpedia.org/resource/Croix_de_guerre_1939\u20131945_(France)> . ?x <http://dbpedia.org/property/battles> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/MilitaryPerson>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Second_World_War"}}, "entities": [{"URI": "http://dbpedia.org/resource/Army_Men:_RTS", "surface form": "army men awarded"}, {"URI": "http://dbpedia.org/resource/\u00c9cole_Militaire", "surface form": "Croix de Guerre,"}], "relations": [{"URI": "http://dbpedia.org/property/battles", "surface form": "wars"}, {"URI": "http://dbpedia.org/ontology/type", "surface form": "fought"}]}, {"id": "2358", "question": [{"language": "en", "string": "What is the scientist whose PhD students are Erich Bagge and erban ieica?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/doctoralStudents> <http://dbpedia.org/resource/Erich_Bagge> . ?uri <http://dbpedia.org/property/doctoralStudents> <http://dbpedia.org/resource/\u0218erban_\u021ai\u021beica> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Scientist>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Werner_Heisenberg"}}, "entities": [{"URI": "http://dbpedia.org/resource/Scientist", "surface form": "scientist"}, {"URI": "http://dbpedia.org/resource/Erich_Bagge", "surface form": "PhD students are Erich Bagge"}, {"URI": "http://dbpedia.org/resource/R\u00f3bert_Erban", "surface form": "Erban ieica"}], "relations": []}, {"id": "2359", "question": [{"language": "en", "string": "Where is Lao Plaza Hotel located?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Lao_Plaza_Hotel> <http://dbpedia.org/property/developer> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Thailand"}}, "entities": [{"URI": "http://dbpedia.org/resource/Lao_Plaza_Hotel", "surface form": "Lao Plaza Hotel"}], "relations": [{"URI": "http://dbpedia.org/ontology/position", "surface form": "located"}]}, {"id": "2360", "question": [{"language": "en", "string": "Which mainter of Pandaruan Bridge is also the land of Malaysia junior Hockey league ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Pandaruan_Bridge> <http://dbpedia.org/ontology/maintainedBy> ?uri. <http://dbpedia.org/resource/Malaysia_Junior_Hockey_League> <http://dbpedia.org/ontology/country> ?uri} "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Malaysia"}}, "entities": [{"URI": "http://dbpedia.org/resource/Pandaruan_Bridge", "surface form": "Pandaruan Bridge"}, {"URI": "http://dbpedia.org/resource/Malaysia_Junior_Hockey_League", "surface form": "Malaysia junior Hockey league"}], "relations": [{"URI": "http://dbpedia.org/ontology/owner", "surface form": "mainter"}, {"URI": "http://dbpedia.org/ontology/country", "surface form": "land"}]}, {"id": "2361", "question": [{"language": "en", "string": "Which Tv series led to Frasier?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/subsequentWork> <http://dbpedia.org/resource/Frasier> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cheers"}}, "entities": [{"URI": "http://dbpedia.org/resource/Me_TV_(TV_series)", "surface form": "Tv series"}, {"URI": "http://dbpedia.org/resource/Frasier", "surface form": "Frasier"}], "relations": [{"URI": "http://dbpedia.org/ontology/field", "surface form": "led"}]}, {"id": "2362", "question": [{"language": "en", "string": "Which writer has childrens named Mother Mary Alphonsa and Julian Hawthorne?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/children> <http://dbpedia.org/resource/Mother_Mary_Alphonsa> . ?uri <http://dbpedia.org/property/children> <http://dbpedia.org/resource/Julian_Hawthorne> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Writer>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nathaniel_Hawthorne"}}, "entities": [{"URI": "http://dbpedia.org/resource/Mother_Mary_Alphonsa", "surface form": "Mother Mary Alphonsa"}, {"URI": "http://dbpedia.org/resource/Julian_Hawthorne", "surface form": "Julian Hawthorne"}], "relations": [{"URI": "http://dbpedia.org/ontology/writer", "surface form": "writer"}, {"URI": "http://dbpedia.org/property/children", "surface form": "childrens"}]}, {"id": "2363", "question": [{"language": "en", "string": "What is the profession of William Luther Hill ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/William_Luther_Hill> <http://dbpedia.org/ontology/profession> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/United_States_Senate"}}, "entities": [{"URI": "http://dbpedia.org/resource/William_Luther_Hill", "surface form": "William Luther Hill"}], "relations": [{"URI": "http://dbpedia.org/ontology/profession", "surface form": "profession"}]}, {"id": "2364", "question": [{"language": "en", "string": "Name all the hubs of the airlines whose one of the hubs is Selangir ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/hubs> <http://dbpedia.org/resource/Selangor> . ?x <http://dbpedia.org/property/hubs> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Airline>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Selangor"}}, "entities": [{"URI": "http://dbpedia.org/resource/Selangor", "surface form": "Selangir"}], "relations": [{"URI": "http://dbpedia.org/ontology/name", "surface form": "name"}, {"URI": "http://dbpedia.org/ontology/hubAirport", "surface form": "hubs"}, {"URI": "http://dbpedia.org/ontology/icaoAirlineCode", "surface form": "airlines"}, {"URI": "http://dbpedia.org/ontology/hubAirport", "surface form": "hubs"}]}, {"id": "2365", "question": [{"language": "en", "string": "How many other school are there of the rugby players whose school is Michaelhouse ?"}], "query": {"sparql": " SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/school> <http://dbpedia.org/resource/Michaelhouse> . ?x <http://dbpedia.org/property/school> ?uri }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "23"}}, "entities": [{"URI": "http://dbpedia.org/resource/Munster_Rugby_players", "surface form": "rugby players"}, {"URI": "http://dbpedia.org/resource/Michaelhouse", "surface form": "Michaelhouse"}], "relations": [{"URI": "http://dbpedia.org/ontology/school", "surface form": "school"}, {"URI": "http://dbpedia.org/ontology/school", "surface form": "school"}]}, {"id": "2366", "question": [{"language": "en", "string": "Who is the President of United World College of Costa Rica ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/United_World_College_of_Costa_Rica> <http://dbpedia.org/property/president> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nelson_Mandela"}}, "entities": [{"URI": "http://dbpedia.org/resource/United_World_College_of_Costa_Rica", "surface form": "President of United World College of Costa Rica"}], "relations": [{"URI": "http://dbpedia.org/property/president", "surface form": "President"}]}, {"id": "2367", "question": [{"language": "en", "string": "Which city has it's landmark as Cheasty Boulevard South?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Cheasty_Boulevard_South> <http://dbpedia.org/ontology/maintainedBy> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Seattle"}}, "entities": [{"URI": "http://dbpedia.org/resource/Landmark", "surface form": "landmark"}, {"URI": "http://dbpedia.org/resource/Cheasty_Boulevard_South", "surface form": "Cheasty Boulevard South"}], "relations": [{"URI": "http://dbpedia.org/ontology/city", "surface form": "city"}]}, {"id": "2368", "question": [{"language": "en", "string": "List down the opponents of Frank Stilwell?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Frank_Stilwell> <http://dbpedia.org/ontology/opponent> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Virgil_Earp"}}, "entities": [{"URI": "http://dbpedia.org/resource/Frank_Stilwell", "surface form": "Frank Stilwell"}], "relations": [{"URI": "http://dbpedia.org/ontology/opponent", "surface form": "opponents"}]}, {"id": "2369", "question": [{"language": "en", "string": "Name the movie whose director is Ridley Scott and it's music composer is Vangelis?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/director> <http://dbpedia.org/resource/Ridley_Scott> . ?uri <http://dbpedia.org/ontology/musicComposer> <http://dbpedia.org/resource/Vangelis> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/1492:_Conquest_of_Paradise"}}, "entities": [{"URI": "http://dbpedia.org/resource/Ridley_Scott", "surface form": "Ridley Scott"}, {"URI": "http://dbpedia.org/resource/Vangelis", "surface form": "Vangelis"}], "relations": [{"URI": "http://dbpedia.org/property/name", "surface form": "name"}, {"URI": "http://dbpedia.org/ontology/picture", "surface form": "movie"}, {"URI": "http://dbpedia.org/ontology/director", "surface form": "director"}, {"URI": "http://dbpedia.org/ontology/musicComposer", "surface form": "music composer"}]}, {"id": "2370", "question": [{"language": "en", "string": "Where is Bogobiri House located ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Bogobiri_House> <http://dbpedia.org/property/locationCity> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lagos"}}, "entities": [{"URI": "http://dbpedia.org/resource/Bogobiri_House", "surface form": "Bogobiri House"}], "relations": [{"URI": "http://dbpedia.org/ontology/gross", "surface form": "located"}]}, {"id": "2371", "question": [{"language": "en", "string": "Who is the writer of Neverwhere (radio play) ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Neverwhere_(radio_play)> <http://dbpedia.org/ontology/writer> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dirk_Maggs"}}, "entities": [{"URI": "http://dbpedia.org/resource/Neverwhere_(radio_play)", "surface form": "Neverwhere (radio play)"}], "relations": [{"URI": "http://dbpedia.org/ontology/writer", "surface form": "writer"}]}, {"id": "2372", "question": [{"language": "en", "string": "How many other key people are there of the non-profit organisations whose key people is Hillary Clinton ?"}], "query": {"sparql": " SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/keyPeople> <http://dbpedia.org/resource/Hillary_Clinton> . ?x <http://dbpedia.org/property/keyPeople> ?uri }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "10"}}, "entities": [{"URI": "http://dbpedia.org/resource/Hillary_Clinton", "surface form": "Hillary Clinton"}], "relations": [{"URI": "http://dbpedia.org/property/keyPeople", "surface form": "key people"}, {"URI": "http://dbpedia.org/property/keyPeople", "surface form": "key people"}]}, {"id": "2373", "question": [{"language": "en", "string": "List the stadium of the teams which uses Nea Smyrni as one of the stadium ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/stadium> <http://dbpedia.org/resource/Nea_Smyrni_Stadium> . ?x <http://dbpedia.org/property/stadium> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Georgios_Kamaras_Stadium"}}, "entities": [{"URI": "http://dbpedia.org/resource/Nea_Smyrni_Stadium", "surface form": "stadium smyrni"}], "relations": [{"URI": "http://dbpedia.org/ontology/stadium", "surface form": "stadium"}, {"URI": "http://dbpedia.org/ontology/team", "surface form": "teams"}, {"URI": "http://dbpedia.org/ontology/stadium", "surface form": "stadium"}]}, {"id": "2374", "question": [{"language": "en", "string": "How many currencies are in used in places where people speak French?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/officialLanguage> <http://dbpedia.org/resource/French_language> . ?x <http://dbpedia.org/ontology/currency> ?uri . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Currency>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "112"}}, "entities": [{"URI": "http://dbpedia.org/resource/French_language", "surface form": "French"}], "relations": [{"URI": "http://dbpedia.org/property/height", "surface form": "places"}, {"URI": "http://dbpedia.org/ontology/language", "surface form": "speak"}, {"URI": "http://dbpedia.org/ontology/country", "surface form": ""}, {"URI": "http://dbpedia.org/ontology/country", "surface form": ""}]}, {"id": "2375", "question": [{"language": "en", "string": "Which football managers managed Middlesbrough F.C.?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/managerClub> <http://dbpedia.org/resource/Middlesbrough_F.C.> } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Andy_Aitken_(footballer,_born_1877)"}}, "entities": [{"URI": "http://dbpedia.org/resource/FC", "surface form": "FC"}, {"URI": "http://dbpedia.org/resource/Middlesbrough", "surface form": "Middlesbrough"}], "relations": [{"URI": "http://dbpedia.org/ontology/management", "surface form": "football managers"}, {"URI": "http://dbpedia.org/ontology/leader", "surface form": "managed"}]}, {"id": "2376", "question": [{"language": "en", "string": "How many factions were involved in the battles fought by Arthur St. Clair?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { <http://dbpedia.org/resource/Arthur_St._Clair> <http://dbpedia.org/property/battles> ?x . ?x <http://dbpedia.org/property/combatant> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/Arthur_St._Clair", "surface form": "Arthur St Clair"}], "relations": [{"URI": "http://dbpedia.org/ontology/movement", "surface form": "factions"}, {"URI": "http://dbpedia.org/ontology/date", "surface form": "involved"}, {"URI": "http://dbpedia.org/ontology/battle", "surface form": "battles"}, {"URI": "http://dbpedia.org/ontology/type", "surface form": "fought"}]}, {"id": "2377", "question": [{"language": "en", "string": "Count the number of ingredient of the foods which have one of the ingredient is Pork ?"}], "query": {"sparql": " SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/ingredient> <http://dbpedia.org/resource/Pork> . ?x <http://dbpedia.org/ontology/ingredient> ?uri }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "757"}}, "entities": [{"URI": "http://dbpedia.org/resource/Pork", "surface form": "Pork"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": "count"}, {"URI": "http://dbpedia.org/ontology/ingredient", "surface form": "ingredient"}, {"URI": "http://dbpedia.org/ontology/product", "surface form": "foods"}, {"URI": "http://dbpedia.org/ontology/ingredient", "surface form": "ingredient"}]}, {"id": "2378", "question": [{"language": "en", "string": "Who were the narrators of the albums which had Ringo Starr as one of the narrator ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/narrated> <http://dbpedia.org/resource/Ringo_Starr> . ?x <http://dbpedia.org/property/narrated> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Album>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alan_Thicke"}}, "entities": [{"URI": "http://dbpedia.org/resource/Ringo_Starr", "surface form": "Ringo Starr"}], "relations": [{"URI": "http://dbpedia.org/ontology/narrator", "surface form": "narrators"}, {"URI": "http://dbpedia.org/ontology/album", "surface form": "albums"}, {"URI": "http://dbpedia.org/ontology/narrator", "surface form": "narrator"}]}, {"id": "2379", "question": [{"language": "en", "string": "How many people have played for the ones who own the stadium of Bankers Life Fieldhouse?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/arena> <http://dbpedia.org/resource/Bankers_Life_Fieldhouse> . ?uri <http://dbpedia.org/property/team> ?x . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "2"}}, "entities": [{"URI": "http://dbpedia.org/resource/Bankers_Life_Fieldhouse", "surface form": "Bankers Life Fieldhouse"}], "relations": [{"URI": "http://dbpedia.org/ontology/participant", "surface form": "played"}, {"URI": "http://dbpedia.org/ontology/stadium", "surface form": "stadium"}]}, {"id": "2380", "question": [{"language": "en", "string": "List the newspapers whose headquarters's time zone is Central European Summer Time."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/timeZone> <http://dbpedia.org/resource/Central_European_Summer_Time> . ?uri <http://dbpedia.org/property/headquarters> ?x . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Newspaper>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Firat_News_Agency"}}, "entities": [{"URI": "http://dbpedia.org/resource/Time_zone", "surface form": " time zone"}, {"URI": "http://dbpedia.org/resource/Central_European_Summer_Time", "surface form": "Central European Summer Time"}], "relations": [{"URI": "http://dbpedia.org/ontology/title", "surface form": "newspapers"}, {"URI": "http://dbpedia.org/ontology/headquarter", "surface form": "headquarters"}]}, {"id": "2381", "question": [{"language": "en", "string": "Count all american football players whose former team owns Lucas Oil Stadium ?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/city> <http://dbpedia.org/resource/Lucas_Oil_Stadium> . ?uri <http://dbpedia.org/ontology/formerTeam> ?x . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/AmericanFootballPlayer>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "1407"}}, "entities": [{"URI": "http://dbpedia.org/resource/American_football", "surface form": "american football players"}, {"URI": "http://dbpedia.org/resource/Lucas_Oil_Stadium", "surface form": "Lucas Oil Stadium"}], "relations": [{"URI": "http://dbpedia.org/ontology/type", "surface form": "count"}, {"URI": "http://dbpedia.org/ontology/formerTeam", "surface form": "former team"}, {"URI": "http://dbpedia.org/ontology/relative", "surface form": "owns"}]}, {"id": "2382", "question": [{"language": "en", "string": "What are the academic interests of the advisor of Paul Demiville ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Paul_Demi\u00e9ville> <http://dbpedia.org/ontology/academicAdvisor> ?x . ?x <http://dbpedia.org/property/fields> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sanskrit_literature"}}, "entities": [{"URI": "http://dbpedia.org/resource/Paul_Paul", "surface form": "Paul Demiville"}], "relations": [{"URI": "http://dbpedia.org/ontology/abstract", "surface form": "academic"}, {"URI": "http://dbpedia.org/ontology/doctoralAdvisor", "surface form": "advisor"}]}, {"id": "2383", "question": [{"language": "en", "string": "Which awards are presented by Swedish Academy?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/presenter> <http://dbpedia.org/resource/Swedish_Academy> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Award>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/1972_Nobel_Prize_in_Literature"}}, "entities": [{"URI": "http://dbpedia.org/resource/Sweden", "surface form": "Swedish Academy"}, {"URI": "http://dbpedia.org/resource/Swedish_Academy", "surface form": "Swedish Academy"}], "relations": [{"URI": "http://dbpedia.org/ontology/presenter", "surface form": "presented"}, {"URI": "http://dbpedia.org/ontology/Award", "surface form": "awards"}]}, {"id": "2384", "question": [{"language": "en", "string": "Name the university whose teams have been managed by Albertin Montoya?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Albertin_Montoya> <http://dbpedia.org/property/managerclubs> ?x . ?x <http://dbpedia.org/ontology/university> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/SportsTeam>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Stanford_University"}}, "entities": [{"URI": "http://dbpedia.org/resource/Albertin_Montoya", "surface form": "Albertin Montoya"}], "relations": [{"URI": "http://dbpedia.org/property/name", "surface form": "name"}, {"URI": "http://dbpedia.org/ontology/university", "surface form": "university"}, {"URI": "http://dbpedia.org/ontology/team", "surface form": "teams"}, {"URI": "http://dbpedia.org/ontology/governor", "surface form": "managed"}]}, {"id": "2385", "question": [{"language": "en", "string": "what are some journals of academic Philosophy"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/discipline> <http://dbpedia.org/resource/Philosophy> } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Allan_Gibbard"}}, "entities": [{"URI": "http://dbpedia.org/resource/Teaching_Philosophy", "surface form": "academic Philosophy"}], "relations": [{"URI": "http://dbpedia.org/property/journal", "surface form": "journals"}]}, {"id": "2386", "question": [{"language": "en", "string": "Where did the conflict take place where Liu Mingchuan fought?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Liu_Mingchuan> <http://dbpedia.org/property/battles> ?x . ?x <http://dbpedia.org/ontology/territory> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hubei"}}, "entities": [{"URI": "http://dbpedia.org/resource/Liu_Mingchuan", "surface form": "Liu Mingchuan"}], "relations": [{"URI": "http://dbpedia.org/ontology/battle", "surface form": "conflict"}, {"URI": "http://dbpedia.org/ontology/place", "surface form": "place"}, {"URI": "http://dbpedia.org/ontology/type", "surface form": "fought"}]}, {"id": "2387", "question": [{"language": "en", "string": "What is the official residence of the Lula J. Davis which is also the death location of the John McTaggart (jockey) ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Lula_J._Davis> <http://dbpedia.org/ontology/residence> ?uri. <http://dbpedia.org/resource/John_McTaggart_(jockey)> <http://dbpedia.org/ontology/deathPlace> ?uri} "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Maryland"}}, "entities": [{"URI": "http://dbpedia.org/resource/Lula_J._Davis", "surface form": "Lula J. Davis"}, {"URI": "http://dbpedia.org/resource/John_McTaggart_(jockey)", "surface form": "John McTaggart (jockey)"}], "relations": [{"URI": "http://dbpedia.org/ontology/residence", "surface form": "residence"}, {"URI": "http://dbpedia.org/ontology/deathPlace", "surface form": "death location"}]}, {"id": "2388", "question": [{"language": "en", "string": "To which series does the character of Londo Mollari belong?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Londo_Mollari> <http://dbpedia.org/ontology/series> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Babylon_5"}}, "entities": [{"URI": "http://dbpedia.org/resource/Londo_Mollari", "surface form": "Londo Mollari"}], "relations": [{"URI": "http://dbpedia.org/ontology/series", "surface form": "series"}, {"URI": "http://dbpedia.org/ontology/person", "surface form": "character"}, {"URI": "http://dbpedia.org/property/rank", "surface form": "belong"}]}, {"id": "2389", "question": [{"language": "en", "string": "What company's leader is Edwin Catmull?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/keyPeople> <http://dbpedia.org/resource/Edwin_Catmull> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Company>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Disneytoon_Studios"}}, "entities": [{"URI": "http://dbpedia.org/resource/Edwin_Catmull", "surface form": "Edwin Catmull"}], "relations": [{"URI": "http://dbpedia.org/ontology/company", "surface form": "company"}, {"URI": "http://dbpedia.org/ontology/director", "surface form": " leader"}]}, {"id": "2390", "question": [{"language": "en", "string": "How many different layouts do cars designed by Oliver Boulay have?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/designer> <http://dbpedia.org/resource/Olivier_Boulay> . ?x <http://dbpedia.org/ontology/layout> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "14"}}, "entities": [{"URI": "http://dbpedia.org/resource/Olivier_Boulay", "surface form": "Oliver Boulay"}], "relations": [{"URI": "http://dbpedia.org/property/designer", "surface form": "designed"}, {"URI": "http://dbpedia.org/ontology/layout", "surface form": "layout"}]}, {"id": "2391", "question": [{"language": "en", "string": "What is the type of Naval Station Bremerton ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Naval_Station_Bremerton> <http://dbpedia.org/property/type> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/United_States_Navy"}}, "entities": [{"URI": "http://dbpedia.org/resource/Naval_Station_Bremerton", "surface form": "Naval Station Bremerton"}], "relations": [{"URI": "http://dbpedia.org/ontology/type", "surface form": "type"}]}, {"id": "2392", "question": [{"language": "en", "string": "Name the borough of the Bordesley railway station which is also the route end of the Birmingham and Oxford Junction Railway?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Bordesley_railway_station> <http://dbpedia.org/property/borough> ?uri. <http://dbpedia.org/resource/Birmingham_and_Oxford_Junction_Railway> <http://dbpedia.org/ontology/routeEnd> ?uri} "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Birmingham"}}, "entities": [{"URI": "http://dbpedia.org/resource/Bordesley_railway_station", "surface form": "Bordesley railway station"}, {"URI": "http://dbpedia.org/resource/Birmingham_and_Oxford_Junction_Railway", "surface form": "Birmingham and Oxford Junction Railway"}], "relations": [{"URI": "http://dbpedia.org/property/borough", "surface form": "borough"}, {"URI": "http://dbpedia.org/ontology/routeEnd", "surface form": "route end"}]}, {"id": "2393", "question": [{"language": "en", "string": "What are some movies written by British writers?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/nationality> <http://dbpedia.org/resource/British_people> . ?uri <http://dbpedia.org/ontology/writer> ?x . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Who_I_Am_and_What_I_Want"}}, "entities": [{"URI": "http://dbpedia.org/resource/United_Kingdom", "surface form": "British writers"}, {"URI": "http://dbpedia.org/resource/Freedom_Writers", "surface form": "British writers"}], "relations": [{"URI": "http://dbpedia.org/ontology/film", "surface form": "movies"}, {"URI": "http://dbpedia.org/ontology/writer", "surface form": "written"}, {"URI": "http://dbpedia.org/ontology/country", "surface form": ""}]}, {"id": "2394", "question": [{"language": "en", "string": "Count the number of artists who trained at the San Francisco Art Institute?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE {?uri <http://dbpedia.org/property/training> <http://dbpedia.org/resource/San_Francisco_Art_Institute> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Artist>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "38"}}, "entities": [{"URI": "http://dbpedia.org/resource/San_Francisco_Art_Institute", "surface form": "San Francisco Art Institute"}], "relations": [{"URI": "http://dbpedia.org/property/training", "surface form": "trained"}, {"URI": "http://dbpedia.org/ontology/Artist", "surface form": "artist"}]}, {"id": "2395", "question": [{"language": "en", "string": "What tv shows were born out of a collaboration of playtone and dreamworks?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/company> <http://dbpedia.org/resource/Playtone> . ?uri <http://dbpedia.org/ontology/company> <http://dbpedia.org/resource/DreamWorks_Television> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Pacific_(miniseries)"}}, "entities": [{"URI": "http://dbpedia.org/resource/Playtone", "surface form": "playtone"}, {"URI": "http://dbpedia.org/resource/DreamWorks", "surface form": "Dreamworks"}], "relations": [{"URI": "http://dbpedia.org/ontology/place", "surface form": "shows"}, {"URI": "http://dbpedia.org/ontology/birthPlace", "surface form": "born"}, {"URI": "http://dbpedia.org/ontology/affiliation", "surface form": "collaboration"}]}, {"id": "2396", "question": [{"language": "en", "string": "List the leaders of the government agencies whose jurisdiction was German-occupied Europe."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/jurisdiction> <http://dbpedia.org/resource/German-occupied_Europe> . ?x <http://dbpedia.org/ontology/leader> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/GovernmentAgency>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Heinrich_Himmler"}}, "entities": [{"URI": "http://dbpedia.org/resource/German-occupied_Europe", "surface form": "German-occupied Europe"}], "relations": [{"URI": "http://dbpedia.org/ontology/commander", "surface form": "leaders"}, {"URI": "http://dbpedia.org/ontology/governmentType", "surface form": "government agencies"}, {"URI": "http://dbpedia.org/ontology/jurisdiction", "surface form": "jurisdiction"}]}, {"id": "2397", "question": [{"language": "en", "string": "List the cast member of the movies whose producer is Mark Johnson."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/producer> <http://dbpedia.org/resource/Mark_Johnson_(producer)> . ?x <http://dbpedia.org/ontology/starring> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Anna_Friel"}}, "entities": [{"URI": "http://dbpedia.org/resource/Mark_Johnson", "surface form": "Mark Johnson"}], "relations": [{"URI": "http://dbpedia.org/ontology/type", "surface form": "cast member"}, {"URI": "http://dbpedia.org/ontology/film", "surface form": "movies"}, {"URI": "http://dbpedia.org/ontology/producer", "surface form": "producer"}]}, {"id": "2398", "question": [{"language": "en", "string": "Which city was designed by saleen Pator which is also the birht location of Jimmy Diggs ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Saleen_S5S_Raptor> <http://dbpedia.org/property/designer> ?uri. <http://dbpedia.org/resource/Jimmy_Diggs> <http://dbpedia.org/ontology/birthPlace> ?uri} "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Michigan"}}, "entities": [{"URI": "http://dbpedia.org/resource/Saleen_S7", "surface form": "Saleen pator"}, {"URI": "http://dbpedia.org/resource/Jimmy_Diggs", "surface form": "Jimmy Diggs"}], "relations": [{"URI": "http://dbpedia.org/ontology/city", "surface form": "city"}, {"URI": "http://dbpedia.org/ontology/designer", "surface form": "designed"}, {"URI": "http://dbpedia.org/property/location", "surface form": "birht location"}]}, {"id": "2399", "question": [{"language": "en", "string": "Name the company whose products's predecessor is Boeing Vertol CH-46 Sea Knight?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/predecessor> <http://dbpedia.org/resource/Boeing_Vertol_CH-46_Sea_Knight> . ?uri <http://dbpedia.org/property/products> ?x . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Company>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Boeing_UK"}}, "entities": [{"URI": "http://dbpedia.org/resource/Boeing_Vertol_CH-46_Sea_Knight", "surface form": "Boeing Vertol CH-46 Sea Knight"}], "relations": [{"URI": "http://dbpedia.org/property/name", "surface form": "name"}, {"URI": "http://dbpedia.org/ontology/company", "surface form": "company"}, {"URI": "http://dbpedia.org/ontology/manufacturer", "surface form": "products"}, {"URI": "http://dbpedia.org/ontology/predecessor", "surface form": " predecessor"}]}, {"id": "2400", "question": [{"language": "en", "string": "What is the birth place of music artists which were associated with Albert Ayler ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Albert_Ayler> <http://dbpedia.org/property/associatedActs> ?x . ?x <http://dbpedia.org/ontology/birthPlace> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/MusicalArtist>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bermuda"}}, "entities": [{"URI": "http://dbpedia.org/resource/Albert_Ayler", "surface form": "Albert Ayler"}], "relations": [{"URI": "http://dbpedia.org/ontology/birthPlace", "surface form": "birth place"}, {"URI": "http://dbpedia.org/ontology/musicSubgenre", "surface form": "music artists"}, {"URI": "http://dbpedia.org/ontology/associatedBand", "surface form": "associated"}]}, {"id": "2401", "question": [{"language": "en", "string": "Name the nearest city to Lake Victoria?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Lake_Victoria> <http://dbpedia.org/ontology/nearestCity> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tanzania"}}, "entities": [{"URI": "http://dbpedia.org/resource/Lake_Victoria", "surface form": "Lake Victoria"}], "relations": [{"URI": "http://dbpedia.org/ontology/nearestCity", "surface form": "nearest city"}]}, {"id": "2402", "question": [{"language": "en", "string": "What is the common award won by Charles LeMaire and Eric Roth"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Charles_LeMaire> <http://dbpedia.org/property/awards> ?uri. <http://dbpedia.org/resource/Eric_Roth> <http://dbpedia.org/ontology/award> ?uri} "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Academy_Awards"}}, "entities": [{"URI": "http://dbpedia.org/resource/Charles_LeMaire", "surface form": "Charles LeMaire"}, {"URI": "http://dbpedia.org/resource/Eric_Roth", "surface form": "Eric Roth"}], "relations": [{"URI": "http://dbpedia.org/property/awards", "surface form": "award won"}, {"URI": "http://dbpedia.org/ontology/award", "surface form": "award won"}]}, {"id": "2403", "question": [{"language": "en", "string": "What is the total number of builder of the military structures whose builder is also United States?"}], "query": {"sparql": " SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/builder> <http://dbpedia.org/resource/United_States> . ?x <http://dbpedia.org/ontology/builder> ?uri }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "51"}}, "entities": [{"URI": "http://dbpedia.org/resource/United_States", "surface form": "United States"}], "relations": [{"URI": "http://dbpedia.org/ontology/populationTotal", "surface form": "total"}, {"URI": "http://dbpedia.org/ontology/builder", "surface form": "builder"}, {"URI": "http://dbpedia.org/ontology/garrison", "surface form": "military structures"}, {"URI": "http://dbpedia.org/ontology/builder", "surface form": "builder"}]}, {"id": "2404", "question": [{"language": "en", "string": "Tell me the total number of organizations who maintain the bridges made by the malaysian PWD?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/designer> <http://dbpedia.org/resource/Malaysian_Public_Works_Department> . ?x <http://dbpedia.org/ontology/maintainedBy> ?uri . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Organisation>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "50"}}, "entities": [{"URI": "http://dbpedia.org/resource/Malaysia", "surface form": "Malaysian pwd"}, {"URI": "http://dbpedia.org/resource/PWD_Bamenda", "surface form": "Malaysian pwd"}], "relations": [{"URI": "http://dbpedia.org/ontology/populationTotal", "surface form": "total"}, {"URI": "http://dbpedia.org/ontology/company", "surface form": "organizations"}, {"URI": "http://dbpedia.org/ontology/maintainedBy", "surface form": "maintain"}, {"URI": "http://dbpedia.org/ontology/abstract", "surface form": "bridges"}, {"URI": "http://dbpedia.org/ontology/country", "surface form": ""}]}, {"id": "2405", "question": [{"language": "en", "string": "How many shows does HBO have?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE {?uri <http://dbpedia.org/ontology/company> <http://dbpedia.org/resource/HBO> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "111"}}, "entities": [{"URI": "http://dbpedia.org/resource/HBO", "surface form": "HBO"}], "relations": [{"URI": "http://dbpedia.org/ontology/company", "surface form": "@@@"}, {"URI": "http://dbpedia.org/ontology/TelevisionShow", "surface form": "shows"}]}, {"id": "2406", "question": [{"language": "en", "string": "How many people have been canonized by Pope Benedict XVI?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE {?uri <http://dbpedia.org/property/canonizedBy> <http://dbpedia.org/resource/Pope_Benedict_XVI> . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "43"}}, "entities": [{"URI": "http://dbpedia.org/resource/Pope_Benedict_XVI", "surface form": "Pope Benedict XVI"}], "relations": [{"URI": "http://dbpedia.org/ontology/canonizedBy", "surface form": "canonized"}]}, {"id": "2407", "question": [{"language": "en", "string": "Bud Adams owns which american football team?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/owner> <http://dbpedia.org/resource/Bud_Adams> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/AmericanFootballTeam>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Houston_Oilers"}}, "entities": [{"URI": "http://dbpedia.org/resource/Bud_Adams", "surface form": "bud Adams"}, {"URI": "http://dbpedia.org/resource/Japan_national_American_football_team", "surface form": "american football team"}], "relations": [{"URI": "http://dbpedia.org/ontology/owner", "surface form": "owns"}, {"URI": "http://dbpedia.org/ontology/AmericanFootballTeam", "surface form": "american football team"}]}, {"id": "2408", "question": [{"language": "en", "string": "Whose work is in the Musee d'orsay?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/museum> <http://dbpedia.org/resource/Mus\u00e9e_d'Orsay> . ?x <http://dbpedia.org/property/artist> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Artwork>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gustave_Caillebotte"}}, "entities": [{"URI": "http://dbpedia.org/resource/Mus\u00e9e_d'Orsay", "surface form": "Musee d"}], "relations": [{"URI": "http://dbpedia.org/property/work", "surface form": "work"}]}, {"id": "2409", "question": [{"language": "en", "string": "For which team did both Butch Metzger and Brian Horwitz debuted ? "}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Butch_Metzger> <http://dbpedia.org/ontology/debutTeam> ?uri. <http://dbpedia.org/resource/Brian_Horwitz> <http://dbpedia.org/ontology/debutTeam> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/San_Francisco_Giants"}}, "entities": [{"URI": "http://dbpedia.org/resource/Butch_Metzger", "surface form": "Butch Metzger"}, {"URI": "http://dbpedia.org/resource/Brian_Horwitz", "surface form": "Brian Horwitz"}], "relations": [{"URI": "http://dbpedia.org/ontology/team", "surface form": "team"}, {"URI": "http://dbpedia.org/ontology/debutTeam", "surface form": "debuted"}]}, {"id": "2410", "question": [{"language": "en", "string": "What are the famous Uni Toronto scientists known for?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/almaMater> <http://dbpedia.org/resource/University_of_Toronto> . ?x <http://dbpedia.org/ontology/knownFor> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Scientist>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Very_early_onset_inflammatory_bowel_disease"}}, "entities": [{"URI": "http://dbpedia.org/resource/University_of_Toronto", "surface form": "Uni Toronto"}], "relations": []}, {"id": "2411", "question": [{"language": "en", "string": "How many books have been penned by Miguel de Cervantes?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE {?uri <http://dbpedia.org/ontology/author> <http://dbpedia.org/resource/Miguel_de_Cervantes> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Book>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "4"}}, "entities": [{"URI": "http://dbpedia.org/resource/Miguel_de_Cervantes", "surface form": "Miguel de Cervantes"}], "relations": [{"URI": "http://dbpedia.org/ontology/author", "surface form": "penned"}, {"URI": "http://dbpedia.org/ontology/Book", "surface form": "books"}]}, {"id": "2412", "question": [{"language": "en", "string": "Count the band members of Skull Gang?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { <http://dbpedia.org/resource/Skull_Gang> <http://dbpedia.org/ontology/bandMember> ?uri . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Person>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "1"}}, "entities": [{"URI": "http://dbpedia.org/resource/Skull_Gang", "surface form": "Skull Gang"}], "relations": [{"URI": "http://dbpedia.org/ontology/bandMember", "surface form": "band members"}]}, {"id": "2413", "question": [{"language": "en", "string": "In which teams have league members of the Czech Extraliga played previously?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/league> <http://dbpedia.org/resource/Czech_Extraliga> . ?x <http://dbpedia.org/ontology/formerTeam> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/HK_Dukla_Tren\u010d\u00edn"}}, "entities": [{"URI": "http://dbpedia.org/resource/Czech_Republic", "surface form": "Czech Extraliga"}, {"URI": "http://dbpedia.org/resource/Czech_Extraliga", "surface form": "Czech Extraliga"}], "relations": [{"URI": "http://dbpedia.org/property/league", "surface form": "league"}, {"URI": "http://dbpedia.org/ontology/formerTeam", "surface form": "teams"}]}, {"id": "2414", "question": [{"language": "en", "string": "Which country's people have graduated from Ghana School of Law?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/almaMater> <http://dbpedia.org/resource/Ghana_School_of_Law> . ?x <http://dbpedia.org/ontology/nationality> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Person>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ghana"}}, "entities": [{"URI": "http://dbpedia.org/resource/Ghana_School_of_Law", "surface form": "Ghana School of Law"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": "country"}, {"URI": "http://dbpedia.org/ontology/effectiveRadiatedPower", "surface form": "graduated"}]}, {"id": "2415", "question": [{"language": "en", "string": "In which cities were the chess grand masters born?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/title> <http://dbpedia.org/resource/Grandmaster_(chess)> . ?x <http://dbpedia.org/ontology/birthPlace> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Denmark"}}, "entities": [{"URI": "http://dbpedia.org/resource/Grand_Masters'_Choice", "surface form": "chess grand masters"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": "cities"}, {"URI": "http://dbpedia.org/ontology/birthPlace", "surface form": "born"}]}, {"id": "2416", "question": [{"language": "en", "string": "Which siler medalist of the Tennis at the 2012 Summer Olympics Men's singles was also the flagbearer of the Switzerland at the 2008 Summer Olympics"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Tennis_at_the_2012_Summer_Olympics_\u2013_Men's_singles> <http://dbpedia.org/ontology/silverMedalist> ?uri. <http://dbpedia.org/resource/Switzerland_at_the_2008_Summer_Olympics> <http://dbpedia.org/property/flagbearer> ?uri} "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Roger_Federer"}}, "entities": [{"URI": "http://dbpedia.org/resource/Medalist", "surface form": " singles siler medalist"}, {"URI": "http://dbpedia.org/resource/Tennis_at_the_2012_Summer_Olympics", "surface form": "Tennis at the 2012 Summer Olympics Men"}, {"URI": "http://dbpedia.org/resource/Switzerland_at_the_2008_Summer_Olympics", "surface form": "Switzerland at the 2008 Summer Olympics"}], "relations": []}, {"id": "2417", "question": [{"language": "en", "string": "How many bands are based in London?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE {?uri <http://dbpedia.org/ontology/hometown> <http://dbpedia.org/resource/London> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Band>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "1215"}}, "entities": [{"URI": "http://dbpedia.org/resource/London", "surface form": "London"}], "relations": [{"URI": "http://dbpedia.org/ontology/hometown", "surface form": "based in"}]}, {"id": "2418", "question": [{"language": "en", "string": "Name few TV shows aired by Prime Time Entertainment Network?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/network> <http://dbpedia.org/resource/Prime_Time_Entertainment_Network> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pointman"}}, "entities": [{"URI": "http://dbpedia.org/resource/Tv_test_pattern", "surface form": "TV"}, {"URI": "http://dbpedia.org/resource/Prime_Time_Entertainment_Network", "surface form": "Prime Time Entertainment Network"}], "relations": [{"URI": "http://dbpedia.org/ontology/network", "surface form": "Network"}, {"URI": "http://dbpedia.org/ontology/TelevisionShow", "surface form": "shows"}]}, {"id": "2419", "question": [{"language": "en", "string": "WHo gave the lyrcis of Doonesbury ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Doonesbury_(musical)> <http://dbpedia.org/ontology/lyrics> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Garry_Trudeau"}}, "entities": [{"URI": "http://dbpedia.org/resource/Who", "surface form": "wHo"}, {"URI": "http://dbpedia.org/resource/Doonesbury_(musical)", "surface form": "Doonesbury"}], "relations": [{"URI": "http://dbpedia.org/ontology/lyrics", "surface form": "lyrics"}]}, {"id": "2420", "question": [{"language": "en", "string": "Which things have been located, where governance is Houston City Council?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/governingBody> <http://dbpedia.org/resource/Houston_City_Council> . ?uri <http://dbpedia.org/ontology/location> ?x . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/1940_Air_Terminal_Museum"}}, "entities": [{"URI": "http://dbpedia.org/resource/Houston_City_Council", "surface form": "Houston City Council"}], "relations": [{"URI": "http://dbpedia.org/ontology/locatedInArea", "surface form": "located,"}, {"URI": "http://dbpedia.org/ontology/management", "surface form": "governance"}]}, {"id": "2421", "question": [{"language": "en", "string": "What beverages originate in Leuven?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/origin> <http://dbpedia.org/resource/Leuven> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Beverage>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Stella_Artois"}}, "entities": [{"URI": "http://dbpedia.org/resource/Leuven", "surface form": "Leuven"}], "relations": [{"URI": "http://dbpedia.org/ontology/origin", "surface form": "origin"}, {"URI": "http://dbpedia.org/ontology/Beverage", "surface form": "beverage"}]}, {"id": "2422", "question": [{"language": "en", "string": "Who are the parents of Charles Phelps Taft II and Robert A. Taft?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/child> <http://dbpedia.org/resource/Charles_Phelps_Taft_II> . ?uri <http://dbpedia.org/ontology/child> <http://dbpedia.org/resource/Robert_A._Taft> . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/William_Howard_Taft"}}, "entities": [{"URI": "http://dbpedia.org/resource/Ii", "surface form": "II"}, {"URI": "http://dbpedia.org/resource/Charles_Phelps_Taft", "surface form": "Charles Phelps Taft"}, {"URI": "http://dbpedia.org/resource/A", "surface form": "A"}, {"URI": "http://dbpedia.org/resource/Robert_A._Taft", "surface form": "Robert Taft"}], "relations": [{"URI": "http://dbpedia.org/property/parents", "surface form": "parents"}]}, {"id": "2423", "question": [{"language": "en", "string": "How many prime ministers did the predecessor of Duncan Sandys serve?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { <http://dbpedia.org/resource/Duncan_Sandys> <http://dbpedia.org/property/successor> ?x . ?x <http://dbpedia.org/property/primeminister> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "7"}}, "entities": [{"URI": "http://dbpedia.org/resource/Duncan_Sandys", "surface form": "Duncan Sandys"}], "relations": [{"URI": "http://dbpedia.org/ontology/primeMinister", "surface form": "prime ministers"}, {"URI": "http://dbpedia.org/ontology/predecessor", "surface form": "predecessor"}, {"URI": "http://dbpedia.org/ontology/colour", "surface form": "serve"}]}, {"id": "2424", "question": [{"language": "en", "string": "Name the city served by Juhu Aerodrome ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Juhu_Aerodrome> <http://dbpedia.org/property/cityServed> ?uri } "}, "answers": {"uri": {"type": "literal", "xml:lang": "en", "value": "Mumbai since 1928"}}, "entities": [{"URI": "http://dbpedia.org/resource/Juhu_Aerodrome", "surface form": "Juhu Aerodrome"}], "relations": [{"URI": "http://dbpedia.org/property/cityServed", "surface form": "served city"}]}, {"id": "2425", "question": [{"language": "en", "string": "List the notable works of the writer of The Tony Randall Show ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/The_Tony_Randall_Show> <http://dbpedia.org/property/writer> ?x . ?x <http://dbpedia.org/ontology/notableWork> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Frasier"}}, "entities": [{"URI": "http://dbpedia.org/resource/The_Tony_Randall_Show", "surface form": "The Tony Randall Show"}], "relations": [{"URI": "http://dbpedia.org/ontology/notableWork", "surface form": "notable works"}, {"URI": "http://dbpedia.org/ontology/writer", "surface form": "writer"}]}, {"id": "2426", "question": [{"language": "en", "string": "How many cars succeed the cars assembled in Canada?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/assembly> <http://dbpedia.org/resource/Canada> . ?x <http://dbpedia.org/ontology/predecessor> ?uri . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Automobile>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "32"}}, "entities": [{"URI": "http://dbpedia.org/resource/Canada", "surface form": "Canada"}], "relations": [{"URI": "http://dbpedia.org/ontology/management", "surface form": "cars"}, {"URI": "http://dbpedia.org/property/work", "surface form": "succeed"}, {"URI": "http://dbpedia.org/ontology/management", "surface form": "cars"}, {"URI": "http://dbpedia.org/property/assembly", "surface form": "assembled"}]}, {"id": "2427", "question": [{"language": "en", "string": "Where has the employee of Columbia Records worked ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/employer> <http://dbpedia.org/resource/Columbia_Records> . ?x <http://dbpedia.org/ontology/employer> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Columbia_Records"}}, "entities": [{"URI": "http://dbpedia.org/resource/Columbia_Records", "surface form": "Columbia Records"}], "relations": [{"URI": "http://dbpedia.org/ontology/employer", "surface form": "employee"}, {"URI": "http://dbpedia.org/ontology/operator", "surface form": "worked"}]}, {"id": "2428", "question": [{"language": "en", "string": "Name the products of Den norske Bank ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Den_norske_Bank> <http://dbpedia.org/property/products> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/American_Express"}}, "entities": [{"URI": "http://dbpedia.org/resource/Den_norske_Bank", "surface form": "Den norske Bank"}], "relations": [{"URI": "http://dbpedia.org/property/products", "surface form": "products"}]}, {"id": "2429", "question": [{"language": "en", "string": "In how many places have people canonized by John Paul II died?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/canonizedBy> <http://dbpedia.org/resource/Pope_John_Paul_II> . ?x <http://dbpedia.org/property/deathPlace> ?uri . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Place>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "91"}}, "entities": [{"URI": "http://dbpedia.org/resource/Pope_John_Paul_II", "surface form": "John Paul II"}], "relations": [{"URI": "http://dbpedia.org/property/height", "surface form": "places"}, {"URI": "http://dbpedia.org/property/canonizedBy", "surface form": "canonized"}, {"URI": "http://dbpedia.org/ontology/deathDate", "surface form": "died"}]}, {"id": "2430", "question": [{"language": "en", "string": "Which country does league of Nguendula Filipe belongs to?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Nguendula_Filipe> <http://dbpedia.org/ontology/league> ?x . ?x <http://dbpedia.org/property/country> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Angola"}}, "entities": [{"URI": "http://dbpedia.org/resource/Nguendula_Filipe", "surface form": "Nguendula Filipe"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": "country"}, {"URI": "http://dbpedia.org/ontology/league", "surface form": "league"}, {"URI": "http://dbpedia.org/property/date", "surface form": "belongs"}]}, {"id": "2431", "question": [{"language": "en", "string": "Which rivers flow into the lower manhatten?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/mouthMountain> <http://dbpedia.org/resource/Lower_Manhattan> } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hudson_River"}}, "entities": [{"URI": "http://dbpedia.org/resource/Manhattan", "surface form": "manhatten"}], "relations": [{"URI": "http://dbpedia.org/ontology/river", "surface form": "rivers"}, {"URI": "http://dbpedia.org/property/float", "surface form": "flow"}]}, {"id": "2432", "question": [{"language": "en", "string": "Who is the founder of Pittsburgh ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Pittsburgh> <http://dbpedia.org/ontology/founder> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/George_Washington"}}, "entities": [{"URI": "http://dbpedia.org/resource/Pittsburgh", "surface form": "Pittsburgh"}], "relations": [{"URI": "http://dbpedia.org/ontology/founder", "surface form": "founder"}]}, {"id": "2433", "question": [{"language": "en", "string": "What are the airlines whose hub is San Francisco International Airport?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/hubs> <http://dbpedia.org/resource/San_Francisco_International_Airport> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Airline>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Virgin_America"}}, "entities": [{"URI": "http://dbpedia.org/resource/San_Francisco_International_Airport", "surface form": "San Francisco International Airport"}], "relations": [{"URI": "http://dbpedia.org/property/hubs", "surface form": "hub"}, {"URI": "http://dbpedia.org/ontology/Airline", "surface form": "airlines"}]}, {"id": "2434", "question": [{"language": "en", "string": "Which religions' people fought in the Miao rebellion?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Miao_Rebellion_(1795\u20131806)> <http://dbpedia.org/property/combatant> ?x . ?x <http://dbpedia.org/ontology/religion> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Taoism"}}, "entities": [{"URI": "http://dbpedia.org/resource/Miao_Rebellion", "surface form": "Miao rebellion"}], "relations": [{"URI": "http://dbpedia.org/ontology/religion", "surface form": "religions"}, {"URI": "http://dbpedia.org/ontology/type", "surface form": "fought"}]}, {"id": "2435", "question": [{"language": "en", "string": "Count all the shows whose music composers are in Oysterhead."}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/associatedMusicalArtist> <http://dbpedia.org/resource/Oysterhead> . ?uri <http://dbpedia.org/property/themeMusicComposer> ?x . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/Oysterhead", "surface form": "Oysterhead"}], "relations": [{"URI": "http://dbpedia.org/ontology/time", "surface form": "count"}, {"URI": "http://dbpedia.org/ontology/place", "surface form": "shows"}, {"URI": "http://dbpedia.org/ontology/musicSubgenre", "surface form": "music composers"}]}, {"id": "2436", "question": [{"language": "en", "string": "How many other architect are there of the historic places whose architect is also Stanford White ?"}], "query": {"sparql": " SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/architect> <http://dbpedia.org/resource/Stanford_White> . ?x <http://dbpedia.org/ontology/architect> ?uri }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "54"}}, "entities": [{"URI": "http://dbpedia.org/resource/Heritage_New_Zealand", "surface form": "historic places"}, {"URI": "http://dbpedia.org/resource/Stanford_White", "surface form": "Stanford White"}], "relations": [{"URI": "http://dbpedia.org/ontology/architect", "surface form": "architect"}, {"URI": "http://dbpedia.org/ontology/architect", "surface form": "architect"}]}, {"id": "2437", "question": [{"language": "en", "string": "What is the alma mater of the Marshall Fletcher McCallie and has affiliation with Vanderbilt University Medical Center ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Marshall_Fletcher_McCallie> <http://dbpedia.org/property/almaMater> ?uri. <http://dbpedia.org/resource/Vanderbilt_University_Medical_Center> <http://dbpedia.org/property/affiliation> ?uri} "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vanderbilt_University"}}, "entities": [{"URI": "http://dbpedia.org/resource/Marshall_Fletcher_McCallie", "surface form": "Marshall Fletcher McCallie"}, {"URI": "http://dbpedia.org/resource/Vanderbilt_University_Medical_Center", "surface form": "Vanderbilt University Medical Center"}], "relations": [{"URI": "http://dbpedia.org/ontology/almaMater", "surface form": "alma mater"}, {"URI": "http://dbpedia.org/ontology/affiliation", "surface form": "affiliation"}]}, {"id": "2438", "question": [{"language": "en", "string": "Which companies published Super Mario Adventures?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Super_Mario_Adventures> <http://dbpedia.org/property/publisher> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nintendo"}}, "entities": [{"URI": "http://dbpedia.org/resource/Companies_listed_on_the_New_York_Stock_Exchange_(J)", "surface form": "companies"}, {"URI": "http://dbpedia.org/resource/Super_Mario_Adventures", "surface form": "Super Mario Adventures"}], "relations": [{"URI": "http://dbpedia.org/ontology/publisher", "surface form": "published"}]}, {"id": "2439", "question": [{"language": "en", "string": "Which artist of Madagascar: Operation Penguin is also the writer of He's a Pirate ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Madagascar:_Operation_Penguin> <http://dbpedia.org/property/artist> ?uri. <http://dbpedia.org/resource/He's_a_Pirate> <http://dbpedia.org/property/writer> ?uri} "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hans_Zimmer"}}, "entities": [{"URI": "http://dbpedia.org/resource/Madagascar:_Operation_Penguin", "surface form": "Operation Penguin"}, {"URI": "http://dbpedia.org/resource/He's_a_Pirate", "surface form": "He's a Pirate"}], "relations": [{"URI": "http://dbpedia.org/ontology/artist", "surface form": "artist"}, {"URI": "http://dbpedia.org/ontology/writer", "surface form": "writer"}]}, {"id": "2440", "question": [{"language": "en", "string": "Where was the designer of REP Parasol born?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/REP_Parasol> <http://dbpedia.org/ontology/designer> ?x . ?x <http://dbpedia.org/ontology/birthPlace> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/France"}}, "entities": [{"URI": "http://dbpedia.org/resource/REP_Parasol", "surface form": "REP Parasol"}], "relations": [{"URI": "http://dbpedia.org/ontology/designer", "surface form": "designer"}, {"URI": "http://dbpedia.org/ontology/birthPlace", "surface form": "born"}]}, {"id": "2441", "question": [{"language": "en", "string": "Which religion is followed by people in the family of Meadow Sopranos?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/family> <http://dbpedia.org/resource/Meadow_Soprano> . ?x <http://dbpedia.org/ontology/religion> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Person>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Evangelism"}}, "entities": [{"URI": "http://dbpedia.org/resource/Meadow_Soprano", "surface form": " Meadow Sopranos"}], "relations": [{"URI": "http://dbpedia.org/ontology/religion", "surface form": "religion"}, {"URI": "http://dbpedia.org/ontology/family", "surface form": "family"}]}, {"id": "2442", "question": [{"language": "en", "string": "How many cars are the predecessor of cars similar to the Pontiac G8?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { <http://dbpedia.org/resource/Pontiac_G8> <http://dbpedia.org/ontology/relatedMeanOfTransportation> ?x . ?x <http://dbpedia.org/ontology/predecessor> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Automobile>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "7"}}, "entities": [{"URI": "http://dbpedia.org/resource/G8_Alternatives", "surface form": "G8"}, {"URI": "http://dbpedia.org/resource/Pontiac", "surface form": "Pontiac"}], "relations": [{"URI": "http://dbpedia.org/ontology/management", "surface form": "cars"}, {"URI": "http://dbpedia.org/ontology/predecessor", "surface form": "predecessor"}, {"URI": "http://dbpedia.org/ontology/management", "surface form": "cars"}]}, {"id": "2443", "question": [{"language": "en", "string": "What are some shows whose voice actors play the piano?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/instrument> <http://dbpedia.org/resource/Piano> . ?uri <http://dbpedia.org/property/voices> ?x . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Go,_Diego,_Go!"}}, "entities": [{"URI": "http://dbpedia.org/resource/Piano", "surface form": "piano"}], "relations": [{"URI": "http://dbpedia.org/ontology/place", "surface form": "shows"}, {"URI": "http://dbpedia.org/ontology/voice", "surface form": "voice actors"}, {"URI": "http://dbpedia.org/ontology/starring", "surface form": "play"}]}, {"id": "2444", "question": [{"language": "en", "string": "From how many different places have participants of Breeders's Cup Turf come?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/race> <http://dbpedia.org/resource/Breeders'_Cup_Turf> . ?x <http://dbpedia.org/property/birthPlace> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "31"}}, "entities": [{"URI": "http://dbpedia.org/resource/Breeders_(film)", "surface form": "Breeders"}, {"URI": "http://dbpedia.org/resource/Breeders'_Cup_Juvenile_Turf", "surface form": " Cup Turf"}], "relations": [{"URI": "http://dbpedia.org/property/height", "surface form": "places"}, {"URI": "http://dbpedia.org/ontology/participant", "surface form": "participants"}]}, {"id": "2445", "question": [{"language": "en", "string": "How many movies were cinematographed by Jordan Cronenweth?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE {?uri <http://dbpedia.org/ontology/cinematography> <http://dbpedia.org/resource/Jordan_Cronenweth> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "21"}}, "entities": [{"URI": "http://dbpedia.org/resource/Jordan_Cronenweth", "surface form": "Jordan Cronenweth"}], "relations": [{"URI": "http://dbpedia.org/ontology/cinematography", "surface form": "cinematographed"}, {"URI": "http://dbpedia.org/ontology/Film", "surface form": "movie"}]}, {"id": "2446", "question": [{"language": "en", "string": "Who is the famous relative of Kelly Osbourne?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/relatives> <http://dbpedia.org/resource/Kelly_Osbourne> . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jack_Osbourne"}}, "entities": [{"URI": "http://dbpedia.org/resource/Kelly_Osbourne", "surface form": "Kelly Osbourne"}], "relations": [{"URI": "http://dbpedia.org/ontology/relative", "surface form": "famous relative"}]}, {"id": "2447", "question": [{"language": "en", "string": "In how many different stadiums are the seasons of the 2015 NA Soccer league held?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/league> <http://dbpedia.org/resource/2015_North_American_Soccer_League_season> . ?x <http://dbpedia.org/ontology/ground> ?uri . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Stadium>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "8"}}, "entities": [{"URI": "http://dbpedia.org/resource/2015_North_American_Soccer_League_season", "surface form": "the 2015 NA Soccer league held"}], "relations": [{"URI": "http://dbpedia.org/property/stadium", "surface form": "stadiums"}, {"URI": "http://dbpedia.org/ontology/season", "surface form": "seasons"}, {"URI": "http://dbpedia.org/ontology/category", "surface form": "held"}]}, {"id": "2448", "question": [{"language": "en", "string": "What teams have Avangard Omsk's players played for?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/playedFor> <http://dbpedia.org/resource/Avangard_Omsk> . ?x <http://dbpedia.org/ontology/formerTeam> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Atlant_Moscow_Oblast"}}, "entities": [{"URI": "http://dbpedia.org/resource/Avangard_Omsk", "surface form": "Avangard Omsk"}], "relations": [{"URI": "http://dbpedia.org/property/playedFor", "surface form": "played for"}, {"URI": "http://dbpedia.org/ontology/formerTeam", "surface form": "teams"}]}, {"id": "2449", "question": [{"language": "en", "string": "How many athletic associations are there in all of the private universities?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/type> <http://dbpedia.org/resource/Private_university> . ?x <http://dbpedia.org/property/athletics> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/Bahamas_Association_of_Athletic_Associations", "surface form": "athletic associations"}, {"URI": "http://dbpedia.org/resource/List_of_private_universities_in_Canada", "surface form": "private universities"}], "relations": []}, {"id": "2450", "question": [{"language": "en", "string": "What are some products manufactured by Sony? "}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/manufacturer> <http://dbpedia.org/resource/Sony> . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Walkman"}}, "entities": [{"URI": "http://dbpedia.org/resource/Sony", "surface form": "Sony"}], "relations": [{"URI": "http://dbpedia.org/ontology/manufacturer", "surface form": "manufactured by"}]}, {"id": "2451", "question": [{"language": "en", "string": "What is the producer of the television shows whose channel is CBBC?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/channel> <http://dbpedia.org/resource/CBBC_(TV_channel)> . ?x <http://dbpedia.org/ontology/producer> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pete_Davies_(Producer)"}}, "entities": [{"URI": "http://dbpedia.org/resource/CBBC_(TV_channel)", "surface form": "CBBC"}], "relations": [{"URI": "http://dbpedia.org/ontology/producer", "surface form": "producer"}, {"URI": "http://dbpedia.org/ontology/transmission", "surface form": "television"}, {"URI": "http://dbpedia.org/ontology/place", "surface form": "shows"}, {"URI": "http://dbpedia.org/ontology/channel", "surface form": "channel"}]}, {"id": "2452", "question": [{"language": "en", "string": "List all the movies whose music has been made up with someone under RCA records?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/recordLabel> <http://dbpedia.org/resource/RCA_Records> . ?uri <http://dbpedia.org/property/music> ?x . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/De_Mantel_der_Liefde"}}, "entities": [{"URI": "http://dbpedia.org/resource/RCA_Records", "surface form": "RCA records"}], "relations": [{"URI": "http://dbpedia.org/ontology/film", "surface form": "movies"}, {"URI": "http://dbpedia.org/ontology/musicFusionGenre", "surface form": "music"}, {"URI": "http://dbpedia.org/property/book", "surface form": "records"}]}, {"id": "2453", "question": [{"language": "en", "string": "What is the style of architecture of South Loop Printing House District ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/South_Loop_Printing_House_District> <http://dbpedia.org/ontology/architecturalStyle> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chicago"}}, "entities": [{"URI": "http://dbpedia.org/resource/South_Loop_Printing_House_District", "surface form": "South Loop Printing House District"}], "relations": [{"URI": "http://dbpedia.org/ontology/architecturalStyle", "surface form": "style of architecture"}]}, {"id": "2454", "question": [{"language": "en", "string": "Name the ssignificant buildings of Ivan Fomin ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Ivan_Fomin> <http://dbpedia.org/ontology/significantBuilding> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Moscow"}}, "entities": [{"URI": "http://dbpedia.org/resource/Rigby's_Buildings", "surface form": "ssignificant buildings"}, {"URI": "http://dbpedia.org/resource/Ivan_Fomin", "surface form": "Ivan Fomin"}], "relations": [{"URI": "http://dbpedia.org/ontology/significantBuilding", "surface form": "significant building"}]}, {"id": "2455", "question": [{"language": "en", "string": "What are all the religions in which Jacob and Abraham are important?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Jacob> <http://dbpedia.org/property/veneratedIn> ?uri. <http://dbpedia.org/resource/Abraham> <http://dbpedia.org/property/veneratedIn> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Judaism"}}, "entities": [{"URI": "http://dbpedia.org/resource/Jacob", "surface form": "Jacob and Abraham"}], "relations": [{"URI": "http://dbpedia.org/ontology/religion", "surface form": "religions"}]}, {"id": "2456", "question": [{"language": "en", "string": "Give me the count of newspaper whose language is Sweedish and headquartered at stockholm ?"}], "query": {"sparql": " SELECT DISTINCT COUNT(?uri) WHERE {?uri <http://dbpedia.org/property/language> <http://dbpedia.org/resource/Swedish_language> . ?uri <http://dbpedia.org/property/headquarters> <http://dbpedia.org/resource/Stockholm> } "}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "16"}}, "entities": [{"URI": "http://dbpedia.org/resource/Swedish", "surface form": "Sweedish"}, {"URI": "http://dbpedia.org/resource/Stockholm", "surface form": "stockholm"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": "count"}, {"URI": "http://dbpedia.org/ontology/title", "surface form": "newspaper"}, {"URI": "http://dbpedia.org/ontology/language", "surface form": "language"}, {"URI": "http://dbpedia.org/ontology/headquarter", "surface form": "headquartered"}, {"URI": "http://dbpedia.org/ontology/country", "surface form": ""}]}, {"id": "2457", "question": [{"language": "en", "string": "What are the cities located on the sea into which the Aegean Sea flows?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Aegean_Sea> <http://dbpedia.org/ontology/outflow> ?x . ?x <http://dbpedia.org/property/cities> ?uri . }"}, "answers": {"uri": {"type": "literal", "xml:lang": "en", "value": "Alexandria, Barcelona, Algiers, Izmir, Tel Aviv-Yafo, Rome, Athens, Antalya, Beirut, Tripoli, Mersin, Marseille, Mu\u011fla, Naples, Tangier, Tunis, Split,"}}, "entities": [{"URI": "http://dbpedia.org/resource/Aegean_Sea", "surface form": "Aegean Sea"}], "relations": [{"URI": "http://dbpedia.org/ontology/outflow", "surface form": "flows"}, {"URI": "http://dbpedia.org/property/cities", "surface form": "cities"}]}, {"id": "2458", "question": [{"language": "en", "string": "In which areas did the pupils of Sylvain Levi work?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/academicAdvisor> <http://dbpedia.org/resource/Sylvain_L\u00e9vi> . ?x <http://dbpedia.org/property/fields> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Daoism"}}, "entities": [{"URI": "http://dbpedia.org/resource/Sylvain_L\u00e9vi", "surface form": "Sylvain Levi work"}], "relations": [{"URI": "http://dbpedia.org/ontology/school", "surface form": "pupils"}]}, {"id": "2459", "question": [{"language": "en", "string": "Name the movie whose producer is Michael Deeley and music is given by Vangelis ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/producer> <http://dbpedia.org/resource/Michael_Deeley> . ?uri <http://dbpedia.org/property/music> <http://dbpedia.org/resource/Vangelis> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Blade_Runner"}}, "entities": [{"URI": "http://dbpedia.org/resource/Michael_Deeley", "surface form": "Michael Deeley"}, {"URI": "http://dbpedia.org/resource/Vangelis", "surface form": "Vangelis"}], "relations": [{"URI": "http://dbpedia.org/property/name", "surface form": "name"}, {"URI": "http://dbpedia.org/ontology/picture", "surface form": "movie"}, {"URI": "http://dbpedia.org/ontology/producer", "surface form": "producer"}, {"URI": "http://dbpedia.org/ontology/musicalBand", "surface form": "music"}]}, {"id": "2460", "question": [{"language": "en", "string": "How many people are in the band with Juelz Santana?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/currentMembers> <http://dbpedia.org/resource/Juelz_Santana> . ?x <http://dbpedia.org/ontology/bandMember> ?uri . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Person>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "5"}}, "entities": [{"URI": "http://dbpedia.org/resource/Juelz_Santana", "surface form": "Juelz Santana"}], "relations": [{"URI": "http://dbpedia.org/ontology/band", "surface form": "band"}]}, {"id": "2461", "question": [{"language": "en", "string": "Who owns the broadcast network founded by CNN?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/foundedBy> <http://dbpedia.org/resource/CNN> . ?x <http://dbpedia.org/property/owner> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/BroadcastNetwork>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Time_Warner"}}, "entities": [{"URI": "http://dbpedia.org/resource/CNN", "surface form": "CNN"}], "relations": [{"URI": "http://dbpedia.org/ontology/languageFamily", "surface form": "owns"}, {"URI": "http://dbpedia.org/property/network", "surface form": "broadcast network"}, {"URI": "http://dbpedia.org/ontology/foundingYear", "surface form": "founded"}]}, {"id": "2462", "question": [{"language": "en", "string": "List the writers of Tales of Suspense ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Tales_of_Suspense> <http://dbpedia.org/property/writers> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Larry_Lieber"}}, "entities": [{"URI": "http://dbpedia.org/resource/Tales_of_Suspense", "surface form": "Tales of Suspense"}], "relations": [{"URI": "http://dbpedia.org/property/writers", "surface form": "writers"}]}, {"id": "2463", "question": [{"language": "en", "string": "List the academic discipline of the journals whose one of the discipline is neuro imaging ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/academicDiscipline> <http://dbpedia.org/resource/Neuroimaging> . ?x <http://dbpedia.org/ontology/academicDiscipline> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/AcademicJournal>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Functional_neuroimaging"}}, "entities": [{"URI": "http://dbpedia.org/resource/Neuroimaging", "surface form": "neuro imaging"}], "relations": [{"URI": "http://dbpedia.org/ontology/academicDiscipline", "surface form": "academic discipline "}, {"URI": "http://dbpedia.org/ontology/academicDiscipline", "surface form": "academic discipline "}]}, {"id": "2464", "question": [{"language": "en", "string": "Who has authored books published by the Perkins school for the Blind?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/publisher> <http://dbpedia.org/resource/Perkins_School_for_the_Blind> . ?x <http://dbpedia.org/ontology/author> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/WrittenWork>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Helen_Keller"}}, "entities": [{"URI": "http://dbpedia.org/resource/Perkins_School_for_the_Blind", "surface form": "Perkins school for the Blind"}], "relations": [{"URI": "http://dbpedia.org/ontology/parent", "surface form": "authored"}, {"URI": "http://dbpedia.org/ontology/publisher", "surface form": "books published"}]}, {"id": "2465", "question": [{"language": "en", "string": "What kind of games does Blizzard games develop?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/developer> <http://dbpedia.org/resource/Blizzard_Entertainment> . ?x <http://dbpedia.org/ontology/genre> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/VideoGame>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Strategy_video_game"}}, "entities": [{"URI": "http://dbpedia.org/resource/Blizzard_Entertainment", "surface form": "Blizzard games"}], "relations": [{"URI": "http://dbpedia.org/ontology/developer", "surface form": "develop"}, {"URI": "http://dbpedia.org/ontology/genre", "surface form": "kind"}]}, {"id": "2466", "question": [{"language": "en", "string": "How many different pole drivers are there, of the GPs when Renault was the first team?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/firstTeam> <http://dbpedia.org/resource/Renault_in_Formula_One> . ?x <http://dbpedia.org/ontology/poleDriver> ?uri . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/FormulaOneRacer>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "112"}}, "entities": [{"URI": "http://dbpedia.org/resource/Renault", "surface form": "GPs when Renault"}], "relations": [{"URI": "http://dbpedia.org/ontology/poleDriver", "surface form": "pole drivers"}, {"URI": "http://dbpedia.org/ontology/show", "surface form": "there,"}, {"URI": "http://dbpedia.org/ontology/team", "surface form": "team"}]}, {"id": "2467", "question": [{"language": "en", "string": "Name the person whose child is Irne Joliot-Curie?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/children> <http://dbpedia.org/resource/Ir\u00e8ne_Joliot-Curie> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Person>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Marie_Curie"}}, "entities": [{"URI": "http://dbpedia.org/resource/Ir\u00e8ne_Joliot-Curie", "surface form": "Irne Joliot-Curie"}], "relations": [{"URI": "http://dbpedia.org/property/children", "surface form": "child"}, {"URI": "http://dbpedia.org/ontology/Person", "surface form": "person"}]}, {"id": "2468", "question": [{"language": "en", "string": "How many destinations are covered by the airlines which also serves Europe ?"}], "query": {"sparql": " SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/destinations> <http://dbpedia.org/resource/Europe> . ?x <http://dbpedia.org/property/destinations> ?uri }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "24"}}, "entities": [{"URI": "http://dbpedia.org/resource/Destinations", "surface form": "destinations"}, {"URI": "http://dbpedia.org/resource/Europe", "surface form": "Europe"}], "relations": [{"URI": "http://dbpedia.org/property/cover", "surface form": "covered"}, {"URI": "http://dbpedia.org/ontology/icaoAirlineCode", "surface form": "airlines"}, {"URI": "http://dbpedia.org/ontology/order", "surface form": "serves"}]}, {"id": "2469", "question": [{"language": "en", "string": "Name few companies where don berlin and michael sears have worked together?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Don_R._Berlin> <http://dbpedia.org/ontology/employer> ?uri. <http://dbpedia.org/resource/Michael_M._Sears> <http://dbpedia.org/ontology/employer> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/McDonnell_Aircraft_Corporation"}}, "entities": [{"URI": "http://dbpedia.org/resource/Companies_listed_on_the_New_York_Stock_Exchange_(J)", "surface form": "companies"}, {"URI": "http://dbpedia.org/resource/Michael_M._Sears", "surface form": "michael sears"}], "relations": [{"URI": "http://dbpedia.org/property/name", "surface form": "name"}, {"URI": "http://dbpedia.org/ontology/head", "surface form": "berlin"}, {"URI": "http://dbpedia.org/ontology/operator", "surface form": "worked"}]}, {"id": "2470", "question": [{"language": "en", "string": "How many things belong to phylum of Chordate?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE {?uri <http://dbpedia.org/ontology/phylum> <http://dbpedia.org/resource/Chordate> . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "3602"}}, "entities": [{"URI": "http://dbpedia.org/resource/Chordate", "surface form": "Chordate"}], "relations": [{"URI": "http://dbpedia.org/ontology/date", "surface form": "belong"}, {"URI": "http://dbpedia.org/ontology/phylum", "surface form": "phylum"}]}, {"id": "2471", "question": [{"language": "en", "string": "People from how many political parties exist in Maharashtra?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/placeOfBirth> <http://dbpedia.org/resource/Maharashtra> . ?x <http://dbpedia.org/ontology/party> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/Maharashtra", "surface form": "Maharashtra"}], "relations": [{"URI": "http://dbpedia.org/ontology/party", "surface form": "political parties"}, {"URI": "http://dbpedia.org/property/last", "surface form": "exist"}]}, {"id": "2472", "question": [{"language": "en", "string": "Who are the children of Abigail Adams?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Abigail_Adams> <http://dbpedia.org/property/children> ?uri } "}, "answers": {"uri": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "5"}}, "entities": [{"URI": "http://dbpedia.org/resource/Abigail_Adams", "surface form": "Abigail Adams"}], "relations": [{"URI": "http://dbpedia.org/property/children", "surface form": "children"}]}, {"id": "2473", "question": [{"language": "en", "string": "what are some common games played at both Fr Agnel Multipurpose School and Vishwajyot High School?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Fr._Agnel_Multipurpose_School_and_Junior_College> <http://dbpedia.org/ontology/sport> ?uri. <http://dbpedia.org/resource/Vishwajyot_High_School> <http://dbpedia.org/ontology/sport> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Association_football"}}, "entities": [{"URI": "http://dbpedia.org/resource/Fr._Agnel_Multipurpose_School_and_Junior_College", "surface form": "Fr Agnel Multipurpose School"}, {"URI": "http://dbpedia.org/resource/Vishwajyot_High_School", "surface form": "Vishwajyot High School"}], "relations": [{"URI": "http://dbpedia.org/ontology/sport", "surface form": "common games"}, {"URI": "http://dbpedia.org/ontology/coach", "surface form": "played"}]}, {"id": "2474", "question": [{"language": "en", "string": "Who have done their PhDs under a National Medal of Science winner?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/prizes> <http://dbpedia.org/resource/National_Medal_of_Science> . ?uri <http://dbpedia.org/property/doctoralAdvisor> ?x . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Emma_Previato"}}, "entities": [{"URI": "http://dbpedia.org/resource/National_Medal_of_Science", "surface form": "PhDs under a National Medal of Science winner"}], "relations": [{"URI": "http://dbpedia.org/property/prizes", "surface form": "winner"}, {"URI": "http://dbpedia.org/property/doctoralAdvisor", "surface form": "PhDs under"}]}, {"id": "2475", "question": [{"language": "en", "string": "How many people are there who have relationship with Kennedy family?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE {?uri <http://dbpedia.org/ontology/relation> <http://dbpedia.org/resource/Kennedy_family> . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "21"}}, "entities": [{"URI": "http://dbpedia.org/resource/Kennedy_family", "surface form": "Kennedy family"}], "relations": [{"URI": "http://dbpedia.org/ontology/relation", "surface form": "relationship"}]}, {"id": "2476", "question": [{"language": "en", "string": "What is the total number of fictional characters whose created by Greg Daniels and series is The Office (U.S. TV series)?"}], "query": {"sparql": " SELECT DISTINCT COUNT(?uri) WHERE {?uri <http://dbpedia.org/ontology/creator> <http://dbpedia.org/resource/Greg_Daniels> . ?uri <http://dbpedia.org/ontology/series> <http://dbpedia.org/resource/The_Office_(U.S._TV_series)> } "}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/Fiction", "surface form": "fictional characters"}, {"URI": "http://dbpedia.org/resource/Greg_Daniels", "surface form": "Greg Daniels"}, {"URI": "http://dbpedia.org/resource/United_States", "surface form": "(US"}, {"URI": "http://dbpedia.org/resource/The_Office_(UK_TV_series)", "surface form": "The Office TV series)"}, {"URI": "http://dbpedia.org/resource/Tv_test_pattern", "surface form": "TV"}, {"URI": "http://dbpedia.org/resource/The_Office_(U.S._TV_series)", "surface form": "The Office (US series)"}], "relations": [{"URI": "http://dbpedia.org/ontology/populationTotal", "surface form": "total"}, {"URI": "http://dbpedia.org/ontology/author", "surface form": "created"}, {"URI": "http://dbpedia.org/ontology/series", "surface form": "series"}]}, {"id": "2477", "question": [{"language": "en", "string": "Who were the opponents of employees of Henry Howard, the Northampton Earl?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/employer> <http://dbpedia.org/resource/Henry_Howard,_1st_Earl_of_Northampton> . ?x <http://dbpedia.org/ontology/opponent> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Francis_Bacon"}}, "entities": [{"URI": "http://dbpedia.org/resource/Henry_Howard,_1st_Earl_of_Northampton", "surface form": "Henry Howard, the Northampton Earl"}], "relations": [{"URI": "http://dbpedia.org/ontology/employer", "surface form": "employees"}, {"URI": "http://dbpedia.org/ontology/opponent", "surface form": "opponents"}]}, {"id": "2478", "question": [{"language": "en", "string": "What newspapers's owners is Schibsted"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/owners> <http://dbpedia.org/resource/Schibsted> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Newspaper>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Verdens_Gang"}}, "entities": [{"URI": "http://dbpedia.org/resource/Schibsted", "surface form": "Schibsted"}], "relations": [{"URI": "http://dbpedia.org/property/owners", "surface form": "owners"}, {"URI": "http://dbpedia.org/ontology/Newspaper", "surface form": "newspapers's"}]}, {"id": "2479", "question": [{"language": "en", "string": "What islands are there on the Greater Antilles archipelago?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/archipelago> <http://dbpedia.org/resource/Greater_Antilles> . ?x <http://dbpedia.org/property/name> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Island>}"}, "answers": {"uri": {"type": "literal", "xml:lang": "en", "value": "Jamaica"}}, "entities": [{"URI": "http://dbpedia.org/resource/Greater_Antilles", "surface form": "Greater Antilles archipelago"}], "relations": [{"URI": "http://dbpedia.org/ontology/numberOfIslands", "surface form": "islands"}]}, {"id": "2480", "question": [{"language": "en", "string": "Name the military units whose command structure's headquarters is The Pentagon?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/headquarters> <http://dbpedia.org/resource/The_Pentagon> . ?uri <http://dbpedia.org/ontology/commandStructure> ?x . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/MilitaryUnit>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/HMX-1"}}, "entities": [{"URI": "http://dbpedia.org/resource/The_Pentagon", "surface form": "The Pentagon"}], "relations": [{"URI": "http://dbpedia.org/property/name", "surface form": "name"}, {"URI": "http://dbpedia.org/ontology/militaryBranch", "surface form": "military units"}, {"URI": "http://dbpedia.org/ontology/commandStructure", "surface form": "command structure"}, {"URI": "http://dbpedia.org/property/headquarters", "surface form": " headquarters"}]}, {"id": "2481", "question": [{"language": "en", "string": "Which bands are associated to David Paton?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/David_Paton> <http://dbpedia.org/ontology/associatedBand> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Elton_John"}}, "entities": [{"URI": "http://dbpedia.org/resource/David_Paton", "surface form": "David Paton"}], "relations": [{"URI": "http://dbpedia.org/ontology/staff", "surface form": "bands"}, {"URI": "http://dbpedia.org/ontology/associatedBand", "surface form": "associated"}]}, {"id": "2482", "question": [{"language": "en", "string": "In how many teams have people previously played who play as defencemen?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/position> <http://dbpedia.org/resource/Defenceman> . ?x <http://dbpedia.org/ontology/formerTeam> ?uri . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/SportsTeam>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "11866"}}, "entities": [{"URI": "http://dbpedia.org/resource/Defenceman", "surface form": "defencemen"}], "relations": [{"URI": "http://dbpedia.org/ontology/numberOfTeams", "surface form": "teams"}, {"URI": "http://dbpedia.org/ontology/portrayer", "surface form": "played"}, {"URI": "http://dbpedia.org/ontology/starring", "surface form": "play"}]}, {"id": "2483", "question": [{"language": "en", "string": "What is the Team Name of St. Viator High School ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/St._Viator_High_School> <http://dbpedia.org/property/teamName> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lions"}}, "entities": [{"URI": "http://dbpedia.org/resource/St._Viator_High_School", "surface form": "Team Name of St Viator High School"}], "relations": []}, {"id": "2484", "question": [{"language": "en", "string": "Give me the count of tenants of the stadia whose one of the tenants is Toronto Furies?"}], "query": {"sparql": " SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/tenants> <http://dbpedia.org/resource/Toronto_Furies> . ?x <http://dbpedia.org/property/tenants> ?uri }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "11"}}, "entities": [{"URI": "http://dbpedia.org/resource/Toronto_Furies", "surface form": "Toronto Furies"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": "count"}, {"URI": "http://dbpedia.org/property/tenants", "surface form": "tenants"}, {"URI": "http://dbpedia.org/property/studio", "surface form": "stadia"}, {"URI": "http://dbpedia.org/property/tenants", "surface form": "tenants"}]}, {"id": "2485", "question": [{"language": "en", "string": "Who developed the programming languages designed by Rob Pike?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/designer> <http://dbpedia.org/resource/Rob_Pike> . ?x <http://dbpedia.org/ontology/developer> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/ProgrammingLanguage>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bell_Labs"}}, "entities": [{"URI": "http://dbpedia.org/resource/Rob_Pike", "surface form": "Rob Pike"}], "relations": [{"URI": "http://dbpedia.org/ontology/developer", "surface form": "developed"}, {"URI": "http://dbpedia.org/ontology/programmingLanguage", "surface form": "programming languages"}, {"URI": "http://dbpedia.org/property/designer", "surface form": "designed"}]}, {"id": "2486", "question": [{"language": "en", "string": "Which races has the horse bred by Jacques Van't Hart participated in?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/breeder> <http://dbpedia.org/resource/Jacques_Van't_Hart> . ?x <http://dbpedia.org/property/race> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Horse>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/November_Novices'_Chase"}}, "entities": [{"URI": "http://dbpedia.org/resource/Jacques_Van't_Hart", "surface form": "Jacques Van't Hart"}], "relations": [{"URI": "http://dbpedia.org/ontology/races", "surface form": "races"}, {"URI": "http://dbpedia.org/ontology/residence", "surface form": "horse"}, {"URI": "http://dbpedia.org/ontology/genre", "surface form": "bred"}]}, {"id": "2487", "question": [{"language": "en", "string": "What are all the countires where food related to tuna salad is consumed ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/related> <http://dbpedia.org/resource/Tuna_salad> . ?x <http://dbpedia.org/property/country> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/North_America"}}, "entities": [{"URI": "http://dbpedia.org/resource/Couti\u00e8res", "surface form": "countires"}], "relations": [{"URI": "http://dbpedia.org/ontology/supplies", "surface form": "food"}, {"URI": "http://dbpedia.org/ontology/related", "surface form": "related"}, {"URI": "http://dbpedia.org/ontology/day", "surface form": "tuna salad"}, {"URI": "http://dbpedia.org/ontology/patron", "surface form": "consumed"}]}, {"id": "2488", "question": [{"language": "en", "string": "What is the layout of the automobiles whose designer company is Olivier Boulay?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/designCompany> <http://dbpedia.org/resource/Olivier_Boulay> . ?x <http://dbpedia.org/ontology/layout> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Automobile>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Front-engine,_rear-wheel-drive_layout"}}, "entities": [{"URI": "http://dbpedia.org/resource/Olivier_Boulay", "surface form": "Olivier Boulay"}], "relations": [{"URI": "http://dbpedia.org/ontology/layout", "surface form": "layout"}, {"URI": "http://dbpedia.org/ontology/vehicle", "surface form": "automobiles"}, {"URI": "http://dbpedia.org/ontology/designCompany", "surface form": "designer company"}]}, {"id": "2489", "question": [{"language": "en", "string": "which band was Roger waters in?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/formerBandMember> <http://dbpedia.org/resource/Roger_Waters> } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pink_Floyd"}}, "entities": [{"URI": "http://dbpedia.org/resource/Roger_Waters", "surface form": "Roger waters"}], "relations": [{"URI": "http://dbpedia.org/ontology/formerBandMember", "surface form": "band"}]}, {"id": "2490", "question": [{"language": "en", "string": "Who is the coach of England national under-21 football team ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/England_national_under-21_football_team> <http://dbpedia.org/property/coach> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Lee_Carsley"}}, "entities": [{"URI": "http://dbpedia.org/resource/England_national_under-21_football_team", "surface form": "England national under-21 football team"}], "relations": [{"URI": "http://dbpedia.org/ontology/coach", "surface form": "coach"}]}, {"id": "2491", "question": [{"language": "en", "string": "Which rivers end in Old Saybrook, Connecticut?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/mouthMountain> <http://dbpedia.org/resource/Old_Saybrook,_Connecticut> } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Connecticut_River"}}, "entities": [{"URI": "http://dbpedia.org/resource/Old_Saybrook,_Connecticut", "surface form": "Old Saybrook, Connecticut"}], "relations": [{"URI": "http://dbpedia.org/ontology/mouthMountain", "surface form": "in"}]}, {"id": "2492", "question": [{"language": "en", "string": "What does the bridge go over, which is in Katima Mulilo?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/locatedInArea> <http://dbpedia.org/resource/Katima_Mulilo> . ?x <http://dbpedia.org/property/crosses> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Bridge>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Zambezi_River"}}, "entities": [{"URI": "http://dbpedia.org/resource/Katima_Mulilo", "surface form": "Katima Mulilo"}], "relations": [{"URI": "http://dbpedia.org/ontology/abstract", "surface form": "bridge"}, {"URI": "http://dbpedia.org/ontology/narrator", "surface form": "over,"}]}, {"id": "2493", "question": [{"language": "en", "string": "What are the baseball players who played for San Francisco Giants?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/team> <http://dbpedia.org/resource/San_Francisco_Giants> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/BaseballPlayer>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alyssa_Nakken"}}, "entities": [{"URI": "http://dbpedia.org/resource/List_of_Japanese_baseball_players", "surface form": "baseball players"}, {"URI": "http://dbpedia.org/resource/San_Francisco_Giants", "surface form": "San Francisco Giants"}], "relations": [{"URI": "http://dbpedia.org/ontology/team", "surface form": "played for"}, {"URI": "http://dbpedia.org/ontology/BaseballPlayer", "surface form": "baseball player"}]}, {"id": "2494", "question": [{"language": "en", "string": "How many airlines have a hub at an airport run by LA World Airports?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/operator> <http://dbpedia.org/resource/Los_Angeles_World_Airports> . ?uri <http://dbpedia.org/ontology/hubAirport> ?x . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Airline>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "25"}}, "entities": [{"URI": "http://dbpedia.org/resource/Los_Angeles_World_Airports", "surface form": "LA World Airports"}], "relations": [{"URI": "http://dbpedia.org/ontology/icaoAirlineCode", "surface form": "airlines"}, {"URI": "http://dbpedia.org/property/hub", "surface form": "hub"}, {"URI": "http://dbpedia.org/ontology/targetAirport", "surface form": "airport"}, {"URI": "http://dbpedia.org/ontology/runwayLength", "surface form": "run"}]}, {"id": "2495", "question": [{"language": "en", "string": "Who is the person whose parent is Ptolemy XII Auletes?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/parent> <http://dbpedia.org/resource/Ptolemy_XII_Auletes> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Person>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Arsinoe_IV"}}, "entities": [{"URI": "http://dbpedia.org/resource/Ptolemy_XII_Auletes", "surface form": "Ptolemy XII Auletes"}], "relations": [{"URI": "http://dbpedia.org/ontology/parent", "surface form": "parent"}, {"URI": "http://dbpedia.org/ontology/Person", "surface form": "person"}]}, {"id": "2496", "question": [{"language": "en", "string": "What are the schools whose city is Reading, Berkshire?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/city> <http://dbpedia.org/resource/Reading,_Berkshire> } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Denefield_School"}}, "entities": [{"URI": "http://dbpedia.org/resource/Reading,_Berkshire", "surface form": "Reading, Berkshire"}], "relations": [{"URI": "http://dbpedia.org/ontology/city", "surface form": "city"}]}, {"id": "2497", "question": [{"language": "en", "string": "Find the total number of tenants of the stadium whose tenants was Toronto Marlies?"}], "query": {"sparql": " SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/tenants> <http://dbpedia.org/resource/Toronto_Marlies> . ?x <http://dbpedia.org/property/tenants> ?uri }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "11"}}, "entities": [{"URI": "http://dbpedia.org/resource/Toronto_Marlies", "surface form": "Toronto Marlies"}], "relations": [{"URI": "http://dbpedia.org/property/tenants", "surface form": "tenants"}, {"URI": "http://dbpedia.org/property/tenants", "surface form": "tenants"}]}, {"id": "2498", "question": [{"language": "en", "string": "Whose relatives are Uncle Henry (Oz) and Aunt Em?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/relative> <http://dbpedia.org/resource/Uncle_Henry_(Oz)> . ?uri <http://dbpedia.org/ontology/relative> <http://dbpedia.org/resource/Aunt_Em> . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dorothy_Gale"}}, "entities": [{"URI": "http://dbpedia.org/resource/Uncle_Henry_(Oz)", "surface form": "Uncle Henry (Oz)"}, {"URI": "http://dbpedia.org/resource/Aunt_Em", "surface form": "Aunt Em"}], "relations": [{"URI": "http://dbpedia.org/ontology/relative", "surface form": "relatives"}, {"URI": "http://dbpedia.org/ontology/relative", "surface form": "relatives"}]}, {"id": "2499", "question": [{"language": "en", "string": "What genres of games are available on the Commodore 64?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/computingPlatform> <http://dbpedia.org/resource/Commodore_64> . ?x <http://dbpedia.org/property/genre> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/VideoGame>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Scrolling_shooter"}}, "entities": [{"URI": "http://dbpedia.org/resource/Commodore_64", "surface form": "Commodore 64"}], "relations": [{"URI": "http://dbpedia.org/ontology/type", "surface form": "genres"}, {"URI": "http://dbpedia.org/ontology/games", "surface form": "games"}]}, {"id": "2500", "question": [{"language": "en", "string": "Who gave the voice for Allen Walker ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Allen_Walker> <http://dbpedia.org/ontology/voice> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ayumu_Murase"}}, "entities": [{"URI": "http://dbpedia.org/resource/Allen_Walker", "surface form": "Allen Walker"}], "relations": [{"URI": "http://dbpedia.org/ontology/voice", "surface form": "voice"}]}, {"id": "2501", "question": [{"language": "en", "string": "Which companies have Kumho Asiana Group as their parent company?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/parentCompany> <http://dbpedia.org/resource/Kumho_Asiana_Group> } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Asiana_Airlines"}}, "entities": [{"URI": "http://dbpedia.org/resource/Companies_listed_on_the_New_York_Stock_Exchange_(J)", "surface form": "companies"}, {"URI": "http://dbpedia.org/resource/Kumho_Asiana_Group", "surface form": "Kumho Asiana Group"}], "relations": [{"URI": "http://dbpedia.org/ontology/parentCompany", "surface form": "parent company"}]}, {"id": "2502", "question": [{"language": "en", "string": "How many buildings are located in Toronto ?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE {?uri <http://dbpedia.org/property/location> <http://dbpedia.org/resource/Toronto> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Building>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "125"}}, "entities": [{"URI": "http://dbpedia.org/resource/Toronto", "surface form": "Toronto"}], "relations": [{"URI": "http://dbpedia.org/property/location", "surface form": "located"}]}, {"id": "2503", "question": [{"language": "en", "string": "How many people have been the head coach for Middlesbrough FC?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/club> <http://dbpedia.org/resource/Middlesbrough_F.C.> . ?x <http://dbpedia.org/ontology/manager> ?uri . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Person>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "44"}}, "entities": [{"URI": "http://dbpedia.org/resource/Middlesbrough_F.C.", "surface form": "Middlesbrough FC"}], "relations": [{"URI": "http://dbpedia.org/ontology/ground", "surface form": "head coach"}]}, {"id": "2504", "question": [{"language": "en", "string": "Who is the office holder whose resting place is Monticello?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/restingPlace> <http://dbpedia.org/resource/Monticello> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/OfficeHolder>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Thomas_Jefferson"}}, "entities": [{"URI": "http://dbpedia.org/resource/Monticello", "surface form": "Monticello"}], "relations": [{"URI": "http://dbpedia.org/ontology/restingPlace", "surface form": "resting place"}, {"URI": "http://dbpedia.org/ontology/OfficeHolder", "surface form": "office holder"}]}, {"id": "2505", "question": [{"language": "en", "string": "How many producers have casted Michael Jackson?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/starring> <http://dbpedia.org/resource/Michael_Jackson> . ?x <http://dbpedia.org/property/producer> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "23"}}, "entities": [{"URI": "http://dbpedia.org/resource/Michael_Jackson", "surface form": "Michael Jackson"}], "relations": [{"URI": "http://dbpedia.org/property/starring", "surface form": "casted"}, {"URI": "http://dbpedia.org/property/producer", "surface form": "producers"}]}, {"id": "2506", "question": [{"language": "en", "string": "Who is married to a Miss Louisiana, USA?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/title> <http://dbpedia.org/resource/Miss_Louisiana_USA> . ?uri <http://dbpedia.org/property/spouse> ?x . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alejandro_G\u00f3mez_Monteverde"}}, "entities": [{"URI": "http://dbpedia.org/resource/Miss_Louisiana_USA", "surface form": ""}], "relations": [{"URI": "http://dbpedia.org/property/title", "surface form": "USA"}, {"URI": "http://dbpedia.org/property/spouse", "surface form": "married to"}]}, {"id": "2507", "question": [{"language": "en", "string": "What sports are played by school which owns Fr. Agnel Stadium ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Fr._Agnel_Stadium> <http://dbpedia.org/property/owner> ?x . ?x <http://dbpedia.org/ontology/sport> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/School>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Association_football"}}, "entities": [{"URI": "http://dbpedia.org/resource/Fr._Agnel_Stadium", "surface form": "Fr. Agnel Stadium"}], "relations": [{"URI": "http://dbpedia.org/ontology/sport", "surface form": "sports"}, {"URI": "http://dbpedia.org/ontology/coach", "surface form": "played"}, {"URI": "http://dbpedia.org/ontology/school", "surface form": "school"}, {"URI": "http://dbpedia.org/ontology/languageFamily", "surface form": "owns"}]}, {"id": "2508", "question": [{"language": "en", "string": "What is the major shrine of Jacques-Dsir Laval ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Jacques-D\u00e9sir\u00e9_Laval> <http://dbpedia.org/ontology/majorShrine> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sainte-Croix,_Mauritius"}}, "entities": [{"URI": "http://dbpedia.org/resource/Jacques-D\u00e9sir\u00e9_Laval", "surface form": "Jacques-Dsir Laval"}], "relations": [{"URI": "http://dbpedia.org/ontology/majorShrine", "surface form": "major shrine"}]}, {"id": "2509", "question": [{"language": "en", "string": "Who is the Pole driver of 1997 Canadian Grand Prix ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/1997_Canadian_Grand_Prix> <http://dbpedia.org/property/poleDriver> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Michael_Schumacher"}}, "entities": [{"URI": "http://dbpedia.org/resource/Poland", "surface form": "Pole driver of 1997 Canadian Grand Prix"}, {"URI": "http://dbpedia.org/resource/1997_Canadian_Grand_Prix", "surface form": "Pole driver of 1997 Canadian Grand Prix"}], "relations": [{"URI": "http://dbpedia.org/property/poleDriver", "surface form": "Pole driver"}]}, {"id": "2510", "question": [{"language": "en", "string": "Who is the president of United World College of Costa Rica ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/United_World_College_of_Costa_Rica> <http://dbpedia.org/ontology/president> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nelson_Mandela"}}, "entities": [{"URI": "http://dbpedia.org/resource/United_World_College_of_Costa_Rica", "surface form": "United World College of Costa Rica"}], "relations": [{"URI": "http://dbpedia.org/property/president", "surface form": "President"}]}, {"id": "2511", "question": [{"language": "en", "string": "Things going to the mediterranean sea also go where?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/destinations> <http://dbpedia.org/resource/Mediterranean_Sea> . ?x <http://dbpedia.org/ontology/destination> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/Mediterranean_Sea", "surface form": "mediterranean sea"}], "relations": [{"URI": "http://dbpedia.org/ontology/lake", "surface form": "mediterranean sea"}]}, {"id": "2512", "question": [{"language": "en", "string": "In how many different places are Brown haired models living?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/hairColor> <http://dbpedia.org/resource/Brown_hair> . ?x <http://dbpedia.org/ontology/residence> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "11"}}, "entities": [{"URI": "http://dbpedia.org/resource/Long-haired_rat", "surface form": "Brown haired models"}], "relations": [{"URI": "http://dbpedia.org/ontology/domain", "surface form": "places"}, {"URI": "http://dbpedia.org/ontology/person", "surface form": "living"}]}, {"id": "2513", "question": [{"language": "en", "string": "Mouse Morris' horses have raced in which races?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/trainer> <http://dbpedia.org/resource/Mouse_Morris> . ?x <http://dbpedia.org/property/race> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Horse>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Irish_Grand_National"}}, "entities": [{"URI": "http://dbpedia.org/resource/Mouse_Morris", "surface form": "Mouse morris"}], "relations": [{"URI": "http://dbpedia.org/ontology/raceHorse", "surface form": " horses"}, {"URI": "http://dbpedia.org/property/race", "surface form": "raced"}, {"URI": "http://dbpedia.org/ontology/races", "surface form": "races"}]}, {"id": "2514", "question": [{"language": "en", "string": "What are the television shows telecasted on the network which has headquarters at Atlanta?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/headquarters> <http://dbpedia.org/resource/Atlanta> . ?uri <http://dbpedia.org/property/network> ?x . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Beach_Patrol"}}, "entities": [{"URI": "http://dbpedia.org/resource/Atlanta", "surface form": "Atlanta"}], "relations": [{"URI": "http://dbpedia.org/ontology/televisionSeries", "surface form": "television shows"}, {"URI": "http://dbpedia.org/ontology/transmission", "surface form": "telecasted"}, {"URI": "http://dbpedia.org/ontology/network", "surface form": "network"}, {"URI": "http://dbpedia.org/ontology/headquarter", "surface form": "headquarters"}]}, {"id": "2515", "question": [{"language": "en", "string": "Name the award given in Norway and presented by Swedish Academy ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/presenter> <http://dbpedia.org/resource/Swedish_Academy> . ?uri <http://dbpedia.org/ontology/country> <http://dbpedia.org/resource/Norway> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Award>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Nobel_Prize"}}, "entities": [{"URI": "http://dbpedia.org/resource/Norway", "surface form": "Norway"}, {"URI": "http://dbpedia.org/resource/Sweden", "surface form": "Swedish Academy"}, {"URI": "http://dbpedia.org/resource/Swedish_Academy", "surface form": "Swedish Academy"}], "relations": [{"URI": "http://dbpedia.org/property/name", "surface form": "name"}, {"URI": "http://dbpedia.org/ontology/award", "surface form": "award"}, {"URI": "http://dbpedia.org/ontology/country", "surface form": ""}]}, {"id": "2516", "question": [{"language": "en", "string": "What are some shows by Comedy Central?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/network> <http://dbpedia.org/resource/Comedy_Central> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alternatino_with_Arturo_Castro"}}, "entities": [{"URI": "http://dbpedia.org/resource/Comedy_Central", "surface form": "Comedy Central"}], "relations": [{"URI": "http://dbpedia.org/ontology/place", "surface form": "shows"}]}, {"id": "2517", "question": [{"language": "en", "string": "Which movies' music is composed by people associated with the band Yes?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/associatedMusicalArtist> <http://dbpedia.org/resource/Yes_(band)> . ?uri <http://dbpedia.org/ontology/musicComposer> ?x . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Take_Me_Home_Tonight_(film)"}}, "entities": [{"URI": "http://dbpedia.org/resource/Yes_(band)", "surface form": "band Yes"}], "relations": [{"URI": "http://dbpedia.org/ontology/picture", "surface form": "movies"}, {"URI": "http://dbpedia.org/ontology/musicFusionGenre", "surface form": " music"}, {"URI": "http://dbpedia.org/ontology/musicComposer", "surface form": "composed"}, {"URI": "http://dbpedia.org/ontology/associatedBand", "surface form": "associated"}]}, {"id": "2518", "question": [{"language": "en", "string": "What came before PlayStation 4 and uses PlayStation 3 system software as OS?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/successor> <http://dbpedia.org/resource/PlayStation_4> . ?uri <http://dbpedia.org/property/os> <http://dbpedia.org/resource/PlayStation_3_system_software> . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/PlayStation_3"}}, "entities": [{"URI": "http://dbpedia.org/resource/PlayStation_4", "surface form": "PlayStation 4"}, {"URI": "http://dbpedia.org/resource/PlayStation_3", "surface form": "PlayStation 3"}, {"URI": "http://dbpedia.org/resource/Software", "surface form": "software"}, {"URI": "http://dbpedia.org/resource/OS", "surface form": "OS"}], "relations": []}, {"id": "2519", "question": [{"language": "en", "string": "How many religion's commanders have served in the Royal Thai Army?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { <http://dbpedia.org/resource/Royal_Thai_Army> <http://dbpedia.org/property/notableCommanders> ?x . ?x <http://dbpedia.org/ontology/religion> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/Royal_Thai_Army", "surface form": "Royal Thai Army"}], "relations": [{"URI": "http://dbpedia.org/property/notableCommanders", "surface form": "commanders"}, {"URI": "http://dbpedia.org/ontology/religion", "surface form": "religion"}]}, {"id": "2520", "question": [{"language": "en", "string": "Who are the people which were the influencer of the person, who influenced Costanzo Preve ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Costanzo_Preve> <http://dbpedia.org/ontology/influencedBy> ?x . ?x <http://dbpedia.org/ontology/influencedBy> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Person>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fran\u00e7ois_Hemsterhuis"}}, "entities": [{"URI": "http://dbpedia.org/resource/Costanzo_Preve", "surface form": "Costanzo Preve"}], "relations": [{"URI": "http://dbpedia.org/ontology/influencedBy", "surface form": "influncer"}, {"URI": "http://dbpedia.org/ontology/influencedBy", "surface form": "influnced"}]}, {"id": "2521", "question": [{"language": "en", "string": "What is manufactured by Asus and Sony togather?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/manufacturer> <http://dbpedia.org/resource/Asus> . ?uri <http://dbpedia.org/ontology/manufacturer> <http://dbpedia.org/resource/Sony> . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/PlayStation_3"}}, "entities": [{"URI": "http://dbpedia.org/resource/Asus", "surface form": "Asus"}, {"URI": "http://dbpedia.org/resource/Sony", "surface form": "Sony togather"}], "relations": [{"URI": "http://dbpedia.org/ontology/manufacturer", "surface form": "manufactured"}]}, {"id": "2522", "question": [{"language": "en", "string": "Count all the games whose distributors are located in America"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/country> <http://dbpedia.org/resource/United_States> . ?uri <http://dbpedia.org/property/distributor> ?x . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "1110"}}, "entities": [{"URI": "http://dbpedia.org/resource/United_States", "surface form": "America"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": "count"}, {"URI": "http://dbpedia.org/ontology/games", "surface form": "games"}, {"URI": "http://dbpedia.org/ontology/distributor", "surface form": "distributors"}, {"URI": "http://dbpedia.org/ontology/position", "surface form": "located"}]}, {"id": "2523", "question": [{"language": "en", "string": "What work has been directed by Orson Welles and distributed by RKO Pictures?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/director> <http://dbpedia.org/resource/Orson_Welles> . ?uri <http://dbpedia.org/property/distributor> <http://dbpedia.org/resource/RKO_Pictures> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Work>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Stranger_(1946_film)"}}, "entities": [{"URI": "http://dbpedia.org/resource/Orson_Welles", "surface form": "Orson Welles"}, {"URI": "http://dbpedia.org/resource/RKO_Pictures", "surface form": "RKO Pictures"}], "relations": [{"URI": "http://dbpedia.org/property/book", "surface form": "work"}, {"URI": "http://dbpedia.org/ontology/president", "surface form": "directed"}, {"URI": "http://dbpedia.org/ontology/distributor", "surface form": "distributed"}]}, {"id": "2524", "question": [{"language": "en", "string": "What is the alma mater of Andrew W. Lewis ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Andrew_W._Lewis> <http://dbpedia.org/ontology/almaMater> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dartmouth_College"}}, "entities": [{"URI": "http://dbpedia.org/resource/W", "surface form": "W"}, {"URI": "http://dbpedia.org/resource/Andrew_W._Lewis", "surface form": "Andrew Lewis"}], "relations": [{"URI": "http://dbpedia.org/ontology/almaMater", "surface form": "alma mater"}]}, {"id": "2525", "question": [{"language": "en", "string": "Who is the spouse of Daniel Gibson? "}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/spouse> <http://dbpedia.org/resource/Daniel_Gibson> . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Keyshia_Cole"}}, "entities": [{"URI": "http://dbpedia.org/resource/Daniel_Gibson", "surface form": "Daniel Gibson"}], "relations": [{"URI": "http://dbpedia.org/ontology/spouse", "surface form": "spouse"}]}, {"id": "2526", "question": [{"language": "en", "string": "Name the nearest city to the historic place which has Englewood, Colorado as one of them ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/nearestCity> <http://dbpedia.org/resource/Englewood,_Colorado> . ?x <http://dbpedia.org/ontology/nearestCity> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/HistoricPlace>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Arapahoe_County,_Colorado"}}, "entities": [{"URI": "http://dbpedia.org/resource/Englewood,_Colorado", "surface form": "Englewood, Colorado"}], "relations": [{"URI": "http://dbpedia.org/property/name", "surface form": "name"}, {"URI": "http://dbpedia.org/ontology/city", "surface form": "nearest city"}, {"URI": "http://dbpedia.org/ontology/district", "surface form": "historic place"}]}, {"id": "2527", "question": [{"language": "en", "string": "What are the movies directed by Joel Schumacher?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/director> <http://dbpedia.org/resource/Joel_Schumacher> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Veronica_Guerin_(film)"}}, "entities": [{"URI": "http://dbpedia.org/resource/Joel_Schumacher", "surface form": "Joel Schumacher"}], "relations": [{"URI": "http://dbpedia.org/ontology/director", "surface form": "directed by"}, {"URI": "http://dbpedia.org/ontology/Film", "surface form": "movie"}]}, {"id": "2528", "question": [{"language": "en", "string": "To which political party do the children of Sonia Gandhi belong?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Sonia_Gandhi> <http://dbpedia.org/property/children> ?x . ?x <http://dbpedia.org/ontology/party> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Indian_National_Congress"}}, "entities": [{"URI": "http://dbpedia.org/resource/Sonia_Gandhi", "surface form": "Sonia Gandhi"}], "relations": [{"URI": "http://dbpedia.org/ontology/party", "surface form": "political party"}, {"URI": "http://dbpedia.org/property/children", "surface form": "children"}, {"URI": "http://dbpedia.org/ontology/date", "surface form": "belong"}]}, {"id": "2529", "question": [{"language": "en", "string": "What is the draft team of Antoine Bibeau ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Antoine_Bibeau> <http://dbpedia.org/property/draftTeam> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Toronto_Maple_Leafs"}}, "entities": [{"URI": "http://dbpedia.org/resource/Antoine_Bibeau", "surface form": "Antoine Bibeau"}], "relations": [{"URI": "http://dbpedia.org/ontology/draftTeam", "surface form": "draft team"}]}, {"id": "2530", "question": [{"language": "en", "string": "What are a few molluscas whose family is Buccinidae?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/family> <http://dbpedia.org/resource/Buccinidae> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Mollusca>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Aeneator_attenuatus"}}, "entities": [{"URI": "http://dbpedia.org/resource/Leucogyrophana_mollusca", "surface form": "Molluscas"}, {"URI": "http://dbpedia.org/resource/Buccinidae", "surface form": "Buccinidae"}], "relations": [{"URI": "http://dbpedia.org/ontology/family", "surface form": "family"}, {"URI": "http://dbpedia.org/ontology/Mollusca", "surface form": "mollusca"}]}, {"id": "2531", "question": [{"language": "en", "string": "How many have family as Ape and order (taxonomy) is Primate ?"}], "query": {"sparql": " SELECT DISTINCT COUNT(?uri) WHERE {?uri <http://dbpedia.org/ontology/family> <http://dbpedia.org/resource/Ape> . ?uri <http://dbpedia.org/ontology/order> <http://dbpedia.org/resource/Primate> } "}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/Apeleptera", "surface form": "Ape"}, {"URI": "http://dbpedia.org/resource/Primate", "surface form": "Primate"}], "relations": [{"URI": "http://dbpedia.org/ontology/family", "surface form": "family"}, {"URI": "http://dbpedia.org/ontology/order", "surface form": "(taxonomy)"}]}, {"id": "2532", "question": [{"language": "en", "string": "From which team did Marv McFadden played ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Marv_McFadden> <http://dbpedia.org/property/pastteams> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pittsburgh_Steelers"}}, "entities": [{"URI": "http://dbpedia.org/resource/Marv_McFadden", "surface form": "Marv McFadden"}], "relations": [{"URI": "http://dbpedia.org/property/pastteams", "surface form": "team"}]}, {"id": "2533", "question": [{"language": "en", "string": "Who are the trainersof Candice Michelle?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Candice_Michelle> <http://dbpedia.org/ontology/trainer> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Arn_Anderson"}}, "entities": [{"URI": "http://dbpedia.org/resource/Candice_Michelle", "surface form": "Trainersof candice michelle"}], "relations": [{"URI": "http://dbpedia.org/ontology/trainer", "surface form": "trainer"}]}, {"id": "2534", "question": [{"language": "en", "string": "Which constructor's team won the 1967 Mexican Grand Prix ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/1967_Mexican_Grand_Prix> <http://dbpedia.org/property/firstTeam> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ford_Motor_Company"}}, "entities": [{"URI": "http://dbpedia.org/resource/1967_Mexican_Grand_Prix", "surface form": "1967 Mexican Grand Prix"}], "relations": [{"URI": "http://dbpedia.org/property/firstTeam", "surface form": "team"}]}, {"id": "2535", "question": [{"language": "en", "string": "Which person belongs to the board of Howard Hughes Medical Institute?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/board> <http://dbpedia.org/resource/Howard_Hughes_Medical_Institute> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Person>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Howard_Hughes"}}, "entities": [{"URI": "http://dbpedia.org/resource/Howard_Hughes_Medical_Institute", "surface form": "Howard Hughes Medical Institute"}], "relations": [{"URI": "http://dbpedia.org/property/type", "surface form": "person"}, {"URI": "http://dbpedia.org/property/date", "surface form": "belongs"}, {"URI": "http://dbpedia.org/ontology/board", "surface form": "board"}]}, {"id": "2536", "question": [{"language": "en", "string": "What is the title of Kakae ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Kakae> <http://dbpedia.org/property/title> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mo\u02bbi_of_Maui"}}, "entities": [{"URI": "http://dbpedia.org/resource/Kakae", "surface form": "Kakae"}], "relations": [{"URI": "http://dbpedia.org/ontology/title", "surface form": "title"}]}, {"id": "2537", "question": [{"language": "en", "string": "Which broadcast area of Mauritius Broadcasting Corporation is also the nationality of Michael Medor ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Mauritius_Broadcasting_Corporation> <http://dbpedia.org/property/broadcastArea> ?uri. <http://dbpedia.org/resource/Michael_Medor> <http://dbpedia.org/ontology/nationality> ?uri} "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mauritius"}}, "entities": [{"URI": "http://dbpedia.org/resource/Mauritius_Broadcasting_Corporation", "surface form": "Mauritius Broadcasting Corporation"}, {"URI": "http://dbpedia.org/resource/Michael_Medor", "surface form": "Michael Medor"}], "relations": [{"URI": "http://dbpedia.org/ontology/broadcastArea", "surface form": "broadcast"}, {"URI": "http://dbpedia.org/ontology/area", "surface form": "area"}, {"URI": "http://dbpedia.org/ontology/nationality", "surface form": "nationality"}]}, {"id": "2538", "question": [{"language": "en", "string": "What is the county of the road whose route end is Pahang ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/routeEnd> <http://dbpedia.org/resource/Pahang> . ?x <http://dbpedia.org/ontology/county> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Road>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Malaysia"}}, "entities": [{"URI": "http://dbpedia.org/resource/Pahang", "surface form": "Pahang"}], "relations": [{"URI": "http://dbpedia.org/ontology/county", "surface form": "county"}, {"URI": "http://dbpedia.org/ontology/part", "surface form": "road"}, {"URI": "http://dbpedia.org/ontology/routeEnd", "surface form": "route end"}]}, {"id": "2539", "question": [{"language": "en", "string": "Who wrote Heroman?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Heroman> <http://dbpedia.org/property/author> ?uri } "}, "answers": {"uri": {"type": "literal", "xml:lang": "en", "value": "Stan Lee"}}, "entities": [{"URI": "http://dbpedia.org/resource/Heroman", "surface form": "Heroman"}], "relations": [{"URI": "http://dbpedia.org/ontology/author", "surface form": "wrote"}]}, {"id": "2540", "question": [{"language": "en", "string": "Where did the ultimate fighter: a champion will be crowned tonight and ultimate fighter: team rousey vs team tate take place?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/The_Ultimate_Fighter:_A_Champion_Will_Be_Crowned> <http://dbpedia.org/property/city> ?uri. <http://dbpedia.org/resource/The_Ultimate_Fighter:_Team_Rousey_vs._Team_Tate> <http://dbpedia.org/property/city> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Las_Vegas_Valley"}}, "entities": [{"URI": "http://dbpedia.org/resource/Ronda_Rousey", "surface form": "ultimate fighter: team rousey"}], "relations": [{"URI": "http://dbpedia.org/ontology/height", "surface form": "ultimate fighter:"}, {"URI": "http://dbpedia.org/ontology/champion", "surface form": "champion"}, {"URI": "http://dbpedia.org/ontology/height", "surface form": "crowned"}, {"URI": "http://dbpedia.org/ontology/champion", "surface form": "tonight"}, {"URI": "http://dbpedia.org/ontology/band", "surface form": "team tate"}, {"URI": "http://dbpedia.org/ontology/place", "surface form": "place"}]}, {"id": "2541", "question": [{"language": "en", "string": "Which nation's engineers have graduated in Poland?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/education> <http://dbpedia.org/resource/Poland> . ?x <http://dbpedia.org/property/nationality> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Engineer>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ukraine"}}, "entities": [{"URI": "http://dbpedia.org/resource/Poland", "surface form": "Poland"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": "nation"}, {"URI": "http://dbpedia.org/ontology/architect", "surface form": " engineers"}, {"URI": "http://dbpedia.org/ontology/effectiveRadiatedPower", "surface form": "graduated"}]}, {"id": "2542", "question": [{"language": "en", "string": "Give me a count of movies whose music composer is Bernard Herrmann?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE {?uri <http://dbpedia.org/ontology/musicComposer> <http://dbpedia.org/resource/Bernard_Herrmann> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "55"}}, "entities": [{"URI": "http://dbpedia.org/resource/Bernard_Herrmann", "surface form": "Bernard Herrmann"}], "relations": [{"URI": "http://dbpedia.org/ontology/musicComposer", "surface form": "music composer"}, {"URI": "http://dbpedia.org/ontology/Film", "surface form": "movie"}]}, {"id": "2543", "question": [{"language": "en", "string": "List the destinations of Novair International Airways ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Novair_International_Airways> <http://dbpedia.org/property/destinations> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/North_America"}}, "entities": [{"URI": "http://dbpedia.org/resource/Destinations", "surface form": "destinations"}, {"URI": "http://dbpedia.org/resource/Novair_International_Airways", "surface form": "Novair International Airways"}], "relations": [{"URI": "http://dbpedia.org/property/destinations", "surface form": "destinations"}]}, {"id": "2544", "question": [{"language": "en", "string": "Into which water bodies does Lake Uniamsi outflow?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Lake_Uniam\u00e9si> <http://dbpedia.org/property/outflow> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Benue_River"}}, "entities": [{"URI": "http://dbpedia.org/resource/Lake_Uniam\u00e9si", "surface form": "Lake Uniamsi"}], "relations": [{"URI": "http://dbpedia.org/ontology/percentageOfAreaWater", "surface form": "water bodies"}, {"URI": "http://dbpedia.org/ontology/outflow", "surface form": "outflow"}]}, {"id": "2545", "question": [{"language": "en", "string": "Which river does Katima Mulilo Bridge cross?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Katima_Mulilo_Bridge> <http://dbpedia.org/property/crosses> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Zambezi_River"}}, "entities": [{"URI": "http://dbpedia.org/resource/Katima_Mulilo_Bridge", "surface form": "Katima Mulilo Bridge"}], "relations": [{"URI": "http://dbpedia.org/property/crosses", "surface form": "cross"}]}, {"id": "2546", "question": [{"language": "en", "string": "What is the debut team of Tom O'Malley ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Tom_O'Malley> <http://dbpedia.org/property/debutteam> ?uri } "}, "answers": {"uri": {"type": "literal", "xml:lang": "en", "value": "San Francisco Giants"}}, "entities": [{"URI": "http://dbpedia.org/resource/Tom_O'Malley", "surface form": "Tom O'Malley"}], "relations": [{"URI": "http://dbpedia.org/property/debutteam", "surface form": "debut team"}]}, {"id": "2547", "question": [{"language": "en", "string": "What is the political party to which Purnima Banerjee is a member of??"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Purnima_Banerjee> <http://dbpedia.org/ontology/party> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Indian_National_Congress"}}, "entities": [{"URI": "http://dbpedia.org/resource/Purnima_Banerjee", "surface form": "Purnima Banerjee"}], "relations": [{"URI": "http://dbpedia.org/ontology/party", "surface form": "political party"}, {"URI": "http://dbpedia.org/ontology/arm", "surface form": "member"}]}, {"id": "2548", "question": [{"language": "en", "string": "Jimmie Fisher and Winston Bryant were governors under which president?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Jimmie_Lou_Fisher> <http://dbpedia.org/property/governor> ?uri. <http://dbpedia.org/resource/Winston_Bryant> <http://dbpedia.org/property/governor> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Frank_D._White"}}, "entities": [{"URI": "http://dbpedia.org/resource/Jimmie_Lou_Fisher", "surface form": "Jimmie fisher"}, {"URI": "http://dbpedia.org/resource/Winston_Bryant", "surface form": "Winston Bryant"}], "relations": [{"URI": "http://dbpedia.org/property/governor", "surface form": "governors"}, {"URI": "http://dbpedia.org/ontology/president", "surface form": "president"}]}, {"id": "2549", "question": [{"language": "en", "string": "What is the headquarters of the public transit system which is the section of Red Ahead ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Red_Ahead> <http://dbpedia.org/ontology/isPartOf> ?x . ?x <http://dbpedia.org/property/headquarters> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/PublicTransitSystem>}"}, "answers": {"uri": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "567"}}, "entities": [{"URI": "http://dbpedia.org/resource/Red_Ahead", "surface form": "Red Ahead"}], "relations": [{"URI": "http://dbpedia.org/ontology/office", "surface form": "headquarters"}, {"URI": "http://dbpedia.org/ontology/country", "surface form": "public transit"}]}, {"id": "2550", "question": [{"language": "en", "string": "Who has written works found in the Gangan comics?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/magazine> <http://dbpedia.org/resource/Gangan_Comics> . ?x <http://dbpedia.org/property/author> ?uri . }"}, "answers": {"uri": {"type": "literal", "xml:lang": "en", "value": "Samako Natsu"}}, "entities": [{"URI": "http://dbpedia.org/resource/Gangan_Comics", "surface form": "Gangan comics"}], "relations": [{"URI": "http://dbpedia.org/property/magazine", "surface form": "found"}, {"URI": "http://dbpedia.org/property/author", "surface form": "found"}]}, {"id": "2551", "question": [{"language": "en", "string": "What is the device whose successor's CPU is by AMD?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/cpu> <http://dbpedia.org/resource/Advanced_Micro_Devices> . ?uri <http://dbpedia.org/ontology/successor> ?x . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Device>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dell_Dimension"}}, "entities": [{"URI": "http://dbpedia.org/resource/Advanced_Micro_Devices", "surface form": "AMD"}], "relations": [{"URI": "http://dbpedia.org/ontology/title", "surface form": "device"}, {"URI": "http://dbpedia.org/ontology/successor", "surface form": "successor"}]}, {"id": "2552", "question": [{"language": "en", "string": "What is the club of Perianne Jones ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Perianne_Jones> <http://dbpedia.org/property/club> ?uri } "}, "answers": {"uri": {"type": "literal", "xml:lang": "en", "value": "Nakkertok Ski Club"}}, "entities": [{"URI": "http://dbpedia.org/resource/Perianne_Jones", "surface form": "Perianne Jones"}], "relations": [{"URI": "http://dbpedia.org/ontology/club", "surface form": "club"}]}, {"id": "2553", "question": [{"language": "en", "string": "How many have order (taxonomy) as Bacillales and division as Firmicutes are there?"}], "query": {"sparql": " SELECT DISTINCT COUNT(?uri) WHERE {?uri <http://dbpedia.org/ontology/order> <http://dbpedia.org/resource/Bacillales> . ?uri <http://dbpedia.org/ontology/division> <http://dbpedia.org/resource/Firmicutes> } "}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/Bacillales", "surface form": "Bacillales"}, {"URI": "http://dbpedia.org/resource/Firmicutes", "surface form": "Firmicutes"}], "relations": [{"URI": "http://dbpedia.org/ontology/order", "surface form": "(taxonomy)"}, {"URI": "http://dbpedia.org/ontology/division", "surface form": "division"}]}, {"id": "2554", "question": [{"language": "en", "string": "What is the movie whose producer is Michael Deeley and directed by Ridley Scott?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/property/producer> <http://dbpedia.org/resource/Michael_Deeley> . ?uri <http://dbpedia.org/property/director> <http://dbpedia.org/resource/Ridley_Scott> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Blade_Runner"}}, "entities": [{"URI": "http://dbpedia.org/resource/Michael_Deeley", "surface form": "Michael Deeley"}, {"URI": "http://dbpedia.org/resource/Ridley_Scott", "surface form": "Ridley Scott"}], "relations": [{"URI": "http://dbpedia.org/ontology/picture", "surface form": "movie"}, {"URI": "http://dbpedia.org/ontology/producer", "surface form": "producer"}, {"URI": "http://dbpedia.org/ontology/president", "surface form": "directed"}]}, {"id": "2555", "question": [{"language": "en", "string": "Which manufacturer of Ford Y-block engine is the parent of Ford Air Transport Service ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Ford_Y-block_engine> <http://dbpedia.org/ontology/manufacturer> ?uri. <http://dbpedia.org/resource/Ford_Air_Transport_Service> <http://dbpedia.org/property/parent> ?uri} "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ford_Motor_Company"}}, "entities": [{"URI": "http://dbpedia.org/resource/Ford_Y-block_engine", "surface form": "Ford Y-block engine"}, {"URI": "http://dbpedia.org/resource/Ford_Air_Transport_Service", "surface form": "Ford Air Transport Service"}], "relations": [{"URI": "http://dbpedia.org/ontology/manufacturer", "surface form": "manufacturer"}, {"URI": "http://dbpedia.org/ontology/parent", "surface form": "parent"}]}, {"id": "2556", "question": [{"language": "en", "string": "Who are the opponents of graduates of the Middle Temple?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/education> <http://dbpedia.org/resource/Middle_Temple> . ?x <http://dbpedia.org/ontology/opponent> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Francis_Bacon"}}, "entities": [{"URI": "http://dbpedia.org/resource/Middle_Temple", "surface form": "Middle Temple"}], "relations": [{"URI": "http://dbpedia.org/property/education", "surface form": "graduates"}, {"URI": "http://dbpedia.org/ontology/opponent", "surface form": "opponent"}]}, {"id": "2557", "question": [{"language": "en", "string": "What are some important works of US citizens?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/nationality> <http://dbpedia.org/resource/United_States> . ?x <http://dbpedia.org/ontology/notableWork> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/A_Soldier's_Play"}}, "entities": [{"URI": "http://dbpedia.org/resource/United_States", "surface form": "US"}], "relations": [{"URI": "http://dbpedia.org/ontology/language", "surface form": "works"}, {"URI": "http://dbpedia.org/property/country", "surface form": "citizens"}]}, {"id": "2558", "question": [{"language": "en", "string": "Which sports are played typically in private schools?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/schooltype> <http://dbpedia.org/resource/Private_school> . ?x <http://dbpedia.org/ontology/sport> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Association_football"}}, "entities": [{"URI": "http://dbpedia.org/resource/Private_school", "surface form": "private school"}], "relations": [{"URI": "http://dbpedia.org/property/schooltype", "surface form": "schools"}, {"URI": "http://dbpedia.org/ontology/sport", "surface form": "sport"}]}, {"id": "2559", "question": [{"language": "en", "string": "How many shows is Russell Davies known for?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { <http://dbpedia.org/resource/Russell_T_Davies> <http://dbpedia.org/property/notableworks> ?uri . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/Russell_Davies", "surface form": "Russell Davies"}], "relations": [{"URI": "http://dbpedia.org/ontology/place", "surface form": "shows"}]}, {"id": "2560", "question": [{"language": "en", "string": "What is the casting of the movie directed by Justin Zackham ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/ontology/director> <http://dbpedia.org/resource/Justin_Zackham> . ?x <http://dbpedia.org/property/starring> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film>}"}, "answers": {"uri": {"type": "literal", "xml:lang": "en", "value": ""}}, "entities": [{"URI": "http://dbpedia.org/resource/Justin_Zackham", "surface form": "Justin Zackham"}], "relations": [{"URI": "http://dbpedia.org/ontology/position", "surface form": "casting"}, {"URI": "http://dbpedia.org/ontology/picture", "surface form": "movie"}, {"URI": "http://dbpedia.org/ontology/principal", "surface form": "directed"}]}, {"id": "2561", "question": [{"language": "en", "string": "List all the mmebers of Mekong River Commission?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Mekong_River_Commission> <http://dbpedia.org/property/membership> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vietnam"}}, "entities": [{"URI": "http://dbpedia.org/resource/Mekong_River_Commission", "surface form": "Mekong River Commission"}], "relations": [{"URI": "http://dbpedia.org/ontology/membership", "surface form": "mmebers"}]}, {"id": "2562", "question": [{"language": "en", "string": "Name the actors of the TV show which has an episode named The Five ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/The_Five_(The_Vampire_Diaries)> <http://dbpedia.org/property/series> ?x . ?x <http://dbpedia.org/property/starring> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": {"uri": {"type": "literal", "xml:lang": "en", "value": ""}}, "entities": [{"URI": "http://dbpedia.org/resource/Tv_test_pattern", "surface form": "TV"}, {"URI": "http://dbpedia.org/resource/The_Five", "surface form": "The Five"}], "relations": [{"URI": "http://dbpedia.org/ontology/leaderName", "surface form": "name actors"}, {"URI": "http://dbpedia.org/ontology/show", "surface form": "show"}, {"URI": "http://dbpedia.org/ontology/type", "surface form": "episode"}]}, {"id": "2563", "question": [{"language": "en", "string": "How many religion's people have died in Malaysia?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/ontology/deathPlace> <http://dbpedia.org/resource/Malaysia> . ?x <http://dbpedia.org/ontology/religion> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "6"}}, "entities": [{"URI": "http://dbpedia.org/resource/Malaysia", "surface form": "Malaysia"}], "relations": [{"URI": "http://dbpedia.org/ontology/deathPlace", "surface form": "died in"}, {"URI": "http://dbpedia.org/ontology/religion", "surface form": "religion"}]}, {"id": "2564", "question": [{"language": "en", "string": "Name the HBO TV show written by Erik jendresen ?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {?uri <http://dbpedia.org/ontology/company> <http://dbpedia.org/resource/HBO> . ?uri <http://dbpedia.org/property/writer> <http://dbpedia.org/resource/Erik_Jendresen> . ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/TelevisionShow>}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Band_of_Brothers_(miniseries)"}}, "entities": [{"URI": "http://dbpedia.org/resource/HBO", "surface form": "HBO"}, {"URI": "http://dbpedia.org/resource/Show_TV", "surface form": "TV show"}, {"URI": "http://dbpedia.org/resource/Tv_test_pattern", "surface form": "TV"}, {"URI": "http://dbpedia.org/resource/HBO_Pakistan", "surface form": "HBO show"}, {"URI": "http://dbpedia.org/resource/Erik_Jendresen", "surface form": "Erik jendresen"}], "relations": [{"URI": "http://dbpedia.org/property/name", "surface form": "name"}, {"URI": "http://dbpedia.org/ontology/writer", "surface form": "written"}]}, {"id": "2565", "question": [{"language": "en", "string": "How many different currencies are used in the places governed by the president of France?"}], "query": {"sparql": "SELECT DISTINCT COUNT(?uri) WHERE { ?x <http://dbpedia.org/property/leaderTitle> <http://dbpedia.org/resource/President_of_France> . ?x <http://dbpedia.org/ontology/currency> ?uri . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "11"}}, "entities": [{"URI": "http://dbpedia.org/resource/Currencies_Direct", "surface form": "Currencies"}, {"URI": "http://dbpedia.org/resource/France", "surface form": "France"}], "relations": [{"URI": "http://dbpedia.org/ontology/currency", "surface form": "currencies"}, {"URI": "http://dbpedia.org/property/leaderTitle", "surface form": "president"}]}, {"id": "2566", "question": [{"language": "en", "string": "List the team for which Doug Acomb played ?"}], "query": {"sparql": " SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Doug_Acomb> <http://dbpedia.org/property/playedFor> ?uri } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Toronto_Maple_Leafs"}}, "entities": [{"URI": "http://dbpedia.org/resource/Doug_Acomb", "surface form": "Doug Acomb"}], "relations": [{"URI": "http://dbpedia.org/property/playedFor", "surface form": "team"}]}]} \ No newline at end of file